49 lines
1.4 KiB
Handlebars
49 lines
1.4 KiB
Handlebars
<h3>Gelernte Fertigkeiten</h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>{{localize "midgard5.skill"}}</th>
|
|
<th>{{localize "midgard5.fw"}}</th>
|
|
<th>{{localize "midgard5.bonus"}}</th>
|
|
<th>{{localize "midgard5.ew"}}</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each data.calc.skills.general as |skill label|}}
|
|
<tr data-skill="{{skill.id}}">
|
|
<td class="padding edit-skill">{{label}}</td>
|
|
<td class="center">{{skill.fw}}</td>
|
|
<td class="center">{{skillBonus ../actor._id skill}}</td>
|
|
<td class="center">{{skillEw ../actor._id skill}}</td>
|
|
<td><button class="roll-learned-button">{{localize "midgard5.roll"}}</button></td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
|
|
<h3>Ungelernte Fertigkeiten</h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th>{{localize "midgard5.skill"}}</th>
|
|
<th>{{localize "midgard5.fw"}}</th>
|
|
<th>{{localize "midgard5.bonus"}}</th>
|
|
<th>{{localize "midgard5.ew"}}</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each actor.data.skills.general as |skill key|}}
|
|
<tr data-skill="{{key}}">
|
|
<td><button class="learn-button">{{localize "midgard5.learn"}}</button></td>
|
|
<td class="padding">{{localizeMidgard key}}</td>
|
|
<td class="center">{{skill.fw}}</td>
|
|
<td class="center">{{skillBonus ../actor._id skill}}</td>
|
|
<td class="center">{{skillEw ../actor._id skill}}</td>
|
|
<td><button class="roll-general-button">{{localize "midgard5.roll"}}</button></td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table> |