From 98a5f07ef87e19ac954a252e7ba60f7f1bd8c6c9 Mon Sep 17 00:00:00 2001 From: James David Clarke Date: Fri, 29 Dec 2023 04:00:53 +0000 Subject: [PATCH] Added support for cherry blossoms MC 1.20+ --- tools/Conversion_Table.csv | 17 +++++++++++++++++ tools/Texture_Converter.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/tools/Conversion_Table.csv b/tools/Conversion_Table.csv index 58f4f79cd..cb314f363 100644 --- a/tools/Conversion_Table.csv +++ b/tools/Conversion_Table.csv @@ -970,3 +970,20 @@ Source path,Source file,Target path,Target file,xs,ys,xl,yl,xt,yt,Blacklisted? /assets/minecraft/textures/entity/bed,purple.png,/textures,mcl_beds_bed_purple.png,,,,,,, /assets/minecraft/textures/entity/bed,white.png,/textures,mcl_beds_bed_white.png,,,,,,, /assets/minecraft/textures/entity/bed,yellow.png,/textures,mcl_beds_bed_yellow.png,,,,,,, +/assets/minecraft/textures/block,cherry_log.png,/textures,mcl_cherry_blossom_log.png,,,,,,, +/assets/minecraft/textures/block,cherry_door_top.png,/textures,mcl_cherry_blossom_door_top.png,,,,,,, +/assets/minecraft/textures/block,cherry_leaves.png,/textures,mcl_cherry_blossom_leaves.png,,,,,,, +/assets/minecraft/textures/block,cherry_door_bottom.png,/textures,mcl_cherry_blossom_door_bottom.png,,,,,,, +/assets/minecraft/textures/block,cherry_sapling.png,/textures,mcl_cherry_blossom_sapling.png,,,,,,, +/assets/minecraft/textures/block,cherry_planks.png,/textures,mcl_cherry_blossom_planks.png,,,,,,, +/assets/minecraft/textures/block,cherry_trapdoor.png,/textures,mcl_cherry_blossom_trapdoor.png,,,,,,, +/assets/minecraft/textures/block,cherry_log_top.png,/textures,mcl_cherry_blossom_log_top.png,,,,,,, +/assets/minecraft/textures/block,stripped_cherry_log_top.png,/textures,mcl_cherry_blossom_log_top_stripped.png,,,,,,, +/assets/minecraft/textures/block,stripped_cherry_log.png,/textures,mcl_cherry_blossom_log_stripped.png,,,,,,, +/assets/minecraft/textures/item,cherry_sign.png,/textures,mcl_cherry_blossom_sign_inv.png,,,,,,, +/assets/minecraft/textures/item,cherry_chest_boat.png,/textures,mcl_boats_cherry_chest_boat.png,,,,,,, +/assets/minecraft/textures/item,cherry_door.png,/textures,mcl_cherry_blossom_door_inv.png,,,,,,, +/assets/minecraft/textures/item,cherry_boat.png,/textures,mcl_boats_cherry_boat.png,,,,,,, +/assets/minecraft/textures/entity/signs,cherry.png,/textures,mcl_cherry_blossom_sign.png,,,,,,, +/assets/minecraft/textures/entity/boat,cherry.png,/textures,mcl_boats_texture_cherry_boat.png,,,,,,, +/assets/minecraft/textures/entity/chest_boat,cherry.png,/textures,mcl_boats_cherry_chest_boat.png,,,,,,, diff --git a/tools/Texture_Converter.py b/tools/Texture_Converter.py index 6a96dbdd7..f03d6b7fd 100755 --- a/tools/Texture_Converter.py +++ b/tools/Texture_Converter.py @@ -67,7 +67,7 @@ for opt, arg in opts: This will convert textures from Minecraft resource packs to a Minetest texture pack. -Supported Minecraft version: 1.19 (Java Edition) +Supported Minecraft version: 1.20 (Java Edition) Syntax:""") print(syntax_help)