38 lines
No EOL
1.4 KiB
Twig
38 lines
No EOL
1.4 KiB
Twig
{% extends "base.twig" %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Help: Spells</h1>
|
|
[ <a href="/site/help">Return to Help</a> | <a href="/">Return to the game</a> ]
|
|
|
|
<br /><br /><hr />
|
|
|
|
<table width="50%" style="border: solid 1px black" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td colspan="4" bgcolor="#ffffff"><center><b>Spells</b></center></td>
|
|
</tr>
|
|
<tr>
|
|
<td><b>Name</b></td>
|
|
<td><b>Cost</b></td>
|
|
<td><b>Type</b></td>
|
|
<td><b>Attribute</b></td>
|
|
</tr>
|
|
{% for spell in spells %}
|
|
<tr>
|
|
<td width="25%">{{ spell.name }}</td>
|
|
<td width="25%">{{ spell.cost }}</td>
|
|
<td width="25%">{{ spell.type }}</td>
|
|
<td width="25%">{{ spell.attribute }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
<ul>
|
|
<li><b>Heal</b> spells always give you the maximum amount possible, until your current HP is full.</li>
|
|
<li><b>Hurt</b> spells deal X damage (not always the maximum) to the monster, regardless of the monster's armor.</li>
|
|
<li><b>Sleep</b> spells put the monster to sleep. The monster has an X in 15 chance of remaining asleep each turn.</li>
|
|
<li><b>+Damage</b> spells increase your total attack damage by X percent until the end of the fight.</li>
|
|
<li><b>+Defense</b> spells reduce the total damage you take from the monster by X percent until the end of each fight.</li>
|
|
</ul>
|
|
|
|
{% endblock %} |