Implemented and cleaned up character schemas
This commit is contained in:
13
rpg-docs/Model/Character/SubSchemas/Strings.js
Normal file
13
rpg-docs/Model/Character/SubSchemas/Strings.js
Normal file
@@ -0,0 +1,13 @@
|
||||
Schemas.Strings = new SimpleSchema({
|
||||
name: { type: String, defaultValue: "" },
|
||||
alignment: { type: String, defaultValue: "" },
|
||||
gender: { type: String, defaultValue: "" },
|
||||
race: { type: String, defaultValue: "" },
|
||||
description:{ type: String, defaultValue: "" },
|
||||
personality:{ type: String, defaultValue: "" },
|
||||
ideals: { type: String, defaultValue: "" },
|
||||
bonds: { type: String, defaultValue: "" },
|
||||
flaws: { type: String, defaultValue: "" },
|
||||
backstory: { type: String, defaultValue: "" },
|
||||
notes: { type: String, defaultValue: "" },
|
||||
});
|
||||
Reference in New Issue
Block a user