98 lines
1.7 KiB
Handlebars
98 lines
1.7 KiB
Handlebars
<div>
|
|
{{log this}}
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<td class="alt">Path</td>
|
|
<td>Grit</td>
|
|
<td>Gait</td>
|
|
<td>Grip</td>
|
|
<td>Glim</td>
|
|
<td class="alt">Guts</td>
|
|
<td class="alt">Move</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td
|
|
class="alt"
|
|
data-tooltip="{{path.full}}"
|
|
>
|
|
{{path.abbv}}
|
|
</td>
|
|
<td>
|
|
{{#if meta.editable}}
|
|
<input
|
|
type="number"
|
|
id="{{meta.idp}}-grit"
|
|
value="{{grit}}"
|
|
name="system.ability.grit"
|
|
>
|
|
{{else if meta.limited}}
|
|
???
|
|
{{else}}
|
|
{{grit}}
|
|
{{/if}}
|
|
</td>
|
|
<td>
|
|
{{#if meta.editable}}
|
|
<input
|
|
type="number"
|
|
id="{{meta.idp}}-gait"
|
|
value="{{gait}}"
|
|
name="system.ability.gait"
|
|
>
|
|
{{else if meta.limited}}
|
|
???
|
|
{{else}}
|
|
{{gait}}
|
|
{{/if}}
|
|
</td>
|
|
<td>
|
|
{{#if meta.editable}}
|
|
<input
|
|
type="number"
|
|
id="{{meta.idp}}-grip"
|
|
value="{{grip}}"
|
|
name="system.ability.grip"
|
|
>
|
|
{{else if meta.limited}}
|
|
???
|
|
{{else}}
|
|
{{grip}}
|
|
{{/if}}
|
|
</td>
|
|
<td>
|
|
{{#if meta.editable}}
|
|
<input
|
|
type="number"
|
|
id="{{meta.idp}}-glim"
|
|
value="{{glim}}"
|
|
name="system.ability.glim"
|
|
>
|
|
{{else if meta.limited}}
|
|
???
|
|
{{else}}
|
|
{{glim}}
|
|
{{/if}}
|
|
</td>
|
|
<td class="alt">
|
|
{{#if meta.editable}}
|
|
<input
|
|
type="number"
|
|
id="{{meta.idp}}-guts-value"
|
|
value="{{guts.value}}"
|
|
name="system.guts.value"
|
|
>
|
|
/ {{guts.max}}
|
|
{{else if meta.limited}}
|
|
??/??
|
|
{{else}}
|
|
{{guts.value}}/{{guts.max}}
|
|
{{/if}}
|
|
</td>
|
|
<td class="alt">{{speed.move}} / {{speed.run}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|