Files
DiceCloud/rpg-docs/Model/Character/Constructors/Effect.js

5 lines
112 B
JavaScript

Effect = function(stat, value){
this.stat = stat;
this.value = value;
this._id = new Mongo.ObjectID()._str;
}