Sync effetcts + initiative

This commit is contained in:
2022-01-28 18:15:28 +01:00
parent 44131734bd
commit c302163bef
7 changed files with 57 additions and 38 deletions

View File

@@ -103,6 +103,23 @@
<li class="flexrow"><label class="generic-label">Equipped ?</label>
<label class="attribute-value checkbox"><input type="checkbox" name="data.equipped" {{checked data.equipped}}/></label>
</li>
<li class="flexrow"><label class="generic-label">Enhanced ?</label>
<label class="attribute-value checkbox"><input type="checkbox" name="data.enhanced" {{checked data.enhanced}}/></label>
</li>
{{#if data.enhanced}}
<li class="flexrow"><label class="generic-label">Enhanced Attack Statistic</label>
<select class="competence-base flexrow" type="text" name="data.enhancedstat" value="{{data.enhancedstat}}" data-dtype="String">
{{#select data.enhancedstat}}
{{> systems/fvtt-pegasus-rpg/templates/partial-options-statistics.html notapplicable=false special=false}}
{{/select}}
</select>
</li>
<li class="flexrow"><label class="generic-label">Enhance Level</label>
<input type="text" class="input-numeric-short padd-right" name="data.enhancedlevel" value="{{data.enhancedlevel}}" data-dtype="Number"/>
</li>
{{/if}}
<li class="flexrow"><label class="generic-label">Weight</label>
<input type="text" class="input-numeric-short padd-right" name="data.weight" value="{{data.weight}}" data-dtype="Number"/>
</li>