minecraft-data 3.4.0 → 3.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/.github/workflows/npm-publish.yml +1 -1
  2. package/data.js +46 -1
  3. package/doc/history.md +9 -0
  4. package/index.d.ts +21 -1
  5. package/minecraft-data/README.md +2 -2
  6. package/minecraft-data/data/bedrock/1.19.1/proto.yml +3575 -0
  7. package/minecraft-data/data/bedrock/1.19.1/types.yml +1887 -0
  8. package/minecraft-data/data/bedrock/1.19.10/protocol.json +10458 -0
  9. package/minecraft-data/data/bedrock/1.19.10/version.json +6 -0
  10. package/minecraft-data/data/bedrock/common/protocolVersions.json +6 -0
  11. package/minecraft-data/data/bedrock/common/versions.json +2 -1
  12. package/minecraft-data/data/bedrock/latest/proto.yml +127 -21
  13. package/minecraft-data/data/bedrock/latest/types.yml +71 -3
  14. package/minecraft-data/data/dataPaths.json +46 -1
  15. package/minecraft-data/data/pc/1.18/blockLoot.json +3783 -1868
  16. package/minecraft-data/data/pc/1.18/entityLoot.json +23 -2
  17. package/minecraft-data/data/pc/1.18/language.json +436 -93
  18. package/minecraft-data/data/pc/1.19/biomes.json +695 -0
  19. package/minecraft-data/data/pc/1.19/blockCollisionShapes.json +120584 -0
  20. package/minecraft-data/data/pc/1.19/blockLoot.json +12419 -0
  21. package/minecraft-data/data/pc/1.19/blocks.json +34097 -0
  22. package/minecraft-data/data/pc/1.19/effects.json +200 -0
  23. package/minecraft-data/data/pc/1.19/enchantments.json +875 -0
  24. package/minecraft-data/data/pc/1.19/entities.json +1182 -0
  25. package/minecraft-data/data/pc/1.19/entityLoot.json +1218 -0
  26. package/minecraft-data/data/pc/1.19/foods.json +402 -0
  27. package/minecraft-data/data/pc/1.19/instruments.json +66 -0
  28. package/minecraft-data/data/pc/1.19/items.json +7613 -0
  29. package/minecraft-data/data/pc/1.19/language.json +5338 -0
  30. package/minecraft-data/data/pc/1.19/materials.json +154 -0
  31. package/minecraft-data/data/pc/1.19/particles.json +374 -0
  32. package/minecraft-data/data/pc/1.19/tints.json +429 -0
  33. package/minecraft-data/data/pc/1.19/version.json +5 -0
  34. package/minecraft-data/data/pc/common/protocolVersions.json +49 -0
  35. package/minecraft-data/data/pc/common/versions.json +2 -1
  36. package/minecraft-data/doc/history.md +28 -18
  37. package/minecraft-data/schemas/biomes_schema.json +0 -1
  38. package/package.json +3 -3
@@ -0,0 +1,200 @@
1
+ [
2
+ {
3
+ "id": 1,
4
+ "name": "Speed",
5
+ "displayName": "Speed",
6
+ "type": "good"
7
+ },
8
+ {
9
+ "id": 2,
10
+ "name": "Slowness",
11
+ "displayName": "Slowness",
12
+ "type": "bad"
13
+ },
14
+ {
15
+ "id": 3,
16
+ "name": "Haste",
17
+ "displayName": "Haste",
18
+ "type": "good"
19
+ },
20
+ {
21
+ "id": 4,
22
+ "name": "MiningFatigue",
23
+ "displayName": "Mining Fatigue",
24
+ "type": "bad"
25
+ },
26
+ {
27
+ "id": 5,
28
+ "name": "Strength",
29
+ "displayName": "Strength",
30
+ "type": "good"
31
+ },
32
+ {
33
+ "id": 6,
34
+ "name": "InstantHealth",
35
+ "displayName": "Instant Health",
36
+ "type": "good"
37
+ },
38
+ {
39
+ "id": 7,
40
+ "name": "InstantDamage",
41
+ "displayName": "Instant Damage",
42
+ "type": "bad"
43
+ },
44
+ {
45
+ "id": 8,
46
+ "name": "JumpBoost",
47
+ "displayName": "Jump Boost",
48
+ "type": "good"
49
+ },
50
+ {
51
+ "id": 9,
52
+ "name": "Nausea",
53
+ "displayName": "Nausea",
54
+ "type": "bad"
55
+ },
56
+ {
57
+ "id": 10,
58
+ "name": "Regeneration",
59
+ "displayName": "Regeneration",
60
+ "type": "good"
61
+ },
62
+ {
63
+ "id": 11,
64
+ "name": "Resistance",
65
+ "displayName": "Resistance",
66
+ "type": "good"
67
+ },
68
+ {
69
+ "id": 12,
70
+ "name": "FireResistance",
71
+ "displayName": "Fire Resistance",
72
+ "type": "good"
73
+ },
74
+ {
75
+ "id": 13,
76
+ "name": "WaterBreathing",
77
+ "displayName": "Water Breathing",
78
+ "type": "good"
79
+ },
80
+ {
81
+ "id": 14,
82
+ "name": "Invisibility",
83
+ "displayName": "Invisibility",
84
+ "type": "good"
85
+ },
86
+ {
87
+ "id": 15,
88
+ "name": "Blindness",
89
+ "displayName": "Blindness",
90
+ "type": "bad"
91
+ },
92
+ {
93
+ "id": 16,
94
+ "name": "NightVision",
95
+ "displayName": "Night Vision",
96
+ "type": "good"
97
+ },
98
+ {
99
+ "id": 17,
100
+ "name": "Hunger",
101
+ "displayName": "Hunger",
102
+ "type": "bad"
103
+ },
104
+ {
105
+ "id": 18,
106
+ "name": "Weakness",
107
+ "displayName": "Weakness",
108
+ "type": "bad"
109
+ },
110
+ {
111
+ "id": 19,
112
+ "name": "Poison",
113
+ "displayName": "Poison",
114
+ "type": "bad"
115
+ },
116
+ {
117
+ "id": 20,
118
+ "name": "Wither",
119
+ "displayName": "Wither",
120
+ "type": "bad"
121
+ },
122
+ {
123
+ "id": 21,
124
+ "name": "HealthBoost",
125
+ "displayName": "Health Boost",
126
+ "type": "good"
127
+ },
128
+ {
129
+ "id": 22,
130
+ "name": "Absorption",
131
+ "displayName": "Absorption",
132
+ "type": "good"
133
+ },
134
+ {
135
+ "id": 23,
136
+ "name": "Saturation",
137
+ "displayName": "Saturation",
138
+ "type": "good"
139
+ },
140
+ {
141
+ "id": 24,
142
+ "name": "Glowing",
143
+ "displayName": "Glowing",
144
+ "type": "bad"
145
+ },
146
+ {
147
+ "id": 25,
148
+ "name": "Levitation",
149
+ "displayName": "Levitation",
150
+ "type": "bad"
151
+ },
152
+ {
153
+ "id": 26,
154
+ "name": "Luck",
155
+ "displayName": "Luck",
156
+ "type": "good"
157
+ },
158
+ {
159
+ "id": 27,
160
+ "name": "BadLuck",
161
+ "displayName": "Bad Luck",
162
+ "type": "bad"
163
+ },
164
+ {
165
+ "id": 28,
166
+ "name": "SlowFalling",
167
+ "displayName": "Slow Falling",
168
+ "type": "good"
169
+ },
170
+ {
171
+ "id": 29,
172
+ "name": "ConduitPower",
173
+ "displayName": "Conduit Power",
174
+ "type": "good"
175
+ },
176
+ {
177
+ "id": 30,
178
+ "name": "DolphinsGrace",
179
+ "displayName": "Dolphin's Grace",
180
+ "type": "good"
181
+ },
182
+ {
183
+ "id": 31,
184
+ "name": "BadOmen",
185
+ "displayName": "Bad Omen",
186
+ "type": "bad"
187
+ },
188
+ {
189
+ "id": 32,
190
+ "name": "HeroOfTheVillage",
191
+ "displayName": "Hero of the Village",
192
+ "type": "good"
193
+ },
194
+ {
195
+ "id": 33,
196
+ "name": "Darkness",
197
+ "displayName": "Darkness",
198
+ "type": "bad"
199
+ }
200
+ ]