72 lines
1.6 KiB
JavaScript
72 lines
1.6 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';
|
|
|
|
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,
|
|
},
|
|
});
|
|
|
|
let ComputedOnlyItemSchema = createPropertySchema({
|
|
description: {
|
|
type: 'computedOnlyInlineCalculationField',
|
|
optional: true,
|
|
},
|
|
});
|
|
|
|
const ComputedItemSchema = new SimpleSchema()
|
|
.extend(ItemSchema)
|
|
.extend(ComputedOnlyItemSchema);
|
|
|
|
export { ItemSchema, ComputedItemSchema, ComputedOnlyItemSchema };
|