All checks were successful
Release Creation / build (release) Successful in 1m7s
81 lines
2.5 KiB
Handlebars
81 lines
2.5 KiB
Handlebars
<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.damageReduction value=system.damageReduction}}
|
|
|
|
<div class="shift-right">
|
|
</div>
|
|
|
|
{{formField systemFields.hascover value=system.hascover}}
|
|
|
|
{{#if system.hascover}}
|
|
<label>Cover vs ranged attacks</label>
|
|
<div class="shift-right">
|
|
<label>Standing </label>
|
|
<div class="flexrow">{{formField
|
|
systemFields.standing.fields.min
|
|
value=system.standing.min
|
|
}}
|
|
... 30
|
|
</div>
|
|
</div>
|
|
<div class="shift-right">
|
|
<label>Crouching</label>
|
|
<div class="flexrow">{{formField
|
|
systemFields.crouching.fields.min
|
|
value=system.crouching.min
|
|
}}
|
|
... 30</div>
|
|
</div>
|
|
{{/if}}
|
|
</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.equipped value=system.equipped}}
|
|
|
|
{{formField systemFields.encLoad value=system.encLoad}}
|
|
|
|
{{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=enrichedDescription
|
|
value=system.description
|
|
name="system.description"
|
|
toggled="false"
|
|
}}
|
|
</fieldset>
|
|
</section> |