53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
import SimpleSchema from 'simpl-schema';
|
|
import ErrorSchema from '/imports/api/properties/subSchemas/ErrorSchema.js';
|
|
|
|
const AdjustmentSchema = new SimpleSchema({
|
|
// The roll that determines how much to change the attribute
|
|
// This can be simplified, but should only compute when activated
|
|
amount: {
|
|
type: String,
|
|
optional: true,
|
|
defaultValue: '1',
|
|
},
|
|
// Who this adjustment applies to
|
|
target: {
|
|
type: String,
|
|
defaultValue: 'every',
|
|
allowedValues: [
|
|
'self', // the character who took the Adjustment
|
|
'each', // rolled once for `each` target
|
|
'every', // rolled once and applied to `every` target
|
|
],
|
|
},
|
|
// The stat this rolls applies to
|
|
stat: {
|
|
type: String,
|
|
optional: true,
|
|
},
|
|
operation: {
|
|
type: String,
|
|
allowedValues: ['set', 'increment'],
|
|
defaultValue: 'increment',
|
|
},
|
|
});
|
|
|
|
const ComputedOnlyAdjustmentSchema = new SimpleSchema({
|
|
amountResult: {
|
|
type: SimpleSchema.Integer,
|
|
optional: true,
|
|
},
|
|
amountErrors: {
|
|
type: Array,
|
|
optional: true,
|
|
},
|
|
'amountErrors.$':{
|
|
type: ErrorSchema,
|
|
},
|
|
});
|
|
|
|
const ComputedAdjustmentSchema = new SimpleSchema()
|
|
.extend(AdjustmentSchema)
|
|
.extend(ComputedOnlyAdjustmentSchema);
|
|
|
|
export { AdjustmentSchema, ComputedAdjustmentSchema, ComputedOnlyAdjustmentSchema };
|