diff --git a/rpg-docs/Model/Inventory/Items.js b/rpg-docs/Model/Inventory/Items.js index b266968a..ae4c88ef 100644 --- a/rpg-docs/Model/Inventory/Items.js +++ b/rpg-docs/Model/Inventory/Items.js @@ -10,6 +10,9 @@ Schemas.Item = new SimpleSchema({ value: {type: Number, min: 0, defaultValue: 0, decimal: true}, enabled: {type: Boolean, defaultValue: false}, requiresAttunement: {type: Boolean, defaultValue: false}, + category: {type: String, optional: true, allowedValues: [ + "adventuringGear", "armor", "weapons", "tools", + ],}, "settings.showIncrement": {type: Boolean, defaultValue: false}, color: { type: String, diff --git a/rpg-docs/client/views/character/inventory/itemDialog/itemDialog.html b/rpg-docs/client/views/character/inventory/itemDialog/itemDialog.html index b9aef095..31f2a52a 100644 --- a/rpg-docs/client/views/character/inventory/itemDialog/itemDialog.html +++ b/rpg-docs/client/views/character/inventory/itemDialog/itemDialog.html @@ -1,6 +1,6 @@