Begin working on making there be per-subtype classes for class methods
This commit is contained in:
parent
b4dcad9eee
commit
07bebdba4d
6 changed files with 88 additions and 25 deletions
10
module/documents/Actor/Player.mjs
Normal file
10
module/documents/Actor/Player.mjs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
export class PlayerActor {
|
||||
static createCustomSpell() {
|
||||
let customUUID = `Spell.Custom.${randomID()}`;
|
||||
this.system.spells[customUUID] = {
|
||||
name: ``,
|
||||
cost: ``,
|
||||
description: ``,
|
||||
};
|
||||
};
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue