Added attribute damage and self damage results to actions and log.

This commit is contained in:
Stefan Zermatten
2020-11-12 12:57:48 +02:00
parent 3917f63d5e
commit 525b528d9a
10 changed files with 243 additions and 48 deletions

View File

@@ -23,6 +23,11 @@ const AdjustmentSchema = new SimpleSchema({
type: String,
optional: true,
},
operation: {
type: String,
allowedValues: ['set', 'increment'],
defaultValue: 'increment',
},
});
export { AdjustmentSchema };