minecraft-data 2.98.0 → 2.99.2
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 +21 -1
- package/doc/history.md +12 -0
- package/index.d.ts +2 -3
- package/minecraft-data/data/bedrock/1.18.0/biomes.json +96 -0
- package/minecraft-data/data/bedrock/1.18.0/items.json +0 -72
- package/minecraft-data/data/bedrock/1.18.0/recipes.json +803 -797
- package/minecraft-data/data/dataPaths.json +21 -1
- package/minecraft-data/data/pc/1.17/protocol.json +2 -2
- package/minecraft-data/data/pc/1.17.1/protocol.json +2 -2
- package/minecraft-data/data/pc/1.18/protocol.json +4 -3
- package/minecraft-data/data/pc/common/protocolVersions.json +14 -0
- package/minecraft-data/data/pc/common/versions.json +2 -1
- package/minecraft-data/doc/history.md +13 -0
- package/minecraft-data/schemas/recipes_schema.json +2 -3
- package/package.json +1 -1
|
@@ -988,7 +988,27 @@
|
|
|
988
988
|
"mapIcons": "pc/1.16"
|
|
989
989
|
},
|
|
990
990
|
"1.18": {
|
|
991
|
-
"
|
|
991
|
+
"blocks": "pc/1.17",
|
|
992
|
+
"blockCollisionShapes": "pc/1.17",
|
|
993
|
+
"biomes": "pc/1.17",
|
|
994
|
+
"effects": "pc/1.17",
|
|
995
|
+
"items": "pc/1.17",
|
|
996
|
+
"enchantments": "pc/1.17",
|
|
997
|
+
"recipes": "pc/1.17",
|
|
998
|
+
"instruments": "pc/1.16.1",
|
|
999
|
+
"materials": "pc/1.17",
|
|
1000
|
+
"language": "pc/1.17",
|
|
1001
|
+
"entities": "pc/1.17",
|
|
1002
|
+
"protocol": "pc/1.18",
|
|
1003
|
+
"windows": "pc/1.16.1",
|
|
1004
|
+
"version": "pc/1.18",
|
|
1005
|
+
"foods": "pc/1.17",
|
|
1006
|
+
"particles": "pc/1.17",
|
|
1007
|
+
"blockLoot": "pc/1.17",
|
|
1008
|
+
"entityLoot": "pc/1.17",
|
|
1009
|
+
"loginPacket": "pc/1.17",
|
|
1010
|
+
"tints": "pc/1.17",
|
|
1011
|
+
"mapIcons": "pc/1.16"
|
|
992
1012
|
}
|
|
993
1013
|
},
|
|
994
1014
|
"bedrock": {
|
|
@@ -202,8 +202,8 @@
|
|
|
202
202
|
{
|
|
203
203
|
"compareTo": "positionType",
|
|
204
204
|
"fields": {
|
|
205
|
-
"block": "position",
|
|
206
|
-
"entity": "varint"
|
|
205
|
+
"minecraft:block": "position",
|
|
206
|
+
"minecraft:entity": "varint"
|
|
207
207
|
}
|
|
208
208
|
}
|
|
209
209
|
]
|
|
@@ -430,7 +430,7 @@
|
|
|
430
430
|
},
|
|
431
431
|
{
|
|
432
432
|
"name": "nbtData",
|
|
433
|
-
"type": "
|
|
433
|
+
"type": "optionalNbt"
|
|
434
434
|
}
|
|
435
435
|
]
|
|
436
436
|
]
|
|
@@ -4587,6 +4587,7 @@
|
|
|
4587
4587
|
"set_passengers": "packet_set_passengers",
|
|
4588
4588
|
"teams": "packet_teams",
|
|
4589
4589
|
"scoreboard_score": "packet_scoreboard_score",
|
|
4590
|
+
"simulation_distance": "packet_simulation_distance",
|
|
4590
4591
|
"spawn_position": "packet_spawn_position",
|
|
4591
4592
|
"update_time": "packet_update_time",
|
|
4592
4593
|
"entity_sound_effect": "packet_entity_sound_effect",
|
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"minecraftVersion": "1.18.1",
|
|
4
|
+
"version": 757,
|
|
5
|
+
"dataVersion": 2865,
|
|
6
|
+
"usesNetty": true,
|
|
7
|
+
"majorVersion": "1.18"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"minecraftVersion": "1.18.1-rc3",
|
|
11
|
+
"version": 1073741888,
|
|
12
|
+
"dataVersion": 2864,
|
|
13
|
+
"usesNetty": true,
|
|
14
|
+
"majorVersion": "1.18"
|
|
15
|
+
},
|
|
2
16
|
{
|
|
3
17
|
"minecraftVersion": "1.18.1-rc2",
|
|
4
18
|
"version": 1073741887,
|
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## 2.99.2
|
|
2
|
+
* pc: change nbtData field of chunkBlockEntity to optionalNbt in 1.18
|
|
3
|
+
|
|
4
|
+
## 2.99.1
|
|
5
|
+
* pc: fix simulation distance packet in 1.18
|
|
6
|
+
|
|
7
|
+
## 2.99.0
|
|
8
|
+
* pc: fix version path in 1.18 (@u9g)
|
|
9
|
+
* bedrock: update 1.18 data (@extremeheat)
|
|
10
|
+
|
|
11
|
+
## 2.98.1
|
|
12
|
+
* pc: Properly prefix particle resourceIDs in 1.17+ (@nickelpro)
|
|
13
|
+
|
|
1
14
|
## 2.98.0
|
|
2
15
|
* pc: Add 1.18 protocol data (@nickelpro)
|
|
3
16
|
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
},
|
|
100
100
|
{
|
|
101
101
|
"title":"new recipe",
|
|
102
|
-
"description":"
|
|
102
|
+
"description":"Bedrock recipe schema",
|
|
103
103
|
"type": "object",
|
|
104
104
|
"properties": {
|
|
105
105
|
"name": {
|
|
@@ -114,10 +114,9 @@
|
|
|
114
114
|
"enum": [
|
|
115
115
|
"multi",
|
|
116
116
|
"cartography_table",
|
|
117
|
-
"shapeless",
|
|
118
117
|
"stonecutter",
|
|
119
118
|
"crafting_table",
|
|
120
|
-
"
|
|
119
|
+
"crafting_table_shapeless",
|
|
121
120
|
"shulker_box",
|
|
122
121
|
"furnace",
|
|
123
122
|
"blast_furnace",
|