First adaptation pass

This commit is contained in:
2025-11-06 00:01:59 +01:00
parent 5b1fd847c2
commit 6b883f8126
112 changed files with 44142 additions and 953 deletions
+157 -26
View File
@@ -1,40 +1,171 @@
<section>
<div class="header">
<img class="item-img" src="{{item.img}}" data-edit="img" data-action="editImage" data-tooltip="{{item.name}}" />
<img
class="item-img"
src="{{item.img}}"
data-edit="img"
data-action="editImage"
data-tooltip="{{item.name}}"
/>
{{formInput fields.name value=source.name}}
</div>
{{formField systemFields.level value=system.level}}
{{formField systemFields.cost value=system.cost}}
<label>Components</label>
<div class="shift-right">
{{formField systemFields.components.fields.verbal value=system.components.verbal}}
{{formField systemFields.components.fields.somatic value=system.components.somatic}}
{{formField systemFields.components.fields.material value=system.components.material}}
{{formField systemFields.components.fields.catalyst value=system.components.catalyst}}
</div>
{{formField systemFields.materialComponent value=system.materialComponent}}
{{formField systemFields.catalyst value=system.catalyst}}
{{! Prism RPG: Mana Cost }}
{{formField
systemFields.manaCost
value=system.manaCost
label="PRISMRPG.Label.manaCost"
}}
<!-- {{formField systemFields.attackRoll value=system.attackRoll}}
{{formField systemFields.powerRoll value=system.powerRoll}} -->
{{! Prism RPG: Mana Upkeep }}
{{formField
systemFields.manaUpkeep
value=system.manaUpkeep
label="PRISMRPG.Label.manaUpkeep"
}}
{{formField systemFields.memorized value=system.memorized}}
{{! Prism RPG: APC (Action Point Cost) }}
{{formField systemFields.apc value=system.apc label="PRISMRPG.Label.apc"}}
{{formField systemFields.castingTime value=system.castingTime}}
{{formField systemFields.spellRange value=system.spellRange}}
{{formField systemFields.areaAffected value=system.areaAffected}}
{{formField systemFields.duration value=system.duration}}
{{formField systemFields.savingThrow value=system.savingThrow}}
{{formField systemFields.extraAetherPoints value=system.extraAetherPoints}}
{{formField systemFields.criticalType value=system.criticalType}}
{{! Prism RPG: Prism Color }}
{{formField
systemFields.color
value=system.color
localize=true
label="PRISMRPG.Label.prismColor"
}}
{{! Prism RPG: Color Effect }}
<fieldset class="spell-color-effect">
<legend>{{localize "PRISMRPG.Label.colorEffect"}}</legend>
<div class="form-group">
{{formInput
systemFields.colorEffect
enriched=enrichedColorEffect
value=system.colorEffect
name="system.colorEffect"
toggled=true
}}
</div>
</fieldset>
{{! Prism RPG: Spell Ascension }}
<fieldset class="spell-ascension">
<legend>{{localize "PRISMRPG.Label.spellAscension"}}</legend>
<div class="form-group">
<label>{{localize "PRISMRPG.Label.canAscend"}}</label>
<input
type="checkbox"
name="system.canAscend"
{{checked system.canAscend}}
/>
<p class="hint">{{localize "PRISMRPG.Hint.spellAscension"}}</p>
</div>
{{#if system.canAscend}}
<div class="form-group">
<label>{{localize "PRISMRPG.Label.ascensionEffect"}}</label>
{{formInput
systemFields.ascensionEffect
enriched=enrichedAscensionEffect
value=system.ascensionEffect
name="system.ascensionEffect"
toggled=true
}}
</div>
{{/if}}
</fieldset>
{{! Spell Components }}
<fieldset class="spell-components">
<legend>{{localize "PRISMRPG.Label.components"}}</legend>
<div class="shift-right">
{{formField
systemFields.components.fields.verbal
value=system.components.verbal
label="PRISMRPG.Label.verbal"
}}
{{formField
systemFields.components.fields.somatic
value=system.components.somatic
label="PRISMRPG.Label.somatic"
}}
{{formField
systemFields.components.fields.material
value=system.components.material
label="PRISMRPG.Label.material"
}}
{{formField
systemFields.components.fields.catalyst
value=system.components.catalyst
label="PRISMRPG.Label.catalyst"
}}
</div>
{{formField
systemFields.materialComponent
value=system.materialComponent
label="PRISMRPG.Label.materialComponent"
}}
{{formField
systemFields.catalyst
value=system.catalyst
label="PRISMRPG.Label.catalystDetails"
}}
</fieldset>
{{! Spell Properties }}
{{formField
systemFields.memorized
value=system.memorized
label="PRISMRPG.Label.memorized"
}}
{{formField
systemFields.castingTime
value=system.castingTime
label="PRISMRPG.Label.castingTime"
}}
{{formField
systemFields.spellRange
value=system.spellRange
label="PRISMRPG.Label.range"
}}
{{formField
systemFields.areaAffected
value=system.areaAffected
label="PRISMRPG.Label.areaAffected"
}}
{{formField
systemFields.duration
value=system.duration
label="PRISMRPG.Label.duration"
}}
{{formField
systemFields.savingThrow
value=system.savingThrow
label="PRISMRPG.Label.savingThrow"
}}
{{formField
systemFields.keywords
value=system.keywords
label="PRISMRPG.Label.keywords"
}}
{{! Legacy fields }}
{{formField
systemFields.level
value=system.level
label="PRISMRPG.Label.level"
}}
{{formField systemFields.cost value=system.cost label="PRISMRPG.Label.cost"}}
<fieldset>
<legend>{{localize "PRISMRPG.Label.description"}}</legend>
{{formInput systemFields.description enriched=enrichedDescription value=system.description name="system.description" toggled=true}}
{{formInput
systemFields.description
enriched=enrichedDescription
value=system.description
name="system.description"
toggled=true
}}
</fieldset>
</section>