Migration vers datamodels

This commit is contained in:
2026-02-25 15:49:55 +01:00
parent 64eb40abfb
commit f1ab04bf32
95 changed files with 7418 additions and 593 deletions

View File

@@ -0,0 +1,25 @@
<section class="tab sheet-body {{tab.cssClass}}" data-tab="details" data-group="primary">
<ul>
<li class="flexrow">
<label class="item-name-label-long">{{localize "ECRY.ui.weapontype"}}</label>
<select name="system.weapontype">
{{selectOptions config.weaponTypes selected=system.weapontype localize=true}}
</select>
</li>
<li class="flexrow">
<label class="item-name-label-long">{{localize "ECRY.ui.effect"}}</label>
<input type="number" class="item-field-label-short" name="system.effect" value="{{system.effect}}" />
</li>
<li class="flexrow">
<label class="item-field-label-long">{{localize "ECRY.ui.weight"}}</label>
<input type="number" class="item-field-label-short" name="system.weight" value="{{system.weight}}" />
</li>
<li class="flexrow">
<label class="item-field-label-long">{{localize "ECRY.ui.cost"}}</label>
<input type="number" class="item-field-label-short" name="system.cost" value="{{system.cost}}" />
<select name="system.costunit">
{{selectOptions config.costUnits selected=system.costunit localize=true labelAttr="name"}}
</select>
</li>
</ul>
</section>