ds4/src/module/item/item.ts

22 lines
641 B
TypeScript
Raw Normal View History

2020-12-29 00:33:43 +01:00
import { DS4Actor } from "../actor/actor";
import { DS4ActorDataType } from "../actor/actor-data";
2020-12-23 18:23:26 +01:00
import { DS4ItemDataType } from "./item-data";
2020-12-23 16:52:20 +01:00
/**
* Extend the basic Item with some very simple modifications.
* @extends {Item}
*/
2020-12-29 00:33:43 +01:00
export class DS4Item extends Item<DS4ItemDataType, DS4ActorDataType, DS4Actor> {
2020-12-23 16:52:20 +01:00
/**
* Augment the basic Item data model with additional dynamic data.
*/
2020-12-23 18:23:26 +01:00
prepareData(): void {
2020-12-23 16:52:20 +01:00
super.prepareData();
// Get the Item's data
2020-12-23 18:23:26 +01:00
// const itemData = this.data;
// const actorData = this.actor ? this.actor.data : {};
// const data = itemData.data;
2020-12-23 16:52:20 +01:00
}
}