erratum/content/mobs/bestiaire/creatures/creature.md
Kazhnuz b1b481536e
All checks were successful
continuous-integration/drone/push Build is passing
feat: ajout d'un systeme de bestiaire
2024-08-15 10:42:55 +02:00

95 lines
2.2 KiB
Markdown

---
pagination:
data: creatures
size: 1
alias: creature
permalink: "mobs/bestiaire/creatures/{{ creature.name | slugify }}/"
layout: layouts/base.njk
parent: "{{ creature.parent }}"
---
# {{ creature.name }}
Créature de type {{ creature.type }}, dans la catégorie *{{ creature.categorie }}*, de niveau {{ creature.level }} et dans le groupe « {{ creature.parent }} ».
| Pression | Faiblesses | Résistences | Immunités |
|:-:|:-:|:-:|:-:|
| {{creature.pression}} | {{creature.faiblesses}} | {{ creature.resistences }} | {{ creatures.immunites }} |
## Statistiques
| | | |
|:-:|:-:|:-:|
| FOR: {{ creature.stats.for }} | INT: {{ creature.stats.int }} | CHA: {{ creature.stats.cha }} |
| CON: {{ creature.stats.con }} | SAG: {{ creature.stats.sag }} | DIS: {{ creature.stats.dis }} |
| HAB: {{ creature.stats.hab }} | VOL: {{ creature.stats.vol }} | REL: {{ creature.stats.rel }} |
| | PER: {{ creature.stats.per }} | |
## Vitalité
| | | |
|:-:|:-:|:-:|
| PV: {{ creature.vita.pv }} | PE: {{ creature.vita.pe }} | Éclat: {{ creature.vita.eclat }} |
| Armure phy: {{ creature.armure.phy }} | Armure spe: {{ creature.armure.spe }} | Armure psy: {{ creature.armure.psy }} |
## Compétences et pouvoirs
<div style="display:flex;">
<div style="width:40%;padding-right:0.5rem;">
<table class="pokedex">
<thead>
<tr>
<th>Arme</th>
<th>Valeur</th>
</tr>
</thead>
<tbody>
{%- for arme in creature.armes -%}
<tr>
<td>{{ arme.nom }}</td>
<td>{{ arme.force }} </td>
</tr>
{%- endfor -%}
<tbody>
</table>
<p></p>
<table class="pokedex">
<thead>
<tr>
<th>Compétence</th>
<th>Valeur</th>
</tr>
</thead>
<tbody>
{%- for competence in creature.competence -%}
<tr>
<td>{{ competence.name }}</td>
<td>{{ competence.value }} </td>
</tr>
{%- endfor -%}
<tbody>
</table>
</div>
<div style="width:60%;padding-left:0.5rem;">
<table class="pokedex">
<thead>
<tr>
<th>Pouvoirs</th>
</tr>
</thead>
<tbody>
{%- for competence in creature.skill -%}
<tr>
<td><strong>{{ competence[0] }}</strong><br />{{ competence[1] }}</td>
</tr>
{%- endfor -%}
<tbody>
</table>
</div>
</div>