Item sheets, WIP

This commit is contained in:
2022-11-03 20:01:45 +01:00
parent f039600065
commit c64754a586
18 changed files with 548 additions and 278 deletions

View File

@ -1,11 +1,14 @@
import { Avd12Utility } from "./avd12-utility.js";
export const defaultItemImg = {
skill: "systems/fvtt-avd12/images/icons/icon_skill.webp",
armor: "systems/fvtt-avd12/images/icons/icon_armour.webp",
weapon: "systems/fvtt-avd12/images/icons/icon_weapon.webp",
equipment: "systems/fvtt-avd12/images/icons/icon_equipment.webp",
money: "systems/fvtt-avd12/images/icons/icon_money.webp",
skill: "systems/fvtt-avd12/images/icons/skill2.webp",
armor: "systems/fvtt-avd12/images/icons/gloves2.webp",
shield: "systems/fvtt-avd12/images/icons/shield2.webp",
weapon: "systems/fvtt-avd12/images/icons/weapon2.webp",
equipment: "systems/fvtt-avd12/images/icons/cloak2.webp",
spell: "systems/fvtt-avd12/images/icons/focus2.webp",
module: "systems/fvtt-avd12/images/icons/focus2.webp",
money: "systems/fvtt-avd12/images/icons/chest2.webp",
}
/**

View File

@ -127,9 +127,12 @@ export class Avd12Utility {
'systems/fvtt-avd12/templates/actors/editor-notes-gm.hbs',
'systems/fvtt-avd12/templates/items/partial-item-nav.hbs',
'systems/fvtt-avd12/templates/items/partial-item-description.hbs',
'systems/fvtt-avd12/templates/items/partial-common-item-fields.hbs',
'systems/fvtt-avd12/templates/items/partial-options-weapon-types.hbs',
'systems/fvtt-avd12/templates/items/partial-options-weapon-categories.hbs',
'systems/fvtt-avd12/templates/items/partial-common-item-fields.hbs'
'systems/fvtt-avd12/templates/items/partial-options-attributes.hbs',
'systems/fvtt-avd12/templates/items/partial-options-equipment-types.hbs',
'systems/fvtt-avd12/templates/items/partial-options-spell-types.hbs',
]
return loadTemplates(templatePaths);
}