minecraft-data 2.98.1 → 2.99.3
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.18/protocol.json +4 -3
- 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": {
|
|
@@ -408,12 +408,12 @@
|
|
|
408
408
|
"bitfield",
|
|
409
409
|
[
|
|
410
410
|
{
|
|
411
|
-
"name": "
|
|
411
|
+
"name": "x",
|
|
412
412
|
"size": 4,
|
|
413
413
|
"signed": false
|
|
414
414
|
},
|
|
415
415
|
{
|
|
416
|
-
"name": "
|
|
416
|
+
"name": "z",
|
|
417
417
|
"size": 4,
|
|
418
418
|
"signed": false
|
|
419
419
|
}
|
|
@@ -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,3 +1,16 @@
|
|
|
1
|
+
## 2.99.3
|
|
2
|
+
* pc: rename x_sec and z_sec to x and z in chunk block entity
|
|
3
|
+
|
|
4
|
+
## 2.99.2
|
|
5
|
+
* pc: change nbtData field of chunkBlockEntity to optionalNbt in 1.18
|
|
6
|
+
|
|
7
|
+
## 2.99.1
|
|
8
|
+
* pc: fix simulation distance packet in 1.18
|
|
9
|
+
|
|
10
|
+
## 2.99.0
|
|
11
|
+
* pc: fix version path in 1.18 (@u9g)
|
|
12
|
+
* bedrock: update 1.18 data (@extremeheat)
|
|
13
|
+
|
|
1
14
|
## 2.98.1
|
|
2
15
|
* pc: Properly prefix particle resourceIDs in 1.17+ (@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",
|