minecraft-data 3.90.0 → 3.91.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 CHANGED
@@ -1558,6 +1558,33 @@ module.exports =
1558
1558
  get version () { return require("./minecraft-data/data/pc/1.21.4/version.json") },
1559
1559
  get windows () { return require("./minecraft-data/data/pc/1.16.1/windows.json") },
1560
1560
  proto: __dirname + '/minecraft-data/data/pc/latest/proto.yml'
1561
+ },
1562
+ '1.21.5': {
1563
+ get attributes () { return require("./minecraft-data/data/pc/1.21.5/attributes.json") },
1564
+ get blockCollisionShapes () { return require("./minecraft-data/data/pc/1.21.5/blockCollisionShapes.json") },
1565
+ get blocks () { return require("./minecraft-data/data/pc/1.21.5/blocks.json") },
1566
+ get blockLoot () { return require("./minecraft-data/data/pc/1.20/blockLoot.json") },
1567
+ get biomes () { return require("./minecraft-data/data/pc/1.21.5/biomes.json") },
1568
+ get commands () { return require("./minecraft-data/data/pc/1.20.3/commands.json") },
1569
+ get effects () { return require("./minecraft-data/data/pc/1.21.5/effects.json") },
1570
+ get enchantments () { return require("./minecraft-data/data/pc/1.21.5/enchantments.json") },
1571
+ get entities () { return require("./minecraft-data/data/pc/1.21.5/entities.json") },
1572
+ get entityLoot () { return require("./minecraft-data/data/pc/1.20/entityLoot.json") },
1573
+ get foods () { return require("./minecraft-data/data/pc/1.21.5/foods.json") },
1574
+ get instruments () { return require("./minecraft-data/data/pc/1.20.5/instruments.json") },
1575
+ get items () { return require("./minecraft-data/data/pc/1.21.5/items.json") },
1576
+ get language () { return require("./minecraft-data/data/pc/1.21.5/language.json") },
1577
+ get loginPacket () { return require("./minecraft-data/data/pc/1.21.3/loginPacket.json") },
1578
+ get mapIcons () { return require("./minecraft-data/data/pc/1.20.2/mapIcons.json") },
1579
+ get materials () { return require("./minecraft-data/data/pc/1.21.5/materials.json") },
1580
+ get particles () { return require("./minecraft-data/data/pc/1.21.5/particles.json") },
1581
+ get protocol () { return require("./minecraft-data/data/pc/1.21.4/protocol.json") },
1582
+ get recipes () { return require("./minecraft-data/data/pc/1.21.5/recipes.json") },
1583
+ get sounds () { return require("./minecraft-data/data/pc/1.21.5/sounds.json") },
1584
+ get tints () { return require("./minecraft-data/data/pc/1.21.5/tints.json") },
1585
+ get version () { return require("./minecraft-data/data/pc/1.21.5/version.json") },
1586
+ get windows () { return require("./minecraft-data/data/pc/1.16.1/windows.json") },
1587
+ proto: __dirname + '/minecraft-data/data/pc/latest/proto.yml'
1561
1588
  }
1562
1589
  },
1563
1590
  'bedrock': {
package/doc/history.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # History
2
2
 
3
+ ## 3.91.0
4
+
5
+ * update `minecraft-data`
6
+
3
7
  ## 3.90.0
4
8
 
5
9
  * update `minecraft-data`
@@ -1557,6 +1557,33 @@
1557
1557
  "version": "pc/1.21.4",
1558
1558
  "windows": "pc/1.16.1",
1559
1559
  "proto": "pc/latest"
1560
+ },
1561
+ "1.21.5": {
1562
+ "attributes": "pc/1.21.5",
1563
+ "blockCollisionShapes": "pc/1.21.5",
1564
+ "blocks": "pc/1.21.5",
1565
+ "blockLoot": "pc/1.20",
1566
+ "biomes": "pc/1.21.5",
1567
+ "commands": "pc/1.20.3",
1568
+ "effects": "pc/1.21.5",
1569
+ "enchantments": "pc/1.21.5",
1570
+ "entities": "pc/1.21.5",
1571
+ "entityLoot": "pc/1.20",
1572
+ "foods": "pc/1.21.5",
1573
+ "instruments": "pc/1.20.5",
1574
+ "items": "pc/1.21.5",
1575
+ "language": "pc/1.21.5",
1576
+ "loginPacket": "pc/1.21.3",
1577
+ "mapIcons": "pc/1.20.2",
1578
+ "materials": "pc/1.21.5",
1579
+ "particles": "pc/1.21.5",
1580
+ "protocol": "pc/1.21.4",
1581
+ "recipes": "pc/1.21.5",
1582
+ "sounds": "pc/1.21.5",
1583
+ "tints": "pc/1.21.5",
1584
+ "version": "pc/1.21.5",
1585
+ "windows": "pc/1.16.1",
1586
+ "proto": "pc/latest"
1560
1587
  }
1561
1588
  },
1562
1589
  "bedrock": {
@@ -0,0 +1,226 @@
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": "explosionKnockbackResistance",
60
+ "resource": "minecraft:explosion_knockback_resistance",
61
+ "min": 0.0,
62
+ "max": 1.0,
63
+ "default": 0.0
64
+ },
65
+ {
66
+ "name": "entityInteractionRange",
67
+ "resource": "minecraft:entity_interaction_range",
68
+ "min": 0.0,
69
+ "max": 64.0,
70
+ "default": 3.0
71
+ },
72
+ {
73
+ "name": "fallDamageMultiplier",
74
+ "resource": "minecraft:fall_damage_multiplier",
75
+ "min": 0.0,
76
+ "max": 100.0,
77
+ "default": 1.0
78
+ },
79
+ {
80
+ "name": "flyingSpeed",
81
+ "resource": "minecraft:flying_speed",
82
+ "min": 0.0,
83
+ "max": 1024.0,
84
+ "default": 0.4
85
+ },
86
+ {
87
+ "name": "followRange",
88
+ "resource": "minecraft:follow_range",
89
+ "min": 0.0,
90
+ "max": 2048.0,
91
+ "default": 32.0
92
+ },
93
+ {
94
+ "name": "gravity",
95
+ "resource": "minecraft:gravity",
96
+ "min": -1.0,
97
+ "max": 1.0,
98
+ "default": 0.08
99
+ },
100
+ {
101
+ "name": "jumpStrength",
102
+ "resource": "minecraft:jump_strength",
103
+ "min": 0.0,
104
+ "max": 32.0,
105
+ "default": 0.41999998688697815
106
+ },
107
+ {
108
+ "name": "knockbackResistance",
109
+ "resource": "minecraft:knockback_resistance",
110
+ "min": 0.0,
111
+ "max": 1.0,
112
+ "default": 0.0
113
+ },
114
+ {
115
+ "name": "luck",
116
+ "resource": "minecraft:luck",
117
+ "min": -1024.0,
118
+ "max": 1024.0,
119
+ "default": 0.0
120
+ },
121
+ {
122
+ "name": "maxAbsorption",
123
+ "resource": "minecraft:max_absorption",
124
+ "min": 0.0,
125
+ "max": 2048.0,
126
+ "default": 0.0
127
+ },
128
+ {
129
+ "name": "maxHealth",
130
+ "resource": "minecraft:max_health",
131
+ "min": 1.0,
132
+ "max": 1024.0,
133
+ "default": 20.0
134
+ },
135
+ {
136
+ "name": "miningEfficiency",
137
+ "resource": "minecraft:mining_efficiency",
138
+ "min": 0.0,
139
+ "max": 1024.0,
140
+ "default": 0.0
141
+ },
142
+ {
143
+ "name": "movementEfficiency",
144
+ "resource": "minecraft:movement_efficiency",
145
+ "min": 0.0,
146
+ "max": 1.0,
147
+ "default": 0.0
148
+ },
149
+ {
150
+ "name": "movementSpeed",
151
+ "resource": "minecraft:movement_speed",
152
+ "min": 0.0,
153
+ "max": 1024.0,
154
+ "default": 0.7
155
+ },
156
+ {
157
+ "name": "oxygenBonus",
158
+ "resource": "minecraft:oxygen_bonus",
159
+ "min": 0.0,
160
+ "max": 1024.0,
161
+ "default": 0.0
162
+ },
163
+ {
164
+ "name": "safeFallDistance",
165
+ "resource": "minecraft:safe_fall_distance",
166
+ "min": -1024.0,
167
+ "max": 1024.0,
168
+ "default": 3.0
169
+ },
170
+ {
171
+ "name": "scale",
172
+ "resource": "minecraft:scale",
173
+ "min": 0.0625,
174
+ "max": 16.0,
175
+ "default": 1.0
176
+ },
177
+ {
178
+ "name": "sneakingSpeed",
179
+ "resource": "minecraft:sneaking_speed",
180
+ "min": 0.0,
181
+ "max": 1.0,
182
+ "default": 0.3
183
+ },
184
+ {
185
+ "name": "spawnReinforcements",
186
+ "resource": "minecraft:spawn_reinforcements",
187
+ "min": 0.0,
188
+ "max": 1.0,
189
+ "default": 0.0
190
+ },
191
+ {
192
+ "name": "stepHeight",
193
+ "resource": "minecraft:step_height",
194
+ "min": 0.0,
195
+ "max": 10.0,
196
+ "default": 0.6
197
+ },
198
+ {
199
+ "name": "submergedMiningSpeed",
200
+ "resource": "minecraft:submerged_mining_speed",
201
+ "min": 0.0,
202
+ "max": 20.0,
203
+ "default": 0.2
204
+ },
205
+ {
206
+ "name": "sweepingDamageRatio",
207
+ "resource": "minecraft:sweeping_damage_ratio",
208
+ "min": 0.0,
209
+ "max": 1.0,
210
+ "default": 0.0
211
+ },
212
+ {
213
+ "name": "temptRange",
214
+ "resource": "minecraft:tempt_range",
215
+ "min": 0.0,
216
+ "max": 2048.0,
217
+ "default": 10.0
218
+ },
219
+ {
220
+ "name": "waterMovementEfficiency",
221
+ "resource": "minecraft:water_movement_efficiency",
222
+ "min": 0.0,
223
+ "max": 1.0,
224
+ "default": 0.0
225
+ }
226
+ ]