Added base values to skills to make implementing non player creatures easier

This commit is contained in:
Stefan Zermatten
2018-10-12 12:35:15 +02:00
parent 158615c25c
commit 6aaa4ebe00
2 changed files with 7 additions and 1 deletions

View File

@@ -40,6 +40,11 @@ skillSchema = new SimpleSchema({
order: {
type: Number,
},
baseValue: {
type: Number,
decimal: true,
optional: true,
},
value: {
type: Number,
decimal: true,