Files
fvtt-oath-hammer/templates/item/npcattack-sheet.hbs

39 lines
1.4 KiB
Handlebars

<section class="item-sheet-common npcattack-sheet">
<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="npcattack-stats">
<div class="form-group">
<label>{{localize "OATHHAMMER.NpcAttack.FIELDS.damageDice.label"}}</label>
<div class="form-fields">
<select name="system.damageDice">
{{selectOptions dicePoolChoices selected=system.damageDice}}
</select>
</div>
</div>
<div class="form-group">
<label>{{localize "OATHHAMMER.NpcAttack.FIELDS.colorDiceType.label"}}</label>
<div class="form-fields">
<select name="system.colorDiceType">
{{selectOptions colorChoices selected=system.colorDiceType}}
</select>
</div>
</div>
<div class="form-group">
<label>{{localize "OATHHAMMER.NpcAttack.FIELDS.ap.label"}}</label>
<div class="form-fields">
<select name="system.ap">
{{selectOptions apChoices selected=system.ap}}
</select>
</div>
</div>
</div>
<fieldset>
<legend>{{localize "OATHHAMMER.NpcAttack.FIELDS.description.label"}}</legend>
{{formInput systemFields.description enriched=enrichedDescription value=system.description name="system.description" toggled=true}}
</fieldset>
</section>