39 lines
1.4 KiB
Handlebars
39 lines
1.4 KiB
Handlebars
<section class="item-sheet-common skillnpc-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="skillnpc-stats">
|
|
<div class="form-group">
|
|
<label>{{localize "OATHHAMMER.SkillNPC.FIELDS.dicePool.label"}}</label>
|
|
<div class="form-fields">
|
|
<select name="system.dicePool">
|
|
{{selectOptions dicePoolChoices selected=system.dicePool}}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>{{localize "OATHHAMMER.SkillNPC.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.SkillNPC.FIELDS.skillRef.label"}}</label>
|
|
<div class="form-fields">
|
|
<select name="system.skillRef">
|
|
{{selectOptions skillRefChoices selected=system.skillRef}}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<fieldset>
|
|
<legend>{{localize "OATHHAMMER.SkillNPC.FIELDS.description.label"}}</legend>
|
|
{{formInput systemFields.description enriched=enrichedDescription value=system.description name="system.description" toggled=true}}
|
|
</fieldset>
|
|
</section>
|