42 lines
1.8 KiB
Plaintext
42 lines
1.8 KiB
Plaintext
<rml>
|
|
|
|
<head>
|
|
<title>game_ui</title>
|
|
<link type="text/rcss" href="globals.rcss" />
|
|
</head>
|
|
|
|
<body data-model="game_data">
|
|
|
|
<div id="hud" data-if="!round_over">
|
|
<p>Round {{round_number}} — Creature {{creature_number}} / {{creature_count}}</p>
|
|
<p>Species: {{creature_species}}</p>
|
|
<p>Marshmallows: {{marshmallows_remaining}}</p>
|
|
<p>Score: {{score}}</p>
|
|
<p class="timer" data-class-urgent="time_urgent">Time left: {{time_remaining_seconds}}s</p>
|
|
|
|
<p>------------------------------------------------------------------------------------------</p>
|
|
|
|
<!-- <p><strong>DEBUG</strong></p>
|
|
<p>Appearance tier: {{debug_appearance_tier}}</p>
|
|
<p>Is cryptid: {{debug_is_cryptid}}</p>
|
|
<p>Behaves normally: {{debug_behaves_normally}}</p>
|
|
|
|
<p>------------------------------------------------------------------------------------------</p> -->
|
|
|
|
<button class="menu-btn" data-event-click="feed_creature">Offer Marshmallow</button>
|
|
<button class="menu-btn" data-event-click="capture_creature">Capture</button>
|
|
<button class="menu-btn" data-event-click="release_creature">Carry On</button>
|
|
<button class="menu-btn" data-event-click="pause_game">Pause</button>
|
|
<p>{{feed_reaction_text}}</p>
|
|
</div>
|
|
|
|
<div id="round-end" data-if="round_over">
|
|
<h1>Round Over</h1>
|
|
<p>{{round_result_text}}</p>
|
|
<p>Score: {{score}}</p>
|
|
<button class="menu-btn" data-event-click="continue_next_round">Continue</button>
|
|
<button class="menu-btn" data-event-click="end_current_game">Return to Main Menu</button>
|
|
</div>
|
|
|
|
</body>
|
|
</rml> |