Implemented and cleaned up character schemas

This commit is contained in:
Thaum
2014-11-13 08:44:21 +00:00
parent d80fb19dfe
commit 7ab97a17cc
27 changed files with 403 additions and 259 deletions

View File

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