Initiali import
This commit is contained in:
32
modules/imperium5-item.js
Normal file
32
modules/imperium5-item.js
Normal file
@@ -0,0 +1,32 @@
|
||||
|
||||
export const defaultItemImg = {
|
||||
specialisation: "systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp",
|
||||
perk: "systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp",
|
||||
ability: "systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp",
|
||||
armor: "systems/fvtt-pegasus-rpg/images/icons/icon_armour.webp",
|
||||
weapon: "systems/fvtt-pegasus-rpg/images/icons/icon_weapon.webp",
|
||||
equipment: "systems/fvtt-pegasus-rpg/images/icons/icon_equipment.webp",
|
||||
effect: "systems/fvtt-pegasus-rpg/images/icons/icon_effect.webp",
|
||||
race: "systems/fvtt-pegasus-rpg/images/icons/icon_race.webp",
|
||||
power: "systems/fvtt-pegasus-rpg/images/icons/icon_power.webp",
|
||||
armour: "systems/fvtt-pegasus-rpg/images/icons/icon_armour.webp",
|
||||
equipment: "systems/fvtt-pegasus-rpg/images/icons/icon_equipment.webp",
|
||||
weapon: "systems/fvtt-pegasus-rpg/images/icons/icon_meleeweapon.webp",
|
||||
shield: "systems/fvtt-pegasus-rpg/images/icons/icon_shield.webp",
|
||||
money: "systems/fvtt-pegasus-rpg/images/icons/icon_money.webp",
|
||||
}
|
||||
|
||||
/**
|
||||
* Extend the basic ItemSheet with some very simple modifications
|
||||
* @extends {ItemSheet}
|
||||
*/
|
||||
export class PegasusItem extends Item {
|
||||
|
||||
constructor(data, context) {
|
||||
if (!data.img) {
|
||||
data.img = defaultItemImg[data.type];
|
||||
}
|
||||
super(data, context);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user