ds4/templates/sheets/item/components/properties/armor.hbs
Johannes Loher 6ac9f49463
feat!: migrate to v12
BREAKING CHANGE: Support for v11 has been dropped
2025-02-22 16:00:03 +01:00

25 lines
1 KiB
Handlebars

{{!--
SPDX-FileCopyrightText: 2021 Johannes Loher
SPDX-License-Identifier: MIT
--}}
<div class="ds4-item-properties ds4-item-properties--armor">
<h4 class="ds4-item-properties__title">{{localize 'DS4.ItemPropertiesArmor'}}</h4>
<div class="form-group">
<label for="system.armorType-{{data._id}}">{{localize "DS4.ArmorType"}}</label>
<div class="form-fields">
<select id="system.armorType-{{data._id}}" name="system.armorType" data-dtype="String">
{{selectOptions config.i18n.armorTypes selected=data.system.armorType}}
</select>
</div>
</div>
<div class="form-group">
<label for="system.armorMaterialType-{{data._id}}">{{localize "DS4.ArmorMaterialType"}}</label>
<div class="form-fields">
<select id="system.armorMaterialType-{{data._id}}" name="system.armorMaterialType" data-dtype="String">
{{selectOptions config.i18n.armorMaterialTypes selected=data.system.armorMaterialType}}
</select>
</div>
</div>
</div>