9 lines
207 B
JavaScript
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;
|
|
} |