33 lines
1.2 KiB
Handlebars
33 lines
1.2 KiB
Handlebars
<table>
|
|
<thead>
|
|
<tr>
|
|
<th class="title">{{localize "TYPES.Item.kampfkunst"}}</th>
|
|
<th class="title">{{localize "midgard5.ew"}}</th>
|
|
<th class="title"></th>
|
|
<th class="title"></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 (m5concat "midgard5.kido-type-" item.type)}}</span>
|
|
{{#unless (eq item.type "finte")}}
|
|
<span class="spell-process">({{localize (m5concat "midgard5.kido-variante-" item.variante)}})</span>
|
|
{{/unless}}
|
|
{{else}}
|
|
<span class="spell-process">{{localize (m5concat "midgard5.kampfkunst-type-" item.type)}}</span>
|
|
{{#if (eq item.type "angriff")}}
|
|
<span class="spell-process">({{localize (m5concat "midgard5.kampfkunst-variante-" item.variante)}})</span>
|
|
{{/if}}
|
|
{{/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> |