115 lines
2.5 KiB
TypeScript
115 lines
2.5 KiB
TypeScript
import SimpleSchema from 'simpl-schema';
|
|
import STORAGE_LIMITS from '/imports/constants/STORAGE_LIMITS';
|
|
import createPropertySchema from '/imports/api/properties/subSchemas/createPropertySchema';
|
|
import { CreatureProperty } from '/imports/api/creature/creatureProperties/CreatureProperties';
|
|
|
|
export interface Item extends CreatureProperty {
|
|
type: 'item'
|
|
name?: string
|
|
plural?: string
|
|
quantity: number
|
|
}
|
|
|
|
const ItemSchema = createPropertySchema({
|
|
name: {
|
|
type: String,
|
|
optional: true,
|
|
max: STORAGE_LIMITS.name,
|
|
},
|
|
// Plural name of the item, if there is more than one
|
|
plural: {
|
|
type: String,
|
|
optional: true,
|
|
max: STORAGE_LIMITS.name,
|
|
},
|
|
description: {
|
|
type: 'inlineCalculationFieldToCompute',
|
|
optional: true,
|
|
},
|
|
// Number currently held
|
|
quantity: {
|
|
type: SimpleSchema.Integer,
|
|
min: 0,
|
|
defaultValue: 1
|
|
},
|
|
// Weight per item in the stack
|
|
weight: {
|
|
type: Number,
|
|
min: 0,
|
|
optional: true,
|
|
},
|
|
// Value per item in the stack, in gold pieces
|
|
value: {
|
|
type: Number,
|
|
min: 0,
|
|
optional: true,
|
|
},
|
|
// If this item is equipped, it requires attunement
|
|
requiresAttunement: {
|
|
type: Boolean,
|
|
optional: true,
|
|
},
|
|
attuned: {
|
|
type: Boolean,
|
|
optional: true,
|
|
},
|
|
// Show increment/decrement buttons in item lists
|
|
showIncrement: {
|
|
type: Boolean,
|
|
optional: true,
|
|
},
|
|
// Unequipped items shouldn't affect creature stats
|
|
equipped: {
|
|
type: Boolean,
|
|
defaultValue: false,
|
|
},
|
|
// Prevent the property from showing up in the log
|
|
silent: {
|
|
type: Boolean,
|
|
optional: true,
|
|
},
|
|
// Triggers that fire when this property is used as ammo
|
|
'ammoTriggerIds': {
|
|
type: Object,
|
|
optional: true,
|
|
removeBeforeCompute: true,
|
|
},
|
|
'ammoTriggerIds.before': {
|
|
type: Array,
|
|
optional: true,
|
|
},
|
|
'ammoTriggerIds.before.$': {
|
|
type: String,
|
|
regEx: SimpleSchema.RegEx.Id,
|
|
},
|
|
'ammoTriggerIds.after': {
|
|
type: Array,
|
|
optional: true,
|
|
},
|
|
'ammoTriggerIds.after.$': {
|
|
type: String,
|
|
regEx: SimpleSchema.RegEx.Id,
|
|
},
|
|
'ammoTriggerIds.afterChildren': {
|
|
type: Array,
|
|
optional: true,
|
|
},
|
|
'ammoTriggerIds.afterChildren.$': {
|
|
type: String,
|
|
regEx: SimpleSchema.RegEx.Id,
|
|
},
|
|
});
|
|
|
|
const ComputedOnlyItemSchema = createPropertySchema({
|
|
description: {
|
|
type: 'computedOnlyInlineCalculationField',
|
|
optional: true,
|
|
},
|
|
});
|
|
|
|
const ComputedItemSchema = new SimpleSchema({})
|
|
.extend(ItemSchema)
|
|
.extend(ComputedOnlyItemSchema);
|
|
|
|
export { ItemSchema, ComputedItemSchema, ComputedOnlyItemSchema };
|