Files
fvtt-hellborn/templates/weapon.hbs
LeRatierBretonnien 0ee42aef99
All checks were successful
Release Creation / build (release) Successful in 58s
Various changes
2025-05-29 22:41:15 +02:00

35 lines
1.2 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>
<fieldset>
{{formField systemFields.stat value=system.stat localize=true}}
{{formField systemFields.weaponType value=system.weaponType localize=true}}
{{#if (eq system.weaponType "ranged")}}
{{formField systemFields.subType value=system.subType localize=true}}
{{formField systemFields.range value=system.range localize=true}}
{{formField systemFields.ammo value=system.ammo localize=true}}
{{/if}}
{{formField systemFields.properties value=system.properties classes="long-input"}}
{{formField systemFields.damage value=system.damage}}
{{formField systemFields.damageStat value=system.damageStat localize=true}}
{{formField systemFields.damageType value=system.damageType}}
{{formField systemFields.cost value=system.cost}}
</fieldset>
<fieldset>
<legend>{{localize "HELLBORN.Label.description"}}</legend>
{{formInput
systemFields.description
enriched=enrichedDescription
value=system.description
name="system.description"
toggled=true
}}
</fieldset>
</section>