11 lines
212 B
JavaScript
11 lines
212 B
JavaScript
Spell = function(name){
|
|
this.name = name;
|
|
this.level = 0;
|
|
this.school = "";
|
|
this.range = "";
|
|
this.verbal = false;
|
|
this.somatic = false;
|
|
this.material = false;
|
|
this.duration = "";
|
|
this.description = "";
|
|
} |