This commit is contained in:
Thaum
2014-11-03 06:17:35 +00:00
commit 2a82e39cf0
34 changed files with 1133 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
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 = "";
}