From 91e500739166bc2a74a25f975c33be3029b1e97f Mon Sep 17 00:00:00 2001 From: Johannes Loher Date: Wed, 30 Jun 2021 14:24:23 +0200 Subject: [PATCH] Fix item sheets --- src/module/hooks/init.ts | 6 +- src/module/item/item-sheet.ts | 3 +- src/system.json | 4 +- src/templates/sheets/item/armor-sheet.hbs | 57 ++++++++++--------- src/templates/sheets/item/shield-sheet.hbs | 15 ++--- .../item/specialCreatureAbility-sheet.hbs | 2 +- src/templates/sheets/item/spell-sheet.hbs | 18 +++--- .../sheets/item/tabs/description.hbs | 26 +++++---- src/templates/sheets/item/tabs/details.hbs | 6 +- src/templates/sheets/item/tabs/effects.hbs | 4 +- src/templates/sheets/item/talent-sheet.hbs | 22 +++---- src/templates/sheets/item/weapon-sheet.hbs | 45 ++++++++------- 12 files changed, 108 insertions(+), 100 deletions(-) diff --git a/src/module/hooks/init.ts b/src/module/hooks/init.ts index 0525fd2..187b8f2 100644 --- a/src/module/hooks/init.ts +++ b/src/module/hooks/init.ts @@ -55,10 +55,10 @@ async function init() { registerSystemSettings(); Actors.unregisterSheet("core", ActorSheet); - // Actors.registerSheet("ds4", DS4CharacterActorSheet, { types: ["character"], makeDefault: true }); - // Actors.registerSheet("ds4", DS4CreatureActorSheet, { types: ["creature"], makeDefault: true }); + Actors.registerSheet("ds4", DS4CharacterActorSheet, { types: ["character"], makeDefault: true }); + Actors.registerSheet("ds4", DS4CreatureActorSheet, { types: ["creature"], makeDefault: true }); Items.unregisterSheet("core", ItemSheet); - // Items.registerSheet("ds4", DS4ItemSheet, { makeDefault: true }); + Items.registerSheet("ds4", DS4ItemSheet, { makeDefault: true }); await registerHandlebarsPartials(); registerHandlebarsHelpers(); diff --git a/src/module/item/item-sheet.ts b/src/module/item/item-sheet.ts index e2cbd33..e1d88bc 100644 --- a/src/module/item/item-sheet.ts +++ b/src/module/item/item-sheet.ts @@ -34,13 +34,14 @@ export class DS4ItemSheet extends ItemSheet /** @override */ async getData(): Promise { - return { + const data = { ...(await super.getData()), config: DS4, isOwned: this.item.isOwned, actor: this.item.actor, isPhysical: isDS4ItemDataTypePhysical(this.item.data.data), }; + return data; } /** @override */ diff --git a/src/system.json b/src/system.json index f03aeac..26ce836 100644 --- a/src/system.json +++ b/src/system.json @@ -3,8 +3,8 @@ "title": "Dungeonslayers 4", "description": "The Dungeonslayers 4 system for FoundryVTT. Dungeonslayers by Christian Kennig is licensed under CC BY-NC-SA 3.0 (https://creativecommons.org/licenses/by-nc-sa/3.0/). The icons by the authors of Game-icons.net are licensed under CC BY 3.0 (https://creativecommons.org/licenses/by/3.0/).", "version": "0.8.0", - "minimumCoreVersion": "0.7.9", - "compatibleCoreVersion": "0.7.10", + "minimumCoreVersion": "0.8.8", + "compatibleCoreVersion": "0.8.8", "templateVersion": 6, "author": "Johannes Loher, Gesina Schwalbe, Oliver Rümpelein, Siegfried Krug, Max Tharr, Sascha Martens", "authors": [ diff --git a/src/templates/sheets/item/armor-sheet.hbs b/src/templates/sheets/item/armor-sheet.hbs index 80773f0..8735b00 100644 --- a/src/templates/sheets/item/armor-sheet.hbs +++ b/src/templates/sheets/item/armor-sheet.hbs @@ -7,35 +7,36 @@ SPDX-License-Identifier: MIT
{{#> systems/ds4/templates/sheets/item/components/sheet-header.hbs}} -
-
- - -
-
- - -
-
- - -
-
+
+
+ + +
+
+ + +
+
+ + +
+
{{/systems/ds4/templates/sheets/item/components/sheet-header.hbs}} {{!-- Common Item body --}} - {{#> systems/ds4/templates/sheets/item/components/body.hbs}}{{/systems/ds4/templates/sheets/item/components/body.hbs}} + {{#> + systems/ds4/templates/sheets/item/components/body.hbs}}{{/systems/ds4/templates/sheets/item/components/body.hbs}}
diff --git a/src/templates/sheets/item/shield-sheet.hbs b/src/templates/sheets/item/shield-sheet.hbs index dfec284..34f34e7 100644 --- a/src/templates/sheets/item/shield-sheet.hbs +++ b/src/templates/sheets/item/shield-sheet.hbs @@ -7,15 +7,16 @@ SPDX-License-Identifier: MIT
{{#> systems/ds4/templates/sheets/item/components/sheet-header.hbs}} -
-
- - -
+
+
+ +
+
{{/systems/ds4/templates/sheets/item/components/sheet-header.hbs}} {{!-- Common Item body --}} - {{#> systems/ds4/templates/sheets/item/components/body.hbs}}{{/systems/ds4/templates/sheets/item/components/body.hbs}} + {{#> + systems/ds4/templates/sheets/item/components/body.hbs}}{{/systems/ds4/templates/sheets/item/components/body.hbs}} diff --git a/src/templates/sheets/item/specialCreatureAbility-sheet.hbs b/src/templates/sheets/item/specialCreatureAbility-sheet.hbs index 97c1e3a..68a40a5 100644 --- a/src/templates/sheets/item/specialCreatureAbility-sheet.hbs +++ b/src/templates/sheets/item/specialCreatureAbility-sheet.hbs @@ -9,7 +9,7 @@ SPDX-License-Identifier: MIT
-
diff --git a/src/templates/sheets/item/spell-sheet.hbs b/src/templates/sheets/item/spell-sheet.hbs index 5983d50..58d1785 100644 --- a/src/templates/sheets/item/spell-sheet.hbs +++ b/src/templates/sheets/item/spell-sheet.hbs @@ -16,9 +16,9 @@ SPDX-License-Identifier: MIT
+ value="{{lookup (lookup data.data property) 'value'}}" /> - {{#select data.spellType}} + {{#select data.data.spellType}} {{#each config.i18n.spellTypes as |value key|}} {{/each}} @@ -57,7 +57,7 @@ SPDX-License-Identifier: MIT
- +
{{/systems/ds4/templates/sheets/item/components/sheet-header.hbs}} @@ -67,7 +67,7 @@ SPDX-License-Identifier: MIT
+ id="data.minimumLevels.healer" value="{{data.data.minimumLevels.healer}}" />
+ id="data.minimumLevels.wizard" value="{{data.data.minimumLevels.wizard}}" />
+ id="data.minimumLevels.sorcerer" value="{{data.data.minimumLevels.sorcerer}}" />
- {{data.price}} + {{data.data.price}}
{{/systems/ds4/templates/sheets/item/components/body.hbs}} diff --git a/src/templates/sheets/item/tabs/description.hbs b/src/templates/sheets/item/tabs/description.hbs index d0782bb..39b2107 100644 --- a/src/templates/sheets/item/tabs/description.hbs +++ b/src/templates/sheets/item/tabs/description.hbs @@ -13,25 +13,27 @@ Additional elements of the side-properties div can be handed over via the @parti
{{#if isOwned}} - {{#if (ne data.equipped undefined)}}
+ {{#if (ne data.data.equipped undefined)}}
- +
{{/if}}
- {{actor.name}}
{{#if isPhysical}} -
- - -
-
- - -
+
+ + +
+
+ + +
{{/if}} {{else}} {{localize "DS4.NotOwned"}} @@ -39,6 +41,6 @@ Additional elements of the side-properties div can be handed over via the @parti {{> @partial-block}}
- {{editor content=data.description target="data.description" button=true owner=owner editable=editable}} + {{editor content=data.data.description target="data.description" button=true owner=owner editable=editable}}
diff --git a/src/templates/sheets/item/tabs/details.hbs b/src/templates/sheets/item/tabs/details.hbs index 87f0381..8fa6ec1 100644 --- a/src/templates/sheets/item/tabs/details.hbs +++ b/src/templates/sheets/item/tabs/details.hbs @@ -11,13 +11,13 @@ SPDX-License-Identifier: MIT
- +
+
{{/inline}} @@ -25,15 +25,17 @@ SPDX-License-Identifier: MIT
{{#> systems/ds4/templates/sheets/item/components/sheet-header.hbs}} -
- {{> talentRankBasicProperty data=data property='base' localizeString='DS4.TalentRankBase' }} - {{> talentRankBasicProperty data=data property='max' localizeString='DS4.TalentRankMax'}} - {{> talentRankBasicProperty data=data property='mod' localizeString='DS4.TalentRankMod'}} - {{> talentRankBasicProperty data=data property='total' localizeString='DS4.TalentRankTotal' disabled='disabled'}} -
+
+ {{> talentRankBasicProperty data=data property='base' localizeString='DS4.TalentRankBase' }} + {{> talentRankBasicProperty data=data property='max' localizeString='DS4.TalentRankMax'}} + {{> talentRankBasicProperty data=data property='mod' localizeString='DS4.TalentRankMod'}} + {{> talentRankBasicProperty data=data property='total' localizeString='DS4.TalentRankTotal' + disabled='disabled'}} +
{{/systems/ds4/templates/sheets/item/components/sheet-header.hbs}} {{!-- Common Item body --}} - {{#> systems/ds4/templates/sheets/item/components/body.hbs}}{{/systems/ds4/templates/sheets/item/components/body.hbs}} + {{#> + systems/ds4/templates/sheets/item/components/body.hbs}}{{/systems/ds4/templates/sheets/item/components/body.hbs}}
diff --git a/src/templates/sheets/item/weapon-sheet.hbs b/src/templates/sheets/item/weapon-sheet.hbs index 591e33b..1e8c0df 100644 --- a/src/templates/sheets/item/weapon-sheet.hbs +++ b/src/templates/sheets/item/weapon-sheet.hbs @@ -7,30 +7,31 @@ SPDX-License-Identifier: MIT
{{#> systems/ds4/templates/sheets/item/components/sheet-header.hbs}} -
-
- - -
-
- - -
-
- - -
+
+
+ +
+
+ + +
+
+ + +
+
{{/systems/ds4/templates/sheets/item/components/sheet-header.hbs}} {{!-- Common Item body --}} - {{#> systems/ds4/templates/sheets/item/components/body.hbs}}{{/systems/ds4/templates/sheets/item/components/body.hbs}} + {{#> + systems/ds4/templates/sheets/item/components/body.hbs}}{{/systems/ds4/templates/sheets/item/components/body.hbs}}