2021-12-24 04:51:14 +01:00
|
|
|
<div class="form-group">
|
|
|
|
<label class="property-label">{{localize "BOL.ui.category"}}</label>
|
|
|
|
<div class="form-fields">
|
|
|
|
<select class="field-value" name="data.category" value="{{data.category}}" data-dtype="String">
|
|
|
|
{{#select data.category}}
|
|
|
|
{{#each config.itemCategories as |item id|}}
|
|
|
|
<option value="{{id}}">{{localize item}}</option>
|
|
|
|
{{/each}}
|
|
|
|
{{/select}}
|
|
|
|
</select>
|
|
|
|
</div>
|
2021-11-08 14:40:29 +01:00
|
|
|
</div>
|
|
|
|
|
2021-12-24 04:51:14 +01:00
|
|
|
<div class="form-group">
|
|
|
|
<label class="property-label">Type</label>
|
2021-11-08 14:40:29 +01:00
|
|
|
<div class="form-fields">
|
2021-12-24 04:51:14 +01:00
|
|
|
<label class="checkbox">
|
|
|
|
<input class="field-value" type="checkbox" name="data.properties.weapon" {{checked data.properties.weapon}}> {{localize "BOL.itemProperty.weapon"}}
|
|
|
|
</label>
|
|
|
|
<label class="checkbox">
|
|
|
|
<input class="field-value" type="checkbox" name="data.properties.protection" {{checked data.properties.protection}}> {{localize "BOL.itemProperty.protection"}}
|
|
|
|
</label>
|
|
|
|
<label class="checkbox">
|
|
|
|
<input class="field-value" type="checkbox" name="data.properties.magical" {{checked data.properties.magical}}> {{localize "BOL.itemProperty.magical"}}
|
|
|
|
</label>
|
2021-11-07 20:23:02 +01:00
|
|
|
</div>
|
2021-11-08 14:40:29 +01:00
|
|
|
</div>
|
|
|
|
|
2021-12-24 04:51:14 +01:00
|
|
|
{{#if (equals data.category "equipment")}}
|
2021-12-22 05:12:40 +01:00
|
|
|
{{> "systems/bol/templates/item/parts/properties/item/equipment-properties.hbs"}}
|
2021-11-08 14:40:29 +01:00
|
|
|
{{/if}}
|
|
|
|
{{#if data.properties.weapon}}
|
2021-12-22 05:12:40 +01:00
|
|
|
{{> "systems/bol/templates/item/parts/properties/item/weapon-properties.hbs"}}
|
2021-11-08 14:40:29 +01:00
|
|
|
{{/if}}
|
2021-12-24 04:51:14 +01:00
|
|
|
{{#if data.properties.protection}}
|
2021-12-22 05:12:40 +01:00
|
|
|
{{> "systems/bol/templates/item/parts/properties/item/protection-properties.hbs"}}
|
2021-11-08 14:40:29 +01:00
|
|
|
{{/if}}
|
2021-12-24 04:51:14 +01:00
|
|
|
{{#if data.properties.magical}}
|
|
|
|
{{> "systems/bol/templates/item/parts/properties/item/magical-properties.hbs"}}
|
2021-11-08 14:40:29 +01:00
|
|
|
{{/if}}
|