foundry-vtt-system-midgard5/templates/sheets/character/kampfkuenste.hbs

31 lines
988 B
Handlebars

<table>
<thead>
<tr>
<th>{{localize "ITEM.TypeKampfkunst"}}</th>
<th>{{localize "midgard5.ew"}}</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
{{#each data.calc.kampfkuenste as |item itemId|}}
<tr data-item="{{itemId}}">
<td class="padding edit-item">
<span>{{item.label}}</span>
{{#if item.isKido}}
<span class="spell-process">{{localize item.type}}</span>
<span class="spell-process">({{localize item.variante}})</span>
{{else if (eq item.type "midgard5.kampfkunst-type-angriff")}}
<span class="spell-process">{{localize item.kidoType}}</span>
<span class="spell-process">({{localize item.kidoVariante}})</span>
{{/if}}
</td>
<td class="fixed-value">{{item.calc.ew}}</td>
<td class="fixed-value"><button class="roll-button roll-weapon-button" /></td>
<td class="fixed-value"><a class="item-delete" title="Delete Item"><i class="fas fa-trash"></i></a></td>
</tr>
{{/each}}
</tbody>
</table>