Dragon-Knight/templates/right_nav.php

40 lines
1.4 KiB
PHP
Raw Permalink Normal View History

2024-12-13 12:51:10 -06:00
<section>
<div class="title"><img src="/img/button_character.gif" alt="Character" title="Character"></div>
2024-12-17 22:10:49 -06:00
<b><?= user()->username ?></b><br>
Level: <?= user()->level ?><br>
Exp: <?= number_format(user()->experience) ?><br>
Gold: <?= number_format(user()->gold) ?><br>
HP: <?= $hp ?><br>
MP: <?= $mp ?><br>
2024-12-17 22:10:49 -06:00
TP: <?= user()->currenttp ?><br><br>
<?= create_stat_table() ?><br>
2024-12-13 12:51:10 -06:00
<a href="javascript:opencharpopup()">Extended Stats</a>
</section>
2024-12-13 12:51:10 -06:00
<section>
<div class="title"><img src="/img/button_inventory.gif" alt="Inventory" title="Inventory"></div>
<img src="/img/icon_weapon.gif" alt="Weapon" title="Weapon"> <?= user()->weaponname ?><br>
<img src="/img/icon_armor.gif" alt="Armor" title="Armor"> <?= user()->armorname ?><br>
<img src="/img/icon_shield.gif" alt="Shield" title="Shield"> <?= user()->shieldname ?><br>
Slot 1: <?= user()->slot1name ?><br>
Slot 2: <?= user()->slot2name ?><br>
Slot 3: <?= user()->slot3name ?>
2024-12-13 12:51:10 -06:00
</section>
2024-12-13 12:51:10 -06:00
<section>
<div class="title"><img src="/img/button_fastspells.gif" alt="Fast Spells" title="Fast Spells"></div>
<?php
$user_spells = user()->spells();
if ($user_spells !== false) {
foreach ($user_spells as $spell) {
// list only healing spells for now
if ($spell['type'] === 1) echo <<<HTML
<a href="/spell/{$spell['id']}" hx-get="/spell/{$spell['id']}" hx-target="#middle">{$spell['name']}</a><br>
HTML;
}
} else {
echo 'None';
}
?>
2024-12-13 12:51:10 -06:00
</section>