Implemented and cleaned up character schemas
This commit is contained in:
10
rpg-docs/Model/Character/SubSchemas/Proficiencies
Normal file
10
rpg-docs/Model/Character/SubSchemas/Proficiencies
Normal 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]}
|
||||
});
|
||||
Reference in New Issue
Block a user