minecraft-data 3.102.3 → 3.103.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 (36) hide show
  1. package/data.js +54 -0
  2. package/doc/history.md +4 -0
  3. package/index.d.ts +6 -0
  4. package/minecraft-data/README.md +1 -1
  5. package/minecraft-data/data/dataPaths.json +55 -1
  6. package/minecraft-data/data/pc/1.21.6/proto.yml +4 -1
  7. package/minecraft-data/data/pc/1.21.6/protocol.json +17 -1
  8. package/minecraft-data/data/pc/1.21.8/proto.yml +3497 -0
  9. package/minecraft-data/data/pc/1.21.8/protocol.json +19 -6
  10. package/minecraft-data/data/pc/1.21.9/attributes.json +247 -0
  11. package/minecraft-data/data/pc/1.21.9/biomes.json +652 -0
  12. package/minecraft-data/data/pc/1.21.9/blockCollisionShapes.json +146215 -0
  13. package/minecraft-data/data/pc/1.21.9/blocks.json +44684 -0
  14. package/minecraft-data/data/pc/1.21.9/effects.json +236 -0
  15. package/minecraft-data/data/pc/1.21.9/enchantments.json +959 -0
  16. package/minecraft-data/data/pc/1.21.9/entities.json +4238 -0
  17. package/minecraft-data/data/pc/1.21.9/foods.json +402 -0
  18. package/minecraft-data/data/pc/1.21.9/instruments.json +94 -0
  19. package/minecraft-data/data/pc/1.21.9/items.json +9813 -0
  20. package/minecraft-data/data/pc/1.21.9/language.json +7585 -0
  21. package/minecraft-data/data/pc/1.21.9/loginPacket.json +16537 -0
  22. package/minecraft-data/data/pc/1.21.9/materials.json +233 -0
  23. package/minecraft-data/data/pc/1.21.9/particles.json +462 -0
  24. package/minecraft-data/data/pc/1.21.9/proto.yml +3758 -0
  25. package/minecraft-data/data/pc/1.21.9/protocol.json +11406 -0
  26. package/minecraft-data/data/pc/1.21.9/recipes.json +31415 -0
  27. package/minecraft-data/data/pc/1.21.9/sounds.json +7086 -0
  28. package/minecraft-data/data/pc/1.21.9/tints.json +465 -0
  29. package/minecraft-data/data/pc/1.21.9/version.json +6 -0
  30. package/minecraft-data/data/pc/common/features.json +10 -0
  31. package/minecraft-data/data/pc/common/protocolVersions.json +24 -0
  32. package/minecraft-data/data/pc/common/versions.json +4 -2
  33. package/minecraft-data/data/pc/latest/proto.yml +328 -50
  34. package/minecraft-data/doc/history.md +6 -0
  35. package/minecraft-data/tools/js/test/audit_datapaths.js +5 -3
  36. package/package.json +1 -1
@@ -3423,10 +3423,7 @@
3423
3423
  },
3424
3424
  {
3425
3425
  "name": "value",
3426
- "type": [
3427
- "option",
3428
- "ByteArray"
3429
- ]
3426
+ "type": "ByteArray"
3430
3427
  }
3431
3428
  ]
3432
3429
  ],
@@ -8471,7 +8468,23 @@
8471
8468
  "name": "color",
8472
8469
  "type": [
8473
8470
  "option",
8474
- "i32"
8471
+ [
8472
+ "container",
8473
+ [
8474
+ {
8475
+ "name": "red",
8476
+ "type": "u8"
8477
+ },
8478
+ {
8479
+ "name": "green",
8480
+ "type": "u8"
8481
+ },
8482
+ {
8483
+ "name": "blue",
8484
+ "type": "u8"
8485
+ }
8486
+ ]
8487
+ ]
8475
8488
  ]
8476
8489
  }
8477
8490
  ]
@@ -9036,7 +9049,7 @@
9036
9049
  },
9037
9050
  {
9038
9051
  "name": "checksum",
9039
- "type": "u8"
9052
+ "type": "i8"
9040
9053
  }
9041
9054
  ]
9042
9055
  ],
@@ -0,0 +1,247 @@
1
+ [
2
+ {
3
+ "name": "armor",
4
+ "resource": "minecraft:armor",
5
+ "min": 0.0,
6
+ "max": 30.0,
7
+ "default": 0.0
8
+ },
9
+ {
10
+ "name": "armorToughness",
11
+ "resource": "minecraft:armor_toughness",
12
+ "min": 0.0,
13
+ "max": 20.0,
14
+ "default": 0.0
15
+ },
16
+ {
17
+ "name": "attackDamage",
18
+ "resource": "minecraft:attack_damage",
19
+ "min": 0.0,
20
+ "max": 2048.0,
21
+ "default": 2.0
22
+ },
23
+ {
24
+ "name": "attackKnockback",
25
+ "resource": "minecraft:attack_knockback",
26
+ "min": 0.0,
27
+ "max": 5.0,
28
+ "default": 0.0
29
+ },
30
+ {
31
+ "name": "attackSpeed",
32
+ "resource": "minecraft:attack_speed",
33
+ "min": 0.0,
34
+ "max": 1024.0,
35
+ "default": 4.0
36
+ },
37
+ {
38
+ "name": "blockBreakSpeed",
39
+ "resource": "minecraft:block_break_speed",
40
+ "min": 0.0,
41
+ "max": 1024.0,
42
+ "default": 1.0
43
+ },
44
+ {
45
+ "name": "blockInteractionRange",
46
+ "resource": "minecraft:block_interaction_range",
47
+ "min": 0.0,
48
+ "max": 64.0,
49
+ "default": 4.5
50
+ },
51
+ {
52
+ "name": "burningTime",
53
+ "resource": "minecraft:burning_time",
54
+ "min": 0.0,
55
+ "max": 1024.0,
56
+ "default": 1.0
57
+ },
58
+ {
59
+ "name": "cameraDistance",
60
+ "resource": "minecraft:camera_distance",
61
+ "min": 0.0,
62
+ "max": 32.0,
63
+ "default": 4.0
64
+ },
65
+ {
66
+ "name": "explosionKnockbackResistance",
67
+ "resource": "minecraft:explosion_knockback_resistance",
68
+ "min": 0.0,
69
+ "max": 1.0,
70
+ "default": 0.0
71
+ },
72
+ {
73
+ "name": "entityInteractionRange",
74
+ "resource": "minecraft:entity_interaction_range",
75
+ "min": 0.0,
76
+ "max": 64.0,
77
+ "default": 3.0
78
+ },
79
+ {
80
+ "name": "fallDamageMultiplier",
81
+ "resource": "minecraft:fall_damage_multiplier",
82
+ "min": 0.0,
83
+ "max": 100.0,
84
+ "default": 1.0
85
+ },
86
+ {
87
+ "name": "flyingSpeed",
88
+ "resource": "minecraft:flying_speed",
89
+ "min": 0.0,
90
+ "max": 1024.0,
91
+ "default": 0.4
92
+ },
93
+ {
94
+ "name": "followRange",
95
+ "resource": "minecraft:follow_range",
96
+ "min": 0.0,
97
+ "max": 2048.0,
98
+ "default": 32.0
99
+ },
100
+ {
101
+ "name": "gravity",
102
+ "resource": "minecraft:gravity",
103
+ "min": -1.0,
104
+ "max": 1.0,
105
+ "default": 0.08
106
+ },
107
+ {
108
+ "name": "jumpStrength",
109
+ "resource": "minecraft:jump_strength",
110
+ "min": 0.0,
111
+ "max": 32.0,
112
+ "default": 0.41999998688697815
113
+ },
114
+ {
115
+ "name": "knockbackResistance",
116
+ "resource": "minecraft:knockback_resistance",
117
+ "min": 0.0,
118
+ "max": 1.0,
119
+ "default": 0.0
120
+ },
121
+ {
122
+ "name": "luck",
123
+ "resource": "minecraft:luck",
124
+ "min": -1024.0,
125
+ "max": 1024.0,
126
+ "default": 0.0
127
+ },
128
+ {
129
+ "name": "maxAbsorption",
130
+ "resource": "minecraft:max_absorption",
131
+ "min": 0.0,
132
+ "max": 2048.0,
133
+ "default": 0.0
134
+ },
135
+ {
136
+ "name": "maxHealth",
137
+ "resource": "minecraft:max_health",
138
+ "min": 1.0,
139
+ "max": 1024.0,
140
+ "default": 20.0
141
+ },
142
+ {
143
+ "name": "miningEfficiency",
144
+ "resource": "minecraft:mining_efficiency",
145
+ "min": 0.0,
146
+ "max": 1024.0,
147
+ "default": 0.0
148
+ },
149
+ {
150
+ "name": "movementEfficiency",
151
+ "resource": "minecraft:movement_efficiency",
152
+ "min": 0.0,
153
+ "max": 1.0,
154
+ "default": 0.0
155
+ },
156
+ {
157
+ "name": "movementSpeed",
158
+ "resource": "minecraft:movement_speed",
159
+ "min": 0.0,
160
+ "max": 1024.0,
161
+ "default": 0.7
162
+ },
163
+ {
164
+ "name": "oxygenBonus",
165
+ "resource": "minecraft:oxygen_bonus",
166
+ "min": 0.0,
167
+ "max": 1024.0,
168
+ "default": 0.0
169
+ },
170
+ {
171
+ "name": "safeFallDistance",
172
+ "resource": "minecraft:safe_fall_distance",
173
+ "min": -1024.0,
174
+ "max": 1024.0,
175
+ "default": 3.0
176
+ },
177
+ {
178
+ "name": "scale",
179
+ "resource": "minecraft:scale",
180
+ "min": 0.0625,
181
+ "max": 16.0,
182
+ "default": 1.0
183
+ },
184
+ {
185
+ "name": "sneakingSpeed",
186
+ "resource": "minecraft:sneaking_speed",
187
+ "min": 0.0,
188
+ "max": 1.0,
189
+ "default": 0.3
190
+ },
191
+ {
192
+ "name": "spawnReinforcements",
193
+ "resource": "minecraft:spawn_reinforcements",
194
+ "min": 0.0,
195
+ "max": 1.0,
196
+ "default": 0.0
197
+ },
198
+ {
199
+ "name": "stepHeight",
200
+ "resource": "minecraft:step_height",
201
+ "min": 0.0,
202
+ "max": 10.0,
203
+ "default": 0.6
204
+ },
205
+ {
206
+ "name": "submergedMiningSpeed",
207
+ "resource": "minecraft:submerged_mining_speed",
208
+ "min": 0.0,
209
+ "max": 20.0,
210
+ "default": 0.2
211
+ },
212
+ {
213
+ "name": "sweepingDamageRatio",
214
+ "resource": "minecraft:sweeping_damage_ratio",
215
+ "min": 0.0,
216
+ "max": 1.0,
217
+ "default": 0.0
218
+ },
219
+ {
220
+ "name": "temptRange",
221
+ "resource": "minecraft:tempt_range",
222
+ "min": 0.0,
223
+ "max": 2048.0,
224
+ "default": 10.0
225
+ },
226
+ {
227
+ "name": "waterMovementEfficiency",
228
+ "resource": "minecraft:water_movement_efficiency",
229
+ "min": 0.0,
230
+ "max": 1.0,
231
+ "default": 0.0
232
+ },
233
+ {
234
+ "name": "waypointTransmitRange",
235
+ "resource": "minecraft:waypoint_transmit_range",
236
+ "min": 0.0,
237
+ "max": 6.0E7,
238
+ "default": 0.0
239
+ },
240
+ {
241
+ "name": "waypointReceiveRange",
242
+ "resource": "minecraft:waypoint_receive_range",
243
+ "min": 0.0,
244
+ "max": 6.0E7,
245
+ "default": 0.0
246
+ }
247
+ ]