Fix as per CSV sheet tracking + creature explanation
This commit is contained in:
+16
-8
@@ -6,14 +6,6 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="item-form-grid item-form-grid-three">
|
||||
<div class="item-form-row">
|
||||
<label>{{localize "MGNE.Common.ArtifactId"}}</label>
|
||||
<select name="system.artifactId">
|
||||
{{#each selectOptions.artifactIds}}
|
||||
<option value="{{value}}" {{#if (isEqual ../source.system.artifactId value)}}selected{{/if}}>{{label}}</option>
|
||||
{{/each}}
|
||||
</select>
|
||||
</div>
|
||||
<div class="item-form-row">
|
||||
<label>{{localize "MGNE.Common.UsageDie"}}</label>
|
||||
<select name="system.usageDie">
|
||||
@@ -22,6 +14,22 @@
|
||||
{{/each}}
|
||||
</select>
|
||||
</div>
|
||||
<div class="item-form-row">
|
||||
<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.SynchronizedTo"}}</label>
|
||||
<input type="text" name="system.synchronizedTo" value="{{source.system.synchronizedTo}}" />
|
||||
|
||||
Reference in New Issue
Block a user