Upgrade item sheets
This commit is contained in:
59
templates/shield.hbs
Normal file
59
templates/shield.hbs
Normal file
@ -0,0 +1,59 @@
|
||||
<section>
|
||||
<div class="header">
|
||||
<img class="item-img" src="{{item.img}}" data-edit="img" data-action="editImage" data-tooltip="{{item.name}}" />
|
||||
{{formInput fields.name value=source.name}}
|
||||
</div>
|
||||
|
||||
<div class="flexrow">
|
||||
<div class="align-top">
|
||||
{{formField systemFields.defense value=system.defense}}
|
||||
{{formField systemFields.movementreduction value=system.movementreduction}}
|
||||
|
||||
<label>Standing</label>
|
||||
<div class="shift-right">
|
||||
{{formField systemFields.standing.fields.min value=system.standing.min}}
|
||||
{{formField systemFields.standing.fields.max value=system.standing.min}}
|
||||
</div>
|
||||
|
||||
<label>Crouching</label>
|
||||
<div class="shift-right">
|
||||
{{formField systemFields.crouching.fields.min value=system.crouching.min}}
|
||||
{{formField systemFields.crouching.fields.max value=system.crouching.min}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="align-top">
|
||||
<label>Destruction</label>
|
||||
<div class="shift-right">
|
||||
{{formField systemFields.destruction.fields.bashing value=system.destruction.bashing}}
|
||||
{{formField systemFields.destruction.fields.slashing value=system.destruction.slashing}}
|
||||
{{formField systemFields.destruction.fields.piercing value=system.destruction.piercing}}
|
||||
</div>
|
||||
|
||||
<label>Auto-Destruction</label>
|
||||
<div class="shift-right">
|
||||
{{formField systemFields.autodestruction.fields.bashing value=system.autodestruction.bashing}}
|
||||
{{formField systemFields.autodestruction.fields.slashing value=system.autodestruction.slashing}}
|
||||
{{formField systemFields.autodestruction.fields.piercing value=system.autodestruction.piercing}}
|
||||
</div>
|
||||
|
||||
{{formField systemFields.load value=system.load}}
|
||||
|
||||
{{formField systemFields.cost value=system.cost}}
|
||||
{{formField systemFields.money value=system.money localize=true}}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<fieldset>
|
||||
<legend>{{localize "LETHALFANTASY.Label.description"}}</legend>
|
||||
{{formInput
|
||||
systemFields.description
|
||||
enriched=description
|
||||
value=system.description
|
||||
name="system.description"
|
||||
toggled="false"
|
||||
}}
|
||||
</fieldset>
|
||||
</section>
|
Reference in New Issue
Block a user