Implemented very basic value-auditing for skills/abilities

This commit is contained in:
Thaum
2014-11-18 12:01:02 +00:00
parent d0e5a1a378
commit 5c99530077
13 changed files with 251 additions and 68 deletions

View File

@@ -0,0 +1,19 @@
Schemas.Proficiency = new SimpleSchema({
name: {type: String},
source: {type: String}
})
Schemas.Proficiencies = new SimpleSchema({
weapons: {
type: [Schemas.Proficiency],
defaultValue: []
},
tools: {
type: [Schemas.Proficiency],
defaultValue: []
},
languages: {
type: [Schemas.Proficiency],
defaultValue: []
}
});