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