49 lines
1.6 KiB
Handlebars
49 lines
1.6 KiB
Handlebars
<section class="tab {{tabs.spells.id}} {{tabs.spells.cssClass}}"
|
|
data-tab="{{tabs.spells.id}}"
|
|
data-group="{{tabs.spells.group}}">
|
|
|
|
<div class="tab-resources">
|
|
|
|
<div class="astralpoints">
|
|
<label>AsP:</label>
|
|
<input type="number" name="system.asp.aktuell" value="{{system.asp.aktuell}}"/>
|
|
<span class="inline">von</span>
|
|
<input type="number" disabled value="{{derived.asp.max}}"/>
|
|
</div>
|
|
<div class="mr">
|
|
<label>MR: </label>
|
|
<input type="number" disabled value="{{derived.mr.aktuell}}"/>
|
|
</div>
|
|
</div>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th class="die-column"></th>
|
|
<th>Zaubername</th>
|
|
<th colspan="3">Probe</th>
|
|
<th>ZfW</th>
|
|
<th>Merkmale</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each this.spells}}
|
|
<tr>
|
|
<td class="spell rollable">
|
|
{{> 'systems/DSA_4-1/templates/ui/partial-die.hbs' }}
|
|
</td>
|
|
<td class="clickable" data-id="{{this.id}}" data-operation="openActorSheet">
|
|
<span>{{this.name}}</span></td>
|
|
<td>{{this.eigenschaft1}}</td>
|
|
<td>{{this.eigenschaft2}}</td>
|
|
<td>{{this.eigenschaft3}}</td>
|
|
<td>{{this.zfw}}</td>
|
|
<td>
|
|
<ul class="merkmal-list">{{#each this.merkmal}}
|
|
<li>{{this}}</li>{{/each}}</ul>
|
|
</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
</section> |