diff --git a/src/lang/en.json b/src/lang/en.json
index 9714455..0973c81 100644
--- a/src/lang/en.json
+++ b/src/lang/en.json
@@ -1,6 +1,7 @@
{
"DS4.Description": "Description",
"DS4.Details": "Details",
+ "DS4.Effects": "Effects",
"DS4.AttackType": "Attack Type",
"DS4.AttackTypeAbbr": "AT",
"DS4.WeaponBonus": "Weapon Bonus",
diff --git a/src/module/ds4.ts b/src/module/ds4.ts
index bd76905..c5d0f99 100644
--- a/src/module/ds4.ts
+++ b/src/module/ds4.ts
@@ -31,7 +31,11 @@ Hooks.once("init", async function () {
});
async function registerHandlebarsPartials() {
- const templatePaths = ["systems/ds4/templates/item/partials/description.hbs"];
+ const templatePaths = [
+ "systems/ds4/templates/item/partials/description.hbs",
+ "systems/ds4/templates/item/partials/details.hbs",
+ "systems/ds4/templates/item/partials/effects.hbs",
+ ];
return loadTemplates(templatePaths);
}
diff --git a/src/templates/item/armor-sheet.hbs b/src/templates/item/armor-sheet.hbs
index 6497448..b720df0 100644
--- a/src/templates/item/armor-sheet.hbs
+++ b/src/templates/item/armor-sheet.hbs
@@ -37,6 +37,7 @@
{{!-- Sheet Tab Navigation --}}
{{localize "DS4.Description"}}
+ {{localize "DS4.Effects"}}
{{localize "DS4.Details"}}
@@ -46,9 +47,11 @@
{{!-- Description Tab --}}
{{> systems/ds4/templates/item/partials/description.hbs}}
- {{!-- Attributes Tab --}}
-
- {{!-- As you add new fields, add them in here! --}}
-
+ {{!-- Details Tab --}}
+ {{> systems/ds4/templates/item/partials/details.hbs}}
+
+ {{!-- Effects Tab --}}
+ {{> systems/ds4/templates/item/partials/effects.hbs}}
+
\ No newline at end of file
diff --git a/src/templates/item/equipment-sheet.hbs b/src/templates/item/equipment-sheet.hbs
index 79d4832..25434bf 100644
--- a/src/templates/item/equipment-sheet.hbs
+++ b/src/templates/item/equipment-sheet.hbs
@@ -10,6 +10,7 @@
{{!-- Sheet Tab Navigation --}}
{{localize "DS4.Description"}}
+ {{localize "DS4.Effects"}}
{{localize "DS4.Details"}}
@@ -19,9 +20,11 @@
{{!-- Description Tab --}}
{{> systems/ds4/templates/item/partials/description.hbs}}
- {{!-- Attributes Tab --}}
-
- {{!-- As you add new fields, add them in here! --}}
-
+ {{!-- Details Tab --}}
+ {{> systems/ds4/templates/item/partials/details.hbs}}
+
+ {{!-- Effects Tab --}}
+ {{> systems/ds4/templates/item/partials/effects.hbs}}
+
\ No newline at end of file
diff --git a/src/templates/item/partials/details.hbs b/src/templates/item/partials/details.hbs
new file mode 100644
index 0000000..2d5b3f0
--- /dev/null
+++ b/src/templates/item/partials/details.hbs
@@ -0,0 +1,5 @@
+{{!-- The item tab for details. --}}
+
+ {{!-- As you add new fields, add them in here! --}}
+
Nothing to see yet.
+
\ No newline at end of file
diff --git a/src/templates/item/partials/effects.hbs b/src/templates/item/partials/effects.hbs
new file mode 100644
index 0000000..819290d
--- /dev/null
+++ b/src/templates/item/partials/effects.hbs
@@ -0,0 +1,22 @@
+{{!-- Tab for the items view to manage effects --}}
+
+
+
+ {{#each item.effects as |effect id|}}
+
+ {{effect.label}}
+
+
+ {{/each}}
+
+
\ No newline at end of file
diff --git a/src/templates/item/shield-sheet.hbs b/src/templates/item/shield-sheet.hbs
index ae1166f..b06ecb4 100644
--- a/src/templates/item/shield-sheet.hbs
+++ b/src/templates/item/shield-sheet.hbs
@@ -17,6 +17,7 @@
{{!-- Sheet Tab Navigation --}}
{{localize "DS4.Description"}}
+ {{localize "DS4.Effects"}}
{{localize "DS4.Details"}}
@@ -26,9 +27,11 @@
{{!-- Description Tab --}}
{{> systems/ds4/templates/item/partials/description.hbs}}
- {{!-- Attributes Tab --}}
-
- {{!-- As you add new fields, add them in here! --}}
-
+ {{!-- Details Tab --}}
+ {{> systems/ds4/templates/item/partials/details.hbs}}
+
+ {{!-- Effects Tab --}}
+ {{> systems/ds4/templates/item/partials/effects.hbs}}
+
\ No newline at end of file
diff --git a/src/templates/item/trinket-sheet.hbs b/src/templates/item/trinket-sheet.hbs
index 364174c..25434bf 100644
--- a/src/templates/item/trinket-sheet.hbs
+++ b/src/templates/item/trinket-sheet.hbs
@@ -10,6 +10,7 @@
{{!-- Sheet Tab Navigation --}}
{{localize "DS4.Description"}}
+ {{localize "DS4.Effects"}}
{{localize "DS4.Details"}}
@@ -19,27 +20,11 @@
{{!-- Description Tab --}}
{{> systems/ds4/templates/item/partials/description.hbs}}
- {{!-- Attributes Tab --}}
-
-
-
- {{#each item.effects as |effect id|}}
-
- {{effect.label}}
-
-
- {{/each}}
-
-
+ {{!-- Details Tab --}}
+ {{> systems/ds4/templates/item/partials/details.hbs}}
+
+ {{!-- Effects Tab --}}
+ {{> systems/ds4/templates/item/partials/effects.hbs}}
+
\ No newline at end of file
diff --git a/src/templates/item/weapon-sheet.hbs b/src/templates/item/weapon-sheet.hbs
index 4c0f89b..09b3fac 100644
--- a/src/templates/item/weapon-sheet.hbs
+++ b/src/templates/item/weapon-sheet.hbs
@@ -32,6 +32,7 @@
{{!-- Sheet Tab Navigation --}}
{{localize "DS4.Description"}}
+ {{localize "DS4.Effects"}}
{{localize "DS4.Details"}}
@@ -41,9 +42,11 @@
{{!-- Description Tab --}}
{{> systems/ds4/templates/item/partials/description.hbs}}
- {{!-- Attributes Tab --}}
-
- {{!-- As you add new fields, add them in here! --}}
-
+ {{!-- Details Tab --}}
+ {{> systems/ds4/templates/item/partials/details.hbs}}
+
+ {{!-- Effects Tab --}}
+ {{> systems/ds4/templates/item/partials/effects.hbs}}
+
\ No newline at end of file