Initial skeleton

This commit is contained in:
2026-03-05 21:51:31 +01:00
commit 12458925a1
53 changed files with 6646 additions and 0 deletions
+49
View File
@@ -0,0 +1,49 @@
<section class="tab character-biography {{tab.cssClass}}" data-tab="{{tab.id}}" data-group="{{tab.group}}">
<fieldset>
<legend>Identity</legend>
<div class="form-group">
<label>Pronouns</label>
{{formInput systemFields.pronouns value=system.pronouns disabled=isPlayMode}}
</div>
<div class="form-group">
<label>{{localize "AWEMMY.Kit.Field"}}</label>
{{formInput systemFields.fieldName value=system.fieldName disabled=isPlayMode}}
</div>
<div class="form-group">
<label>Specialization</label>
{{formInput systemFields.specialization value=system.specialization disabled=isPlayMode}}
</div>
<div class="form-group">
<label>{{localize "AWEMMY.Item.Archetype"}}</label>
{{formInput systemFields.archetypeName value=system.archetypeName disabled=isPlayMode}}
</div>
<div class="form-group">
<label>{{localize "AWEMMY.Item.Background"}}</label>
{{formInput systemFields.backgroundName value=system.backgroundName disabled=isPlayMode}}
</div>
</fieldset>
<fieldset>
<legend>Description</legend>
{{formInput
systemFields.description
enriched=enrichedDescription
value=system.description
name="system.description"
toggled=true
}}
</fieldset>
<fieldset>
<legend>Notes</legend>
{{formInput
systemFields.notes
enriched=enrichedNotes
value=system.notes
name="system.notes"
toggled=true
}}
</fieldset>
</section>