Files
fvtt-hellborn/module/documents/item.mjs

21 lines
772 B
JavaScript

export const defaultItemImg = {
weapon: "systems/fvtt-hellborn/assets/icons/weapon.webp",
equipment: "systems/fvtt-hellborn/assets/icons/equipment.webp",
ritual: "systems/fvtt-hellborn/assets/icons/ritual.webp",
malefica: "systems/fvtt-hellborn/assets/icons/malefica.webp",
perk: "systems/fvtt-hellborn/assets/icons/perk.webp",
"species-trait": "systems/fvtt-hellborn/assets/icons/species-trait.webp",
armor: "systems/fvtt-hellborn/assets/icons/armor.webp",
deal: "systems/fvtt-hellborn/assets/icons/deal.webp",
tarot: "systems/fvtt-hellborn/assets/icons/tarot.webp",
}
export default class HellbornItem extends Item {
constructor(data, context) {
if (!data.img) {
data.img = defaultItemImg[data.type];
}
super(data, context);
}
}