Files
DiceCloud/rpg-docs/Model/Character/SubSchemas/Proficiencies.js

19 lines
338 B
JavaScript

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