Files
DiceCloud/rpg-docs/Model/Character/Spell.js
2014-11-03 06:17:35 +00:00

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 = "";
}