29 lines
654 B
JavaScript
29 lines
654 B
JavaScript
import SimpleSchema from 'simpl-schema';
|
|
import { ActionSchema } from '/imports/api/properties/Actions.js';
|
|
|
|
// Attacks are special instances of actions
|
|
let AttackSchema = new SimpleSchema()
|
|
.extend(ActionSchema)
|
|
.extend({
|
|
// What gets added to the d20 roll
|
|
rollBonus: {
|
|
type: String,
|
|
defaultValue: 'strength.modifier + proficiencyBonus',
|
|
optional: true,
|
|
},
|
|
// Set better defaults for the action
|
|
actionType: {
|
|
type: String,
|
|
defaultValue: 'attack',
|
|
},
|
|
tags: {
|
|
type: Array,
|
|
defaultValue: ['attack'],
|
|
},
|
|
'tags.$': {
|
|
type: String,
|
|
},
|
|
});
|
|
|
|
export { AttackSchema };
|