.dungeon/module/documents/Actor/Player.mjs

10 lines
201 B
JavaScript

export class PlayerActor {
static createCustomSpell() {
let customUUID = `Spell.Custom.${randomID()}`;
this.system.spells[customUUID] = {
name: ``,
cost: ``,
description: ``,
};
};
};