Files
DiceCloud/app/imports/api/properties/Branches.js
ThaumRystra 5a2df36e8b Began migrating action engine to async
To suspending actions to await user input
2023-11-13 00:24:51 +02:00

60 lines
1.4 KiB
JavaScript

import SimpleSchema from 'simpl-schema';
import STORAGE_LIMITS from '/imports/constants/STORAGE_LIMITS.js';
import createPropertySchema from '/imports/api/properties/subSchemas/createPropertySchema.js';
let BranchSchema = createPropertySchema({
branchType: {
type: String,
allowedValues: [
// Uses the condition field to determine whether to apply children
'if',
// Attack
'hit',
'miss',
// Save
'failedSave',
'successfulSave',
// Iterate through targets
'eachTarget',
// Pick one child at random
'random',
// Pick one child based on a given index
'index',
// if it has option children, asks to select one
// Otherwise presents its own text with yes/no
'choice',
//'option',
],
defaultValue: 'if',
},
text: {
type: String,
optional: true,
max: STORAGE_LIMITS.name,
},
condition: {
type: 'fieldToCompute',
optional: true,
parseLevel: 'compile',
},
// Prevent the property from showing up in the log
silent: {
type: Boolean,
optional: true,
},
});
let ComputedOnlyBranchSchema = createPropertySchema({
condition: {
type: 'computedOnlyField',
optional: true,
parseLevel: 'compile',
},
});
const ComputedBranchSchema = new SimpleSchema()
.extend(BranchSchema)
.extend(ComputedOnlyBranchSchema);
export { BranchSchema, ComputedBranchSchema, ComputedOnlyBranchSchema }