31 lines
742 B
HTML

{include "layout.html"}
{block "content"}
<div class="town shop">
<section>
<div class="title"><h3>{town.Name} Shop</h3></div>
<p>Buying weapons will increase your Attack. Buying armor and shields will increase your Defense.</p>
<p>Click an item name to purchase it.</p>
<p>The following items are available at this town:</p>
</section>
<section>
<table class="item-shop">
{for item in itemlist}
<tr>
<td>
{if item.Type == 1}
<img src="images/icon_weapon.gif" alt="Weapon" title="Weapon">
{/if}
</td>
<td>
{item.Name}
</td>
</tr>
{/for}
</table>
<p>If you've changed your mind, you may also return back to <a href="/town">town</a>.</p>
</section>
</div>
{/block}