Implemented very basic value-auditing for skills/abilities
This commit is contained in:
19
rpg-docs/Model/Character/SubSchemas/Proficiencies.js
Normal file
19
rpg-docs/Model/Character/SubSchemas/Proficiencies.js
Normal 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: []
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user