New characters get the appropriate attributes/skills/damageMultipliers

This commit is contained in:
Thaum Rystra
2018-08-25 20:19:17 +02:00
parent b4506fd939
commit 662fc91e17
9 changed files with 194 additions and 5 deletions

View File

@@ -0,0 +1,41 @@
Schemas.LibraryAttacks = new SimpleSchema({
name: {
type: String,
defaultValue: "New Attack",
trim: false,
},
details: {
type: String,
optional: true,
trim: false,
},
attackBonus: {
type: String,
optional: true,
trim: false,
},
damage: {
type: String,
optional: true,
trim: false,
},
damageType: {
type: String,
allowedValues: [
"bludgeoning",
"piercing",
"slashing",
"acid",
"cold",
"fire",
"force",
"lightning",
"necrotic",
"poison",
"psychic",
"radiant",
"thunder",
],
defaultValue: "slashing",
},
});