Files
DiceCloud/rpg-docs/Model/Character/Features.js

9 lines
207 B
JavaScript

Features = new Meteor.Collection("features");
Feature = function(characterId){
this.character = characterId;
this.name = "New Feature";
this.description = "";
this.effects = [];
this.enabled = false;
}