added "Effects" and "Details" tab to all items

Additions:
- partials for effects and details tab with navigation
- loading of partials in main ds4.ts
- add localization

Changes:
- empty "Details" tabs replaced by inclusion of partial
- "Details" tab now displays default message
- Previous "Details" tab of Trinket replaced by "Effects" tab
This commit is contained in:
Gesina Schwalbe 2020-12-28 18:49:55 +01:00
parent 7986e91ab7
commit 9cf248754c
9 changed files with 68 additions and 39 deletions

View file

@ -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);
}