diff --git a/templates/actor/character-sheet.html b/templates/actor/character-sheet.html new file mode 100644 index 00000000..8a957b80 --- /dev/null +++ b/templates/actor/character-sheet.html @@ -0,0 +1,237 @@ +
+ + {{!-- Sheet Header --}} +
+ + +
+

+ +

+ +
+
+ +
+ {{#unless disableExperience}} +
+ + / {{data.details.xp.max}} +
+
+ +
+ {{/unless}} +
+ + {{!-- Character Summary --}} +
    +
  • + +
  • +
  • + +
  • +
  • + +
  • +
+ + {{!-- Header Attributes --}} +
    +
  • +

    {{ localize "SW5E.Health" }}

    +
    + + / + +
    +
    + + +
    +
  • + +
  • +

    {{ localize "SW5E.ArmorClass" }}

    +
    + +
    +
    + {{ localize "SW5E.Proficiency" }} + {{numberFormat data.attributes.prof decimals=0 sign=true}} +
    +
  • + +
  • +

    {{ localize "SW5E.Speed" }}

    +
    + +
    +
    + +
    +
  • + +
  • +

    {{ localize "SW5E.HitDice" }}

    +
    + +
    + +
  • +
+
+
+ + {{!-- NPC Sheet Navigation --}} + + + {{!-- NPC Sheet Body --}} +
+ +
+ + {{!-- Ability Scores --}} +
    + {{#each data.abilities as |ability id|}} +
  • +

    {{ability.label}}

    + +
    + {{numberFormat ability.mod decimals=0 sign=true}} + + {{{ability.icon}}} + {{numberFormat ability.save decimals=0 sign=true}} +
    +
  • + {{/each}} +
+ + {{!-- Skills --}} +
    + {{#each data.skills as |skill s|}} +
  • + + {{{skill.icon}}} +

    {{skill.label}}

    + {{skill.ability}} + {{numberFormat skill.mod decimals=0 sign=true}} + ({{skill.passive}}) +
  • + {{/each}} +
+ +
+ + {{!-- Body Attributes --}} +
    + {{#each resources as |res|}} +
  • +

    + +

    +
    + + / + +
    +
    + + +
    +
  • + {{/each}} + +
  • +

    {{ localize "SW5E.Initiative" }}

    +
    + {{numberFormat data.attributes.init.total decimals=0 sign=true}} +
    +
    + {{ localize "SW5E.Modifier" }} + +
    +
  • +
+ + {{!-- Counters --}} +
+
+

{{ localize "SW5E.DeathSave" }}

+
+ + + + +
+
+
+

{{ localize "SW5E.Exhaustion" }}

+
+ +
+
+
+

{{ localize "SW5E.Inspiration" }}

+
+ +
+
+
+ + {{!-- Traits --}} + {{> "systems/sw5e/templates/actors/parts/actor-traits.html"}} +
+
+ + {{!-- Inventory Tab --}} +
+ {{> "systems/sw5e/templates/actors/parts/actor-inventory.html" sections=inventory}} +
+ + {{!-- Features Tab --}} +
+ {{> "systems/sw5e/templates/actors/parts/actor-features.html" sections=features}} +
+ + {{!-- Powerbook Tab --}} +
+ {{> "systems/sw5e/templates/actors/parts/actor-powerbook.html"}} +
+ + {{!-- Biography Tab --}} +
+ {{editor content=data.details.biography.value target="data.details.biography.value" button=true owner=owner editable=editable}} +
+
+
diff --git a/templates/actor/limited-sheet.html b/templates/actor/limited-sheet.html new file mode 100644 index 00000000..a924f8ef --- /dev/null +++ b/templates/actor/limited-sheet.html @@ -0,0 +1,21 @@ +
+ + +
+

+ +

+
+ + +
+
+ {{editor content=data.details.biography.value target="data.details.biography.value" button=true owner=owner editable=editable}} +
+
+ + +
+ +
+
diff --git a/templates/actor/npc-sheet.html b/templates/actor/npc-sheet.html new file mode 100644 index 00000000..908db3db --- /dev/null +++ b/templates/actor/npc-sheet.html @@ -0,0 +1,175 @@ +
+ + {{!-- NPC Sheet Header --}} +
+ + +
+

+ +

+ +
+
+ + +
+
+ {{data.details.xp.value}} XP +
+
+ +
    +
  • + +
  • +
  • + +
  • +
  • + +
  • +
+
+
+ + {{!-- NPC Sheet Navigation --}} + + + {{!-- NPC Sheet Body --}} +
+
+ + {{!-- Ability Scores --}} +
    + {{#each data.abilities as |ability id|}} +
  • +

    {{ability.label}}

    + +
    + {{numberFormat ability.mod decimals=0 sign=true}} + + {{{ability.icon}}} + {{numberFormat ability.save decimals=0 sign=true}} +
    +
  • + {{/each}} +
+ + {{!-- Skills --}} +
    + {{#each data.skills as |skill s|}} +
  • + + {{{skill.icon}}} +

    {{skill.label}}

    + {{skill.ability}} + {{numberFormat skill.mod decimals=0 sign=true}} + ({{skill.passive}}) +
  • + {{/each}} +
+ +
+ + {{!-- Attributes --}} +
    +
  • +

    {{ localize "SW5E.Health" }}

    +
    + + / + +
    +
    + +
    +
  • + +
  • +

    {{ localize "SW5E.ArmorClass" }}

    +
    + +
    +
    + {{ localize "SW5E.Proficiency" }} + {{numberFormat data.attributes.prof decimals=0 sign=true}} +
    +
  • + +
  • +

    {{ localize "SW5E.Speed" }}

    +
    + +
    +
    + +
    +
  • +
+ + {{!-- Legendary Actions --}} +
+
+

{{ localize "SW5E.LegAct" }}

+
+ + / + +
+
+
+

{{ localize "SW5E.LegRes" }}

+
+ + / + +
+
+
+

{{ localize "SW5E.LairAct" }}

+
+ + +
+
+
+ + {{!-- Traits --}} + {{> "systems/sw5e/templates/actors/parts/actor-traits.html"}} +
+
+ + {{!-- Features Tab --}} +
+ {{> "systems/sw5e/templates/actors/parts/actor-features.html" sections=features}} +
+ + {{!-- Powerbook Tab --}} +
+ {{> "systems/sw5e/templates/actors/parts/actor-powerbook.html"}} +
+ + {{!-- Biography Tab --}} +
+ {{editor content=data.details.biography.value target="data.details.biography.value" button=true owner=owner editable=editable}} +
+
+