summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2023-08-23 00:24:50 +0200
committerDaniel Weipert <code@drogueronin.de>2023-08-23 00:24:50 +0200
commit4dd1a344c6474087a3f8782dd54f5c7b4acc67ed (patch)
tree7a0229eb721d81c7579a7f5f721a503136c98095 /index.html
parentdbcd0118863ff3e7c5bee45041ccdb757eb2f366 (diff)
area connections and town maps
Diffstat (limited to 'index.html')
-rw-r--r--index.html35
1 files changed, 24 insertions, 11 deletions
diff --git a/index.html b/index.html
index 0cd65fe..73e5f93 100644
--- a/index.html
+++ b/index.html
@@ -25,21 +25,23 @@
<div id="techniques"></div>
</div>
- <div id="scene__town" class="hidden">
- <div id="shop">
- Shop
- Potion x1
- </div>
- </div>
+ <div id="scene__town" class="hidden"></div>
<div id="log"></div>
<div id="status">
- <span>Money: <span data-template-slot="money"></span></span>
- <span><img src="/modules/tuxemon/mods/tuxemon/gfx/ui/menu/tuxemon.png" title="Monster Progress" /> <span data-template-slot="monsterProgress"></span></span>
- <span><img src="/modules/tuxemon/mods/tuxemon/gfx/ui/menu/player.png" title="Trainer Progress" style="filter: invert(1);" /> <span data-template-slot="trainerProgress"></span></span>
- <button data-template-slot="nextTrainer" class="menu-button">&rArr; Next Trainer</button>
- <button data-template-slot="changeArea" class="menu-button">&rArr; Change Area</button>
+ <div class="status__area">
+ <span><img data-template-slot="showMap" src="/modules/tuxemon/mods/tuxemon/gfx/items/app_map.png" /> <span data-template-slot="area" title="Area"></span></span>
+ </div>
+ <div class="status__numbers">
+ <span><i title="Money">&curren;</i> <span data-template-slot="money"></span></span>
+ <span><img src="/modules/tuxemon/mods/tuxemon/gfx/ui/menu/tuxemon.png" title="Monster Progress" /> <span data-template-slot="monsterProgress"></span></span>
+ <span><img src="/modules/tuxemon/mods/tuxemon/gfx/ui/menu/player.png" title="Trainer Progress" style="filter: invert(1);" /> <span data-template-slot="trainerProgress"></span></span>
+ </div>
+ <div class="status__actions">
+ <button data-template-slot="nextTrainer" class="menu-button">&rArr; Next Trainer</button>
+ <button data-template-slot="changeArea" class="menu-button">&rArr; Change Area</button>
+ </div>
</div>
<div id="menu">
@@ -242,6 +244,17 @@
</div>
</template>
+ <template id="tpl___area-selection">
+ <div class="area-selection"></div>
+ </template>
+
+ <template id="tpl___area-selection__item">
+ <div class="area-selection__item menu-button">
+ &rArr;
+ <span data-template-slot="text"></span>
+ </div>
+ </template>
+
<template id="tpl___inventory">
<div class="inventory">
<div data-template-slot="items"></div>