Effects can now impact multiple stats

This commit is contained in:
Stefan Zermatten
2019-08-06 16:36:37 +02:00
parent b110eadb7c
commit 16d61eb708

View File

@@ -29,8 +29,12 @@ let EffectSchema = new SimpleSchema({
type: String,
optional: true,
},
//which stat the effect is applied to
stat: {
//which stats the effect is applied to
stats: {
type: Array,
defaultValue: [],
},
'stats.$': {
type: String,
optional: true,
},