dragon-forks/theme/default/site/help_items.twig
2025-03-29 09:20:12 +01:00

20 lines
No EOL
727 B
Twig

{% extends "base.twig" %}
{% block content %}
<h1>Help: Items & Drops</h1>
[ <a href="/site/help">Return to Help</a> | <a href="/">Return to the game</a> ]
<table>
{% for item in items %}
<tr>
<td width="5%">
<img src="{{ STYLE_FOLDER }}/assets/img/icon_{{ item.image }}.gif" alt="{{ item.image }}">
</td>
<td width="30%">{{ item.name }}</td>
<td width="20%">{{ item.buycost }} Gold</td>
<td width="20%">{{ item.attribute }} {{ item.power }} Power</td>
<td width="25%">{{ item.specialEffect|raw }}</td>
</tr>
{% endfor %}
</table>
{% endblock %}