Files
DiceCloud/rpg-docs/Model/Character/SubSchemas/Proficiencies
2014-11-13 09:30:54 +00:00

10 lines
261 B
Plaintext

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]}
});