2021-11-07 20:23:02 +01:00
|
|
|
<div class="property flexrow">
|
2021-11-08 14:40:29 +01:00
|
|
|
<label class="property-label">{{localize "BOL.ui.subtype"}}</label>
|
2022-07-01 15:48:54 +02:00
|
|
|
<select name="system.subtype" value="{{item.system.subtype}}" data-dtype="String">
|
|
|
|
{{#select item.system.subtype}}
|
2021-11-08 14:40:29 +01:00
|
|
|
{{#each config.featureSubtypes as |item id|}}
|
|
|
|
<option value="{{id}}">{{localize item}}</option>
|
|
|
|
{{/each}}
|
2021-11-07 20:23:02 +01:00
|
|
|
{{/select}}
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
2022-07-01 15:48:54 +02:00
|
|
|
{{#if (equals item.system.subtype "career")}}
|
2021-12-22 05:12:40 +01:00
|
|
|
{{> "systems/bol/templates/item/parts/properties/feature/career-properties.hbs"}}
|
|
|
|
{{/if}}
|
2022-07-01 15:48:54 +02:00
|
|
|
{{#if (equals item.system.subtype "fightoption")}}
|
2022-03-10 21:05:53 +01:00
|
|
|
{{> "systems/bol/templates/item/parts/properties/feature/fightoption-properties.hbs"}}
|
|
|
|
{{/if}}
|
2021-12-22 05:12:40 +01:00
|
|
|
{{!#if (equals data.subtype "race")}}
|
|
|
|
{{!> "systems/bol/templates/item/parts/properties/feature/race-properties.hbs"}}
|
|
|
|
{{!/if}}
|
2022-07-01 15:48:54 +02:00
|
|
|
{{#if (equals item.system.subtype "boon")}}
|
2022-02-18 21:58:53 +01:00
|
|
|
{{> "systems/bol/templates/item/parts/properties/feature/boon-properties.hbs"}}
|
|
|
|
{{/if}}
|
2022-07-01 15:48:54 +02:00
|
|
|
{{#if (equals item.system.subtype "flaw")}}
|
2022-02-18 21:58:53 +01:00
|
|
|
{{> "systems/bol/templates/item/parts/properties/feature/flaw-properties.hbs"}}
|
|
|
|
{{/if}}
|
2022-11-23 21:34:51 +01:00
|
|
|
{{#if (equals item.system.subtype "boleffect")}}
|
|
|
|
{{> "systems/bol/templates/item/parts/properties/feature/effect-properties.hbs"}}
|
|
|
|
{{/if}}
|
2022-12-23 23:24:09 +01:00
|
|
|
{{#if (equals item.system.subtype "horoscope")}}
|
|
|
|
{{> "systems/bol/templates/item/parts/properties/feature/horoscope-properties.hbs"}}
|
|
|
|
{{/if}}
|