Files
DiceCloud/app/imports/api/creature/properties/Spells.js
2019-03-13 14:03:03 +02:00

127 lines
2.6 KiB
JavaScript

import ColorSchema from '/imports/api/creature/subSchemas/ColorSchema.js';
import SimpleSchema from 'simpl-schema';
import schema from '/imports/api/schema.js';
import PropertySchema from '/imports/api/creature/subSchemas/PropertySchema.js';
import ChildSchema from '/imports/api/parenting/ChildSchema.js';
// Mixins
import { creaturePermissionMixin } from '/imports/api/creature/creaturePermissions.js';
import { setDocToLastMixin } from '/imports/api/order.js';
import { setDocAncestryMixin, ensureAncestryContainsCharIdMixin } from '/imports/api/parenting/parenting.js';
import simpleSchemaMixin from '/imports/api/simpleSchemaMixin.js';
const magicSchools = [
'Abjuration',
'Conjuration',
'Divination',
'Enchantment',
'Evocation',
'Illusion',
'Necromancy',
'Transmutation',
];
let Spells = new Mongo.Collection('spells');
let SpellSchema = schema({
name: {
type: String,
optional: true,
},
prepared: {
type: String,
defaultValue: 'prepared',
allowedValues: ['prepared', 'unprepared', 'always'],
},
description: {
type: String,
optional: true,
},
castingTime: {
type: String,
optional: true,
defaultValue: 'action',
},
range: {
type: String,
optional: true,
},
duration: {
type: String,
optional: true,
defaultValue: 'Instantaneous',
},
verbal: {
type: Boolean,
defaultValue: false
},
somatic: {
type: Boolean,
defaultValue: false
},
concentration: {
type: Boolean,
defaultValue: false
},
material: {
type: String,
optional: true
},
ritual: {
type: Boolean,
defaultValue: false,
},
level: {
type: SimpleSchema.Integer,
defaultValue: 1,
},
school: {
type: String,
defaultValue: 'Abjuration',
allowedValues: magicSchools,
},
});
SpellSchema.extend(ColorSchema);
Spells.attachSchema(SpellSchema);
Spells.attachSchema(PropertySchema);
Spells.attachSchema(ChildSchema);
const insertSpell = new ValidatedMethod({
name: 'Spells.methods.insert',
mixins: [
creaturePermissionMixin,
setDocToLastMixin,
setDocAncestryMixin,
ensureAncestryContainsCharIdMixin,
simpleSchemaMixin,
],
collection: Spells,
permission: 'edit',
schema: SpellSchema,
run(spell) {
return Spells.insert(spell);
},
});
const updateSpell = new ValidatedMethod({
name: 'Spells.methods.update',
mixins: [
creaturePermissionMixin,
simpleSchemaMixin,
],
collection: Spells,
permission: 'edit',
schema: new SimpleSchema({
_id: SimpleSchema.RegEx.Id,
update: SpellSchema.omit('name'),
}),
run({_id, update}) {
return Spells.update(_id, {$set: update});
},
});
export default Spells;
export { SpellSchema, insertSpell, updateSpell };