1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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."
}
}
}
}
}
|