This commit is contained in:
2022-02-23 22:31:53 +01:00
parent 3d8054c632
commit 5c6f9bc9a5
12 changed files with 3293 additions and 0 deletions

View File

@ -0,0 +1,19 @@
import { MournbladeUtility } from "./mournblade-utility.js";
export const defaultItemImg = {
}
/**
* Extend the basic ItemSheet with some very simple modifications
* @extends {ItemSheet}
*/
export class MournbladeItem extends Item {
constructor(data, context) {
if (!data.img) {
data.img = defaultItemImg[data.type];
}
super(data, context);
}
}