This repository has been archived by the owner on Nov 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 111
/
itemstackformat.txt
231 lines (225 loc) · 3.19 KB
/
itemstackformat.txt
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
# =============================================
# Vanilla NBT prented as pseudo-json
# =============================================
{
id: short
Count: byte
Damage: short
tag:
{
display:
{
Name: str
Lore: [str]
color: int
}
ench:
[
{
id: int
lvl: int
}
{
id: int
lvl: int
}
...
]
StoredEnchantments:
[
{
id: int
lvl: int
}
{
id: int
lvl: int
}
...
]
title: str
author: str
pages: [str]
map_is_scaling: byte
potionColor: int
mapColor: int
SkullOwner: str
CustomPotionEffects:
[
{
Id: byte
Amplifier: byte
Duration: int
Amplifier: bool
}
...
]
Explosion:
{
Flicker: bool
Trail: bool
Colors: [int]
FadeColors: [int]
Type: byte
}
Fireworks:
{
Flight: byte
Explosions:
[
*Explosion*
...
]
}
AttributeModifiers:
[
{
UUIDMost: long
UUIDLeast: long
AttributeName: str (one of "generic.attackDamage", "generic.followRange", "generic.knockbackResistance", "generic.maxHealth", "generic.movementSpeed", "horse.jumpStrength" or "zombie.spawnReinforcements")
Name: str (may not be empty (or null?))
Amount: double
Operation: int (0, 1 or 2)
}
...
]
Inventory:
[
*ItemStack*
....
]
}
}
# =============================================
# Bukkit YAML prented as pseudo-json
# =============================================
{
type: str
damage: short
amount: int
meta:
{
meta-type: BOOK, SKULL, LEATHER_ARMOR, MAP, POTION or UNSPECIFIC
display-name: str
lore: [str]
enchants:
{
id: lvl
...
}
stored-enchants:
{
id: lvl
...
}
repair-cost: int
title: str
author: str
pages: [str]
color:
{
RED: int
BLUE: int
GREEN: int
}
scaling: byte
skull-owner: str
custom-effects:
[
{
effect: int
duration: int
amplifier: int
ambient: bool
}
...
]
firework-effect:
{
flicker: bool
trail: bool
colors:
[
*color*
...
]
fade-colors:
[
*color*
...
]
type: "BALL", "BALL_LARGE", "STAR", "BURST" or "CREEPER"
}
firework-effects:
[
*firework-effect*
...
]
power: int
}
}
# =============================================
# MassiveCraft Json prented as pseudo-json
# =============================================
{
id: int
count: int
damage: short
name: str
lore: [str]
enchants:
{
id: lvl
id: lvl
...
}
stored-enchants:
{
id: lvl
id: lvl
...
}
repaircost: int
title: str
author: str
pages: [str]
color: int
scaling: bool
skull: str
effects:
[
{
id: int
duration: int
amplifier: int
ambient: bool
}
...
]
firework-effect:
{
flicker: bool
trail: bool
colors: [int ...]
fade-colors: [int ...]
type: str/enum
}
firework-effects:
[
*firework-effect*
...
]
firework-flight: int
unbreakable: bool
flags:
[
"HIDE_UNBREAKABLE"
...
]
banner-base: byte (dye color)
banner:
[
*banner-pattern*
...
]
}