minecraft-data 3.78.0 → 3.80.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.
- package/data.js +78 -2
- package/doc/history.md +8 -0
- package/index.d.ts +3 -0
- package/minecraft-data/README.md +2 -2
- package/minecraft-data/data/bedrock/1.21.20/proto.yml +2 -2
- package/minecraft-data/data/bedrock/1.21.20/protocol.json +2 -2
- package/minecraft-data/data/bedrock/1.21.20/types.yml +1 -1
- package/minecraft-data/data/bedrock/1.21.30/proto.yml +2 -2
- package/minecraft-data/data/bedrock/1.21.30/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.21.42/proto.yml +4337 -0
- package/minecraft-data/data/bedrock/1.21.42/protocol.json +3 -3
- package/minecraft-data/data/bedrock/1.21.42/types.yml +2422 -0
- package/minecraft-data/data/bedrock/1.21.50/protocol.json +13034 -0
- package/minecraft-data/data/bedrock/1.21.50/version.json +6 -0
- package/minecraft-data/data/bedrock/common/protocolVersions.json +6 -0
- package/minecraft-data/data/bedrock/common/versions.json +2 -1
- package/minecraft-data/data/bedrock/latest/proto.yml +79 -3
- package/minecraft-data/data/bedrock/latest/types.yml +20 -3
- package/minecraft-data/data/dataPaths.json +79 -3
- package/minecraft-data/data/pc/1.20.5/proto.yml +5 -34
- package/minecraft-data/data/pc/1.20.5/protocol.json +26 -129
- package/minecraft-data/data/pc/1.21/version.json +6 -0
- package/minecraft-data/data/pc/1.21.1/attributes.json +219 -0
- package/minecraft-data/data/pc/1.21.1/proto.yml +3534 -0
- package/minecraft-data/data/pc/1.21.1/protocol.json +55 -51
- package/minecraft-data/data/pc/1.21.3/attributes.json +226 -0
- package/minecraft-data/data/pc/1.21.3/biomes.json +652 -0
- package/minecraft-data/data/pc/1.21.3/blockCollisionShapes.json +137701 -0
- package/minecraft-data/data/pc/1.21.3/blocks.json +40773 -0
- package/minecraft-data/data/pc/1.21.3/entities.json +4158 -0
- package/minecraft-data/data/pc/1.21.3/foods.json +402 -0
- package/minecraft-data/data/pc/1.21.3/items.json +9038 -0
- package/minecraft-data/data/pc/1.21.3/language.json +6974 -0
- package/minecraft-data/data/pc/1.21.3/materials.json +134 -0
- package/minecraft-data/data/pc/1.21.3/particles.json +446 -0
- package/minecraft-data/data/pc/1.21.3/protocol.json +9518 -0
- package/minecraft-data/data/pc/1.21.3/recipes.json +29693 -0
- package/minecraft-data/data/pc/1.21.3/sounds.json +6546 -0
- package/minecraft-data/data/pc/1.21.3/tints.json +465 -0
- package/minecraft-data/data/pc/1.21.3/version.json +6 -0
- package/minecraft-data/data/pc/common/features.json +5 -0
- package/minecraft-data/data/pc/common/protocolVersions.json +80 -0
- package/minecraft-data/data/pc/common/versions.json +3 -2
- package/minecraft-data/data/pc/latest/proto.yml +444 -603
- package/minecraft-data/doc/history.md +19 -0
- package/minecraft-data/tools/js/extractPcEntityMetadata.js +32 -10
- package/minecraft-data/tools/js/extractSlotComponents.js +23 -0
- package/package.json +1 -1
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"name": "armor",
|
|
4
|
+
"resource": "minecraft:generic.armor",
|
|
5
|
+
"min": 0.0,
|
|
6
|
+
"max": 30.0,
|
|
7
|
+
"default": 0.0
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"name": "armorToughness",
|
|
11
|
+
"resource": "minecraft:generic.armor_toughness",
|
|
12
|
+
"min": 0.0,
|
|
13
|
+
"max": 20.0,
|
|
14
|
+
"default": 0.0
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"name": "attackDamage",
|
|
18
|
+
"resource": "minecraft:generic.attack_damage",
|
|
19
|
+
"min": 0.0,
|
|
20
|
+
"max": 2048.0,
|
|
21
|
+
"default": 2.0
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "attackKnockback",
|
|
25
|
+
"resource": "minecraft:generic.attack_knockback",
|
|
26
|
+
"min": 0.0,
|
|
27
|
+
"max": 5.0,
|
|
28
|
+
"default": 0.0
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "attackSpeed",
|
|
32
|
+
"resource": "minecraft:generic.attack_speed",
|
|
33
|
+
"min": 0.0,
|
|
34
|
+
"max": 1024.0,
|
|
35
|
+
"default": 4.0
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "playerBlockBreakSpeed",
|
|
39
|
+
"resource": "minecraft:player.block_break_speed",
|
|
40
|
+
"min": 0.0,
|
|
41
|
+
"max": 1024.0,
|
|
42
|
+
"default": 1.0
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "playerBlockInteractionRange",
|
|
46
|
+
"resource": "minecraft:player.block_interaction_range",
|
|
47
|
+
"min": 0.0,
|
|
48
|
+
"max": 64.0,
|
|
49
|
+
"default": 4.5
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"name": "burningTime",
|
|
53
|
+
"resource": "minecraft:generic.burning_time",
|
|
54
|
+
"min": 0.0,
|
|
55
|
+
"max": 1024.0,
|
|
56
|
+
"default": 1.0
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "explosionKnockbackResistance",
|
|
60
|
+
"resource": "minecraft:generic.explosion_knockback_resistance",
|
|
61
|
+
"min": 0.0,
|
|
62
|
+
"max": 1.0,
|
|
63
|
+
"default": 0.0
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "playerEntityInteractionRange",
|
|
67
|
+
"resource": "minecraft:player.entity_interaction_range",
|
|
68
|
+
"min": 0.0,
|
|
69
|
+
"max": 64.0,
|
|
70
|
+
"default": 3.0
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "fallDamageMultiplier",
|
|
74
|
+
"resource": "minecraft:generic.fall_damage_multiplier",
|
|
75
|
+
"min": 0.0,
|
|
76
|
+
"max": 100.0,
|
|
77
|
+
"default": 1.0
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "flyingSpeed",
|
|
81
|
+
"resource": "minecraft:generic.flying_speed",
|
|
82
|
+
"min": 0.0,
|
|
83
|
+
"max": 1024.0,
|
|
84
|
+
"default": 0.4
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "followRange",
|
|
88
|
+
"resource": "minecraft:generic.follow_range",
|
|
89
|
+
"min": 0.0,
|
|
90
|
+
"max": 2048.0,
|
|
91
|
+
"default": 32.0
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "gravity",
|
|
95
|
+
"resource": "minecraft:generic.gravity",
|
|
96
|
+
"min": -1.0,
|
|
97
|
+
"max": 1.0,
|
|
98
|
+
"default": 0.08
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "jumpStrength",
|
|
102
|
+
"resource": "minecraft:generic.jump_strength",
|
|
103
|
+
"min": 0.0,
|
|
104
|
+
"max": 32.0,
|
|
105
|
+
"default": 0.41999998688697815
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "knockbackResistance",
|
|
109
|
+
"resource": "minecraft:generic.knockback_resistance",
|
|
110
|
+
"min": 0.0,
|
|
111
|
+
"max": 1.0,
|
|
112
|
+
"default": 0.0
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "luck",
|
|
116
|
+
"resource": "minecraft:generic.luck",
|
|
117
|
+
"min": -1024.0,
|
|
118
|
+
"max": 1024.0,
|
|
119
|
+
"default": 0.0
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"name": "maxAbsorption",
|
|
123
|
+
"resource": "minecraft:generic.max_absorption",
|
|
124
|
+
"min": 0.0,
|
|
125
|
+
"max": 2048.0,
|
|
126
|
+
"default": 0.0
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"name": "maxHealth",
|
|
130
|
+
"resource": "minecraft:generic.max_health",
|
|
131
|
+
"min": 1.0,
|
|
132
|
+
"max": 1024.0,
|
|
133
|
+
"default": 20.0
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"name": "playerMiningEfficiency",
|
|
137
|
+
"resource": "minecraft:player.mining_efficiency",
|
|
138
|
+
"min": 0.0,
|
|
139
|
+
"max": 1024.0,
|
|
140
|
+
"default": 0.0
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"name": "movementEfficiency",
|
|
144
|
+
"resource": "minecraft:generic.movement_efficiency",
|
|
145
|
+
"min": 0.0,
|
|
146
|
+
"max": 1.0,
|
|
147
|
+
"default": 0.0
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"name": "movementSpeed",
|
|
151
|
+
"resource": "minecraft:generic.movement_speed",
|
|
152
|
+
"min": 0.0,
|
|
153
|
+
"max": 1024.0,
|
|
154
|
+
"default": 0.7
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"name": "oxygenBonus",
|
|
158
|
+
"resource": "minecraft:generic.oxygen_bonus",
|
|
159
|
+
"min": 0.0,
|
|
160
|
+
"max": 1024.0,
|
|
161
|
+
"default": 0.0
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"name": "safeFallDistance",
|
|
165
|
+
"resource": "minecraft:generic.safe_fall_distance",
|
|
166
|
+
"min": -1024.0,
|
|
167
|
+
"max": 1024.0,
|
|
168
|
+
"default": 3.0
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"name": "scale",
|
|
172
|
+
"resource": "minecraft:generic.scale",
|
|
173
|
+
"min": 0.0625,
|
|
174
|
+
"max": 16.0,
|
|
175
|
+
"default": 1.0
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"name": "playerSneakingSpeed",
|
|
179
|
+
"resource": "minecraft:player.sneaking_speed",
|
|
180
|
+
"min": 0.0,
|
|
181
|
+
"max": 1.0,
|
|
182
|
+
"default": 0.3
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"name": "zombieSpawnReinforcements",
|
|
186
|
+
"resource": "minecraft:zombie.spawn_reinforcements",
|
|
187
|
+
"min": 0.0,
|
|
188
|
+
"max": 1.0,
|
|
189
|
+
"default": 0.0
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"name": "stepHeight",
|
|
193
|
+
"resource": "minecraft:generic.step_height",
|
|
194
|
+
"min": 0.0,
|
|
195
|
+
"max": 10.0,
|
|
196
|
+
"default": 0.6
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"name": "playerSubmergedMiningSpeed",
|
|
200
|
+
"resource": "minecraft:player.submerged_mining_speed",
|
|
201
|
+
"min": 0.0,
|
|
202
|
+
"max": 20.0,
|
|
203
|
+
"default": 0.2
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"name": "playerSweepingDamageRatio",
|
|
207
|
+
"resource": "minecraft:player.sweeping_damage_ratio",
|
|
208
|
+
"min": 0.0,
|
|
209
|
+
"max": 1.0,
|
|
210
|
+
"default": 0.0
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"name": "waterMovementEfficiency",
|
|
214
|
+
"resource": "minecraft:generic.water_movement_efficiency",
|
|
215
|
+
"min": 0.0,
|
|
216
|
+
"max": 1.0,
|
|
217
|
+
"default": 0.0
|
|
218
|
+
}
|
|
219
|
+
]
|