Files
fvtt-lethal-fantasy/templates/shield.hbs
T
uberwald 96306623e5
Release Creation / build (release) Successful in 43s
UPdate and fixes for roll in combats
2026-05-18 20:26:39 +02:00

81 lines
2.6 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">&nbsp;
</div>
{{formField systemFields.hascover value=system.hascover}}
{{#if system.hascover}}
<label>{{localize "LETHALFANTASY.Label.coverRanged"}}</label>
<div class="shift-right">
<label>{{localize "LETHALFANTASY.Label.standing"}}</label>
<div class="flexrow">{{formField
systemFields.standing.fields.min
value=system.standing.min
}}
&nbsp;...&nbsp;30
</div>
</div>
<div class="shift-right">
<label>{{localize "LETHALFANTASY.Label.crouching"}}</label>
<div class="flexrow">{{formField
systemFields.crouching.fields.min
value=system.crouching.min
}}
&nbsp;...&nbsp;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>