@jsprismarine/bedrock-data 1.19.80 → 1.20.10-a
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/.gitmodules +3 -3
- package/.prettierrc +10 -10
- package/LICENSE +8 -8
- package/README.md +2 -2
- package/index.d.ts +1 -1
- package/index.js +27 -27
- package/package.json +10 -10
- package/renovate.json +5 -5
- package/resources/.gitattributes +30 -30
- package/resources/LICENSE +121 -121
- package/resources/README.md +40 -40
- package/resources/block_id_to_item_id_map.json +61 -18
- package/resources/block_state_meta_map.json +84 -79
- package/resources/canonical_block_states.nbt +0 -0
- package/resources/creativeitems.json +102 -142
- package/resources/item_tags.json +53 -23
- package/resources/level_sound_id_map.json +4 -0
- package/resources/r12_to_current_block_map.bin +0 -0
- package/resources/r16_to_current_item_map.json +69 -10
- package/resources/recipes/shaped_crafting.json +1459 -1432
- package/resources/recipes/shapeless_chemistry.json +110 -140
- package/resources/recipes/shapeless_crafting.json +60 -16
- package/resources/recipes/shapeless_shulker_box.json +757 -1377
- package/resources/required_item_list.json +724 -476
|
@@ -33,6 +33,24 @@
|
|
|
33
33
|
"5": "minecraft:pufferfish_bucket",
|
|
34
34
|
"8": "minecraft:water_bucket"
|
|
35
35
|
},
|
|
36
|
+
"minecraft:carpet": {
|
|
37
|
+
"0": "minecraft:white_carpet",
|
|
38
|
+
"1": "minecraft:orange_carpet",
|
|
39
|
+
"10": "minecraft:purple_carpet",
|
|
40
|
+
"11": "minecraft:blue_carpet",
|
|
41
|
+
"12": "minecraft:brown_carpet",
|
|
42
|
+
"13": "minecraft:green_carpet",
|
|
43
|
+
"14": "minecraft:red_carpet",
|
|
44
|
+
"15": "minecraft:black_carpet",
|
|
45
|
+
"2": "minecraft:magenta_carpet",
|
|
46
|
+
"3": "minecraft:light_blue_carpet",
|
|
47
|
+
"4": "minecraft:yellow_carpet",
|
|
48
|
+
"5": "minecraft:lime_carpet",
|
|
49
|
+
"6": "minecraft:pink_carpet",
|
|
50
|
+
"7": "minecraft:gray_carpet",
|
|
51
|
+
"8": "minecraft:light_gray_carpet",
|
|
52
|
+
"9": "minecraft:cyan_carpet"
|
|
53
|
+
},
|
|
36
54
|
"minecraft:chest_boat": {
|
|
37
55
|
"0": "minecraft:oak_chest_boat",
|
|
38
56
|
"1": "minecraft:spruce_chest_boat",
|
|
@@ -47,6 +65,36 @@
|
|
|
47
65
|
"minecraft:coal": {
|
|
48
66
|
"1": "minecraft:charcoal"
|
|
49
67
|
},
|
|
68
|
+
"minecraft:concrete": {
|
|
69
|
+
"0": "minecraft:white_concrete",
|
|
70
|
+
"1": "minecraft:orange_concrete",
|
|
71
|
+
"10": "minecraft:purple_concrete",
|
|
72
|
+
"11": "minecraft:blue_concrete",
|
|
73
|
+
"12": "minecraft:brown_concrete",
|
|
74
|
+
"13": "minecraft:green_concrete",
|
|
75
|
+
"14": "minecraft:red_concrete",
|
|
76
|
+
"15": "minecraft:black_concrete",
|
|
77
|
+
"2": "minecraft:magenta_concrete",
|
|
78
|
+
"3": "minecraft:light_blue_concrete",
|
|
79
|
+
"4": "minecraft:yellow_concrete",
|
|
80
|
+
"5": "minecraft:lime_concrete",
|
|
81
|
+
"6": "minecraft:pink_concrete",
|
|
82
|
+
"7": "minecraft:gray_concrete",
|
|
83
|
+
"8": "minecraft:light_gray_concrete",
|
|
84
|
+
"9": "minecraft:cyan_concrete"
|
|
85
|
+
},
|
|
86
|
+
"minecraft:coral": {
|
|
87
|
+
"0": "minecraft:tube_coral",
|
|
88
|
+
"1": "minecraft:brain_coral",
|
|
89
|
+
"10": "minecraft:dead_bubble_coral",
|
|
90
|
+
"11": "minecraft:dead_fire_coral",
|
|
91
|
+
"12": "minecraft:dead_horn_coral",
|
|
92
|
+
"2": "minecraft:bubble_coral",
|
|
93
|
+
"3": "minecraft:fire_coral",
|
|
94
|
+
"4": "minecraft:horn_coral",
|
|
95
|
+
"8": "minecraft:dead_tube_coral",
|
|
96
|
+
"9": "minecraft:dead_brain_coral"
|
|
97
|
+
},
|
|
50
98
|
"minecraft:dye": {
|
|
51
99
|
"0": "minecraft:ink_sac",
|
|
52
100
|
"1": "minecraft:red_dye",
|
|
@@ -80,20 +128,30 @@
|
|
|
80
128
|
"minecraft:log": {
|
|
81
129
|
"0": "minecraft:oak_log",
|
|
82
130
|
"1": "minecraft:spruce_log",
|
|
83
|
-
"10": "minecraft:birch_log",
|
|
84
|
-
"11": "minecraft:jungle_log",
|
|
85
131
|
"2": "minecraft:birch_log",
|
|
86
|
-
"3": "minecraft:jungle_log"
|
|
87
|
-
"5": "minecraft:spruce_log",
|
|
88
|
-
"6": "minecraft:birch_log",
|
|
89
|
-
"7": "minecraft:jungle_log",
|
|
90
|
-
"9": "minecraft:spruce_log"
|
|
132
|
+
"3": "minecraft:jungle_log"
|
|
91
133
|
},
|
|
92
134
|
"minecraft:log2": {
|
|
93
135
|
"0": "minecraft:acacia_log",
|
|
94
|
-
"1": "minecraft:dark_oak_log"
|
|
95
|
-
|
|
96
|
-
|
|
136
|
+
"1": "minecraft:dark_oak_log"
|
|
137
|
+
},
|
|
138
|
+
"minecraft:shulker_box": {
|
|
139
|
+
"0": "minecraft:white_shulker_box",
|
|
140
|
+
"1": "minecraft:orange_shulker_box",
|
|
141
|
+
"10": "minecraft:purple_shulker_box",
|
|
142
|
+
"11": "minecraft:blue_shulker_box",
|
|
143
|
+
"12": "minecraft:brown_shulker_box",
|
|
144
|
+
"13": "minecraft:green_shulker_box",
|
|
145
|
+
"14": "minecraft:red_shulker_box",
|
|
146
|
+
"15": "minecraft:black_shulker_box",
|
|
147
|
+
"2": "minecraft:magenta_shulker_box",
|
|
148
|
+
"3": "minecraft:light_blue_shulker_box",
|
|
149
|
+
"4": "minecraft:yellow_shulker_box",
|
|
150
|
+
"5": "minecraft:lime_shulker_box",
|
|
151
|
+
"6": "minecraft:pink_shulker_box",
|
|
152
|
+
"7": "minecraft:gray_shulker_box",
|
|
153
|
+
"8": "minecraft:light_gray_shulker_box",
|
|
154
|
+
"9": "minecraft:cyan_shulker_box"
|
|
97
155
|
},
|
|
98
156
|
"minecraft:spawn_egg": {
|
|
99
157
|
"10": "minecraft:chicken_spawn_egg",
|
|
@@ -260,6 +318,7 @@
|
|
|
260
318
|
"minecraft:record_mellohi": "minecraft:music_disc_mellohi",
|
|
261
319
|
"minecraft:record_otherside": "minecraft:music_disc_otherside",
|
|
262
320
|
"minecraft:record_pigstep": "minecraft:music_disc_pigstep",
|
|
321
|
+
"minecraft:record_relic": "minecraft:music_disc_relic",
|
|
263
322
|
"minecraft:record_stal": "minecraft:music_disc_stal",
|
|
264
323
|
"minecraft:record_strad": "minecraft:music_disc_strad",
|
|
265
324
|
"minecraft:record_wait": "minecraft:music_disc_wait",
|