From 3cc5cb3e9984087aefc767fa06c0ae67958f30d3 Mon Sep 17 00:00:00 2001 From: Alemiz Date: Wed, 4 Dec 2024 23:11:37 +0100 Subject: [PATCH] Add item frame UP, DOWN and frog light states --- gradle/libs.versions.toml | 2 +- src/main/resources/legacy_block_data_map.json | 49 +++++++++++++++++++ 2 files changed, 50 insertions(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index d8318e7..439ee10 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -5,6 +5,6 @@ junit = "5.9.2" jackson-databind = { group = "com.fasterxml.jackson.core", name = "jackson-databind", version = "2.14.2" } lombok = { group = "org.projectlombok", name = "lombok", version = "1.18.26" } -nbt = { group = "org.cloudburstmc", name = "nbt", version = "3.0.1.Final" } +nbt = { group = "org.cloudburstmc", name = "nbt", version = "3.0.3.Final" } junit-jupiter-api = { group = "org.junit.jupiter", name = "junit-jupiter-api", version.ref = "junit" } junit-jupiter-engine = { group = "org.junit.jupiter", name = "junit-jupiter-engine", version.ref = "junit" } diff --git a/src/main/resources/legacy_block_data_map.json b/src/main/resources/legacy_block_data_map.json index 723a369..93bec52 100644 --- a/src/main/resources/legacy_block_data_map.json +++ b/src/main/resources/legacy_block_data_map.json @@ -8838,6 +8838,14 @@ { "item_frame_map_bit": true, "weirdo_direction": 3 + }, + { + "item_frame_map_bit": false, + "facing_direction": 0 + }, + { + "item_frame_map_bit": false, + "facing_direction": 1 } ], "minecraft:colored_torch_bp": [ @@ -14911,6 +14919,14 @@ { "item_frame_map_bit": true, "facing_direction": 2 + }, + { + "item_frame_map_bit": false, + "facing_direction": 0 + }, + { + "item_frame_map_bit": false, + "facing_direction": 1 } ], "minecraft:big_dripleaf": [ @@ -18790,5 +18806,38 @@ { "huge_mushroom_bits": 15 } + ], + "minecraft:ochre_froglight": [ + { + "pillar_axis": "y" + }, + { + "pillar_axis": "x" + }, + { + "pillar_axis": "z" + } + ], + "minecraft:pearlescent_froglight": [ + { + "pillar_axis": "y" + }, + { + "pillar_axis": "x" + }, + { + "pillar_axis": "z" + } + ], + "minecraft:verdant_froglight": [ + { + "pillar_axis": "y" + }, + { + "pillar_axis": "x" + }, + { + "pillar_axis": "z" + } ] } \ No newline at end of file