aboutsummaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2024-03-12 19:18:52 +0000
committerLeonardo Bishop <me@leonardobishop.com>2024-03-12 19:18:52 +0000
commita4052ffee8bc7c6c8a69eba5120b5c6c2d951b0f (patch)
tree970921e587c0972ed4bf8a82a18bbad8dee10458 /data
parentaddf95bc7e1e694cd9ba7797c8b0847bfecaf54c (diff)
Add items
Diffstat (limited to 'data')
-rw-r--r--data/questItemDefinitions.json52
-rw-r--r--data/testData.json9
2 files changed, 61 insertions, 0 deletions
diff --git a/data/questItemDefinitions.json b/data/questItemDefinitions.json
new file mode 100644
index 0000000..1174d51
--- /dev/null
+++ b/data/questItemDefinitions.json
@@ -0,0 +1,52 @@
+{
+ "questItems": {
+ "raw": {
+ "description": "Items imported from in-game using /q a items import.",
+ "selectable": false
+ },
+ "defined": {
+ "description": "Normal items from Minecraft.",
+ "defined": true
+ },
+ "mmoitems": {
+ "description": "ItemStacks which belong to the MMOItems plugin.",
+ "configuration": {
+ "type": {
+ "type": "string",
+ "description": "The MMOItems type for this item."
+ },
+ "id": {
+ "type": "string",
+ "description": "The MMOItems ID for this item."
+ }
+ }
+ },
+ "slimefun": {
+ "description": "ItemStacks which belong to the Slimefun plugin.",
+ "configuration": {
+ "id": {
+ "type": "string",
+ "description": "The Slimefun item ID for this item."
+ }
+ }
+ },
+ "executableitems": {
+ "description": "ItemStacks which belong to the ExecutableItems plugin.",
+ "configuration": {
+ "id": {
+ "type": "string",
+ "description": "The ExecutableItems ID for this item."
+ }
+ }
+ },
+ "itemsadder": {
+ "description": "ItemStacks which belong to the ItemsAdder plugin.",
+ "configuration": {
+ "id": {
+ "type": "string",
+ "description": "The ItemsAdder ID for this item."
+ }
+ }
+ }
+ }
+} \ No newline at end of file
diff --git a/data/testData.json b/data/testData.json
index c01d6c3..268a780 100644
--- a/data/testData.json
+++ b/data/testData.json
@@ -380,5 +380,14 @@
},
"permission-required": true
}
+ },
+ "items": {
+ "coolsword": {
+ "type": "defined",
+ "configuration": {
+ "type": "DIAMOND_SWORD",
+ "name": "Super cool sword"
+ }
+ }
}
} \ No newline at end of file