Fix as per CSV sheet tracking + creature explanation

This commit is contained in:
2026-05-17 17:43:33 +02:00
parent a572c66678
commit 374854cc8b
99 changed files with 2716 additions and 464 deletions
+27 -2
View File
@@ -23,8 +23,20 @@
<input type="text" name="system.range" value="{{source.system.range}}" />
</div>
<div class="item-form-row">
<label>{{localize "MGNE.Common.Properties"}}</label>
<input type="text" name="system.properties" value="{{source.system.properties}}" />
<label>{{localize "MGNE.Common.Weight"}}</label>
<select name="system.weight">
{{#each selectOptions.weightCategories}}
<option value="{{value}}" {{#if (isEqual ../source.system.weight value)}}selected{{/if}}>{{label}}</option>
{{/each}}
</select>
</div>
<div class="item-form-row">
<label>{{localize "MGNE.Common.DurabilityDie"}}</label>
<select name="system.durabilityDie">
{{#each selectOptions.usageDice}}
<option value="{{value}}" {{#if (isEqual ../source.system.durabilityDie value)}}selected{{/if}}>{{label}}</option>
{{/each}}
</select>
</div>
<div class="item-form-row">
<label>{{localize "MGNE.Common.UsageDie"}}</label>
@@ -43,6 +55,19 @@
<label><input type="checkbox" name="system.equipped" {{#if source.system.equipped}}checked{{/if}} /> {{localize "MGNE.Common.Equipped"}}</label>
<label><input type="checkbox" name="system.broken" {{#if source.system.broken}}checked{{/if}} /> {{localize "MGNE.Common.Broken"}}</label>
</div>
<div class="inventory-header">
<h3>{{localize "MGNE.Common.Properties"}}</h3>
</div>
<div class="weapon-properties-grid">
<input type="hidden" name="system.properties" value="" />
{{#each selectOptions.weaponProperties}}
<label class="property-check" title="{{hint}}">
<input type="checkbox" name="system.properties" value="{{value}}"
{{#if (includes ../source.system.properties value)}}checked{{/if}} />
{{label}}
</label>
{{/each}}
</div>
<div class="inventory-header">
<h3>{{localize "MGNE.Common.Description"}}</h3>
</div>