104 lines
2.4 KiB
Handlebars
104 lines
2.4 KiB
Handlebars
<section>
|
|
<div class="header">
|
|
<img
|
|
class="item-img"
|
|
src="{{item.img}}"
|
|
data-edit="img"
|
|
data-action="editImage"
|
|
data-tooltip="{{item.name}}"
|
|
/>
|
|
{{formInput fields.name value=source.name}}
|
|
</div>
|
|
|
|
<div class="flexrow">
|
|
<div class="align-top">
|
|
|
|
{{! Prism RPG: Shield Type (Buckler/Light/Heavy/Tower) }}
|
|
{{formField
|
|
systemFields.shieldType
|
|
value=system.shieldType
|
|
localize=true
|
|
label="PRISMRPG.Label.shieldType"
|
|
}}
|
|
|
|
{{! Prism RPG: Block APC (Action Point Cost) }}
|
|
{{formField
|
|
systemFields.apc
|
|
value=system.apc
|
|
localize=true
|
|
label="PRISMRPG.Label.blockAPC"
|
|
}}
|
|
|
|
{{! Prism RPG: Shield Rating (SR) }}
|
|
{{formField
|
|
systemFields.sr
|
|
value=system.sr
|
|
localize=true
|
|
label="PRISMRPG.Label.shieldRating"
|
|
}}
|
|
|
|
{{formField
|
|
systemFields.equipped
|
|
value=system.equipped
|
|
localize=true
|
|
label="PRISMRPG.Label.equipped"
|
|
}}
|
|
|
|
</div>
|
|
|
|
<div class="align-top">
|
|
|
|
{{formField
|
|
systemFields.encLoad
|
|
value=system.encLoad
|
|
localize=true
|
|
label="PRISMRPG.Label.encumbranceLoad"
|
|
}}
|
|
|
|
{{formField
|
|
systemFields.cost
|
|
value=system.cost
|
|
localize=true
|
|
label="PRISMRPG.Label.cost"
|
|
}}
|
|
{{formField
|
|
systemFields.money
|
|
value=system.money
|
|
localize=true
|
|
label="PRISMRPG.Label.currency"
|
|
}}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{{! Prism RPG: Block Augment }}
|
|
<fieldset class="shield-block-augment">
|
|
<legend>{{localize "PRISMRPG.Label.blockAugment"}}</legend>
|
|
{{formField
|
|
systemFields.blockAugment
|
|
value=system.blockAugment
|
|
localize=true
|
|
label="PRISMRPG.Label.blockAugmentName"
|
|
}}
|
|
<label>{{localize "PRISMRPG.Label.blockAugmentDescription"}}</label>
|
|
{{formInput
|
|
systemFields.blockAugmentDescription
|
|
enriched=enrichedBlockAugmentDescription
|
|
value=system.blockAugmentDescription
|
|
name="system.blockAugmentDescription"
|
|
toggled=true
|
|
}}
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>{{localize "PRISMRPG.Label.description"}}</legend>
|
|
{{formInput
|
|
systemFields.description
|
|
enriched=enrichedDescription
|
|
value=system.description
|
|
name="system.description"
|
|
toggled=true
|
|
}}
|
|
</fieldset>
|
|
|
|
</section> |