Files
l5rx-chiaroscuro/system/scripts/items/item.js
Vlyan 22f2a8ab2e Item and Actor icons on creation
Working peculiarities
pre-version of csv importer for compendium
2020-12-19 22:42:27 +01:00

11 lines
301 B
JavaScript

export class ItemL5r5e extends Item {
/**
* Create a new entity using provided input data
* @override
*/
static async create(data, options = {}) {
data.img = `${CONFIG.l5r5e.paths.assets}icons/items/${data.type}.svg`;
return super.create(data, options);
}
}