Began implementing features that change stats
This commit is contained in:
9
rpg-docs/Model/Character/Features.js
Normal file
9
rpg-docs/Model/Character/Features.js
Normal file
@@ -0,0 +1,9 @@
|
||||
Features = new Meteor.Collection("features");
|
||||
|
||||
Feature = function(characterId){
|
||||
this.character = characterId;
|
||||
this.name = "New Feature";
|
||||
this.description = "";
|
||||
this.effects = [];
|
||||
this.enabled = false;
|
||||
}
|
||||
Reference in New Issue
Block a user