Add support for the Good item type to represent all misc items in the game
This commit is contained in:
parent
eb6d7fee94
commit
2d804e7aa2
5 changed files with 61 additions and 0 deletions
|
|
@ -8,6 +8,7 @@ import { HeroSummaryCardV1 } from "../Apps/ActorSheets/HeroSummaryCardV1.mjs";
|
|||
// Data Models
|
||||
import { AmmoData } from "../data/Item/Ammo.mjs";
|
||||
import { CraftData } from "../data/Item/Craft.mjs";
|
||||
import { GoodData } from "../data/Item/Good.mjs";
|
||||
import { HeroData } from "../data/Actor/Hero.mjs";
|
||||
import { ProtectorData } from "../data/Item/Protector.mjs";
|
||||
import { SkillData } from "../data/Item/Skill.mjs";
|
||||
|
|
@ -45,6 +46,7 @@ Hooks.once(`init`, () => {
|
|||
CONFIG.Item.dataModels.ammo = AmmoData,
|
||||
CONFIG.Item.dataModels.armour = ProtectorData;
|
||||
CONFIG.Item.dataModels.craft = CraftData;
|
||||
CONFIG.Item.dataModels.good = GoodData;
|
||||
CONFIG.Item.dataModels.shield = ProtectorData;
|
||||
CONFIG.Item.dataModels.skill = SkillData;
|
||||
CONFIG.Item.dataModels.weapon = WeaponData;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue