ds4/src/module/item/item.ts
2020-12-23 18:23:26 +01:00

19 lines
514 B
TypeScript

import { DS4ItemDataType } from "./item-data";
/**
* Extend the basic Item with some very simple modifications.
* @extends {Item}
*/
export class DS4Item extends Item<DS4ItemDataType> {
/**
* Augment the basic Item data model with additional dynamic data.
*/
prepareData(): void {
super.prepareData();
// Get the Item's data
// const itemData = this.data;
// const actorData = this.actor ? this.actor.data : {};
// const data = itemData.data;
}
}