erratum/content/classes/magies/theurgie/anges.md
2025-05-02 21:20:24 +02:00

233 lines
No EOL
6 KiB
Markdown

---
layout: layouts/layout.njk
eleventyNavigation:
parent: Théurgie
key: Les anges
order: 1
classType: magies
highlight: Les classes
---
La liste des anges invocable dans le JDR
## Angelot
{% for ange in anges -%}
{% if ange.group == "Angelot" %}
<table style="table-layout: fixed;">
<thead>
<tr><th colspan="2">{{ ange.nom }}</th></tr>
</thead>
<tbody>
<tr>
<td colspan="2">{{ ange.description }}</td>
</tr>
<tr class="thead">
<th>Bonus</th>
<th>Pouvoirs</th>
</tr>
<tr>
<td style="vertical-align:top;">
<ul>
{% for bonus in ange.bonus -%}
<li>{{ bonus }}</li>
{%- endfor %}
</ul>
</td>
<td style="vertical-align:top;">
<ul>
{% for pouvoir in ange.pouvoirs -%}
<li>{{ pouvoir }}</li>
{%- endfor %}
</ul>
</td>
</tr>
</tbody>
</table>
{% endif %}
{%- endfor %}
## Anges de bases
{% for ange in anges -%}
{% if ange.group == "Base" %}
<table style="table-layout: fixed;">
<thead>
<tr><th colspan="2">{{ ange.nom }}</th></tr>
</thead>
<tbody>
<tr>
<td colspan="2">{{ ange.description }}</td>
</tr>
<tr class="thead">
<th>Bonus</th>
<th>Pouvoirs</th>
</tr>
<tr>
<td style="vertical-align:top;">
<ul>
{% for bonus in ange.bonus -%}
<li>{{ bonus }}</li>
{%- endfor %}
</ul>
</td>
<td style="vertical-align:top;">
<ul>
{% for pouvoir in ange.pouvoirs -%}
<li>{{ pouvoir }}</li>
{%- endfor %}
</ul>
</td>
</tr>
</tbody>
</table>
{% endif %}
{%- endfor %}
## Troisième hiérarchie
{% for ange in anges -%}
{% if ange.group == "Troisième" %}
<table style="table-layout: fixed;">
<thead>
<tr><th colspan="2">{{ ange.nom }}</th></tr>
</thead>
<tbody>
<tr>
<td colspan="2">{{ ange.description }}</td>
</tr>
<tr class="thead">
<th>Bonus</th>
<th>Pouvoirs</th>
</tr>
<tr>
<td style="vertical-align:top;">
<ul>
{% for bonus in ange.bonus -%}
<li>{{ bonus }}</li>
{%- endfor %}
</ul>
</td>
<td style="vertical-align:top;">
<ul>
{% for pouvoir in ange.pouvoirs -%}
<li>{{ pouvoir }}</li>
{%- endfor %}
</ul>
</td>
</tr>
</tbody>
</table>
{% endif %}
{%- endfor %}
## Seconde hiérarchie
{% for ange in anges -%}
{% if ange.group == "Deuxième" %}
<table style="table-layout: fixed;">
<thead>
<tr><th colspan="2">{{ ange.nom }}</th></tr>
</thead>
<tbody>
<tr>
<td colspan="2">{{ ange.description }}</td>
</tr>
<tr class="thead">
<th>Bonus</th>
<th>Pouvoirs</th>
</tr>
<tr>
<td style="vertical-align:top;">
<ul>
{% for bonus in ange.bonus -%}
<li>{{ bonus }}</li>
{%- endfor %}
</ul>
</td>
<td style="vertical-align:top;">
<ul>
{% for pouvoir in ange.pouvoirs -%}
<li>{{ pouvoir }}</li>
{%- endfor %}
</ul>
</td>
</tr>
</tbody>
</table>
{% endif %}
{%- endfor %}
## Première hiérarchie
{% for ange in anges -%}
{% if ange.group == "Premiere" %}
<table style="table-layout: fixed;">
<thead>
<tr><th colspan="2">{{ ange.nom }}</th></tr>
</thead>
<tbody>
<tr>
<td colspan="2">{{ ange.description }}</td>
</tr>
<tr class="thead">
<th>Bonus</th>
<th>Pouvoirs</th>
</tr>
<tr>
<td style="vertical-align:top;">
<ul>
{% for bonus in ange.bonus -%}
<li>{{ bonus }}</li>
{%- endfor %}
</ul>
</td>
<td style="vertical-align:top;">
<ul>
{% for pouvoir in ange.pouvoirs -%}
<li>{{ pouvoir }}</li>
{%- endfor %}
</ul>
</td>
</tr>
</tbody>
</table>
{% endif %}
{%- endfor %}
## Anges suprêmes
{% for ange in anges -%}
{% if ange.group == "Divin" %}
<table style="table-layout: fixed;">
<thead>
<tr><th colspan="2">{{ ange.nom }}</th></tr>
</thead>
<tbody>
<tr>
<td colspan="2">{{ ange.description }}</td>
</tr>
<tr class="thead">
<th>Bonus</th>
<th>Pouvoirs</th>
</tr>
<tr>
<td style="vertical-align:top;">
<ul>
{% for bonus in ange.bonus -%}
<li>{{ bonus }}</li>
{%- endfor %}
</ul>
</td>
<td style="vertical-align:top;">
<ul>
{% for pouvoir in ange.pouvoirs -%}
<li>{{ pouvoir }}</li>
{%- endfor %}
</ul>
</td>
</tr>
</tbody>
</table>
{% endif %}
{%- endfor %}