Begin making the BookGeistSheet have the final design
This commit is contained in:
parent
798e7441b4
commit
28345bdef0
8 changed files with 360 additions and 64 deletions
|
|
@ -1,11 +1,98 @@
|
|||
<div>
|
||||
<ul>
|
||||
<li>Path: {{path}}</li>
|
||||
<li>Grit: {{grit}}</li>
|
||||
<li>Gait: {{gait}}</li>
|
||||
<li>Grip: {{grip}}</li>
|
||||
<li>Glim: {{glim}}</li>
|
||||
<li>Guts: {{guts.value}} / {{guts.max}}</li>
|
||||
<li>Move: {{speed.move}} / {{speed.run}}</li>
|
||||
</ul>
|
||||
{{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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue