foundry-dsa41-game/src/templates/item/equipment/tab-armor.hbs

84 lines
3.0 KiB
Handlebars

<section class="tab {{tabs.armor.id}} {{tabs.armor.cssClass}}"
data-tab="{{tabs.armor.id}}"
data-group="{{tabs.armor.group}}">
<div>
<fieldset>
<legend>Rüstungswerte</legend>
<div>
<label>Gesamt Rüstungswert
<input type="text" name="system.armorValue.total" value="{{system.armorValue.total}}"/>
</label>
</div>
<div>
<label>Linker Arm
<input type="text" name="system.armorValue.armlinks" value="{{system.armorValue.armlinks}}"/>
</label>
</div>
<div>
<label>Rechter Arm
<input type="text" name="system.armorValue.armrechts" value="{{system.armorValue.armrechts}}"/>
</label>
</div>
<div>
<label>Linkes Bein
<input type="text" name="system.armorValue.beinlinks" value="{{system.armorValue.beinlinks}}"/>
</label>
</div>
<div>
<label>Rechtes Bein
<input type="text" name="system.armorValue.beinrechts" value="{{system.armorValue.beinrechts}}"/>
</label>
</div>
<div>
<label>Bauch
<input type="text" name="system.armorValue.bauch" value="{{system.armorValue.bauch}}"/>
</label>
</div>
<div>
<label>Brust
<input type="text" name="system.armorValue.brust" value="{{system.armorValue.brust}}"/>
</label>
</div>
<div>
<label>Rücken
<input type="text" name="system.armorValue.ruecken" value="{{system.armorValue.ruecken}}"/>
</label>
</div>
<div>
<label>Kopf
<input type="text" name="system.armorValue.kopf" value="{{system.armorValue.kopf}}"/>
</label>
</div>
</fieldset>
<div>
<label>Gesamt Behinderung
<input type="text" name="system.armorHandicap" value="{{system.armorHandicap}}"/>
</label>
</div>
<div>
<label>Initiative Modifaktor
<input type="text" name="system.iniModifier" value="{{system.iniModifier}}"/>
</label>
</div>
<div>
<label>Bruchfaktor
<input type="text" name="system.breakFactor" value="{{system.breakFactor}}"/>
</label>
</div>
<div>
<label>Attacke
<input type="text" name="system.attackModifier" value="{{system.attackModifier}}"/>
</label>
</div>
<div>
<label>Parade
<input type="text" name="system.parryModifier" value="{{system.parryModifier}}"/>
</label>
</div>
</div>
</section>