Added basic timing, made features a part of character schema
This commit is contained in:
@@ -1,13 +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: "" },
|
||||
name: { type: String, defaultValue: "", optional: true },
|
||||
alignment: { type: String, defaultValue: "", optional: true },
|
||||
gender: { type: String, defaultValue: "", optional: true },
|
||||
race: { type: String, defaultValue: "", optional: true },
|
||||
description:{ type: String, defaultValue: "", optional: true },
|
||||
personality:{ type: String, defaultValue: "", optional: true },
|
||||
ideals: { type: String, defaultValue: "", optional: true },
|
||||
bonds: { type: String, defaultValue: "", optional: true },
|
||||
flaws: { type: String, defaultValue: "", optional: true },
|
||||
backstory: { type: String, defaultValue: "", optional: true },
|
||||
notes: { type: String, defaultValue: "", optional: true },
|
||||
});
|
||||
Reference in New Issue
Block a user