diff --git a/generator.py b/generator.py new file mode 100644 index 0000000..9b61846 --- /dev/null +++ b/generator.py @@ -0,0 +1,205 @@ +from beet import JsonFile +import os + +# Run this in the main project directory to generate files in ./src! +# To add new mods/planks, just use the dictionary below: +# the key is the mod name, and the value is a list of plank names. + +compat_generated = { + "betterend": [ + "dragon_tree", + "end_lotus", + "helix_tree", + "jellyshroom", + "lacugrove", + "lucernia", + "mossy_glowshroom", + "pythadendron", + "tenanea", + "umbrella_tree" + ], + "betternether": [ + "anchor_tree", + "mushroom_fir", + "nether_mushroom", + "nether_reed", + "nether_sakura", + "rubeus", + "stalagnate", + "wart_planks", + "willow_planks" + ], + "biomesoplenty": [ + "dead", + "empyreal", + "fir", + "hellbark", + "jacaranda", + "magic", + "mahogany", + "maple", + "palm", + "pine", + "redwood", + "umbran", + "willow" + ], + "cinderscapes": [ + "scorched", + "umbral" + ], + "terrestria": [ + "cypress", + "hemlock", + "japanese_maple", + "rainbow_eucalyptus", + "redwood", + "rubber", + "sakura", + "willow", + "yucca" + ], + "traverse": [ + "fir" + ], + "wilderwild": [ + "baobab", + "cypress", + "palm" + ], +} + + +def save(file: JsonFile, path): + if not os.path.exists(os.path.dirname(path)): + os.makedirs(os.path.dirname(path)) + file.dump(origin="./", path=path) + + +def add_treated_plank(m, n): + p = f"{n}_planks" + t = f"treated_{p}" + + # recipe + file = { + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": f"{m}:{p}" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": f"rounded:compat/{m}/{t}" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + f"{m}" + ] + } + ] + } + save(JsonFile(file), f"src/main/resources/data/rounded/recipe/compat/{m}/{t}") + + # recipe advancement + file = { + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": f"rounded:compat/{m}/{t}" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + f"rounded:compat/{m}/{t}" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + f"{m}" + ] + } + ] + } + save(JsonFile(file), f"src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/{m}/{t}") + + # item tag + file = JsonFile(source_path="src/main/resources/data/rounded/tags/item/treated_planks.json").data + print(file) + file["values"].append( + { + "required": False, + "id": f"rounded:compat/{m}/{t}" + } + ) + JsonFile(file).dump(origin="./", path="src/main/resources/data/rounded/tags/item/treated_planks.json") + + # blockstate + file = { + "variants": { + "": { + "model": f"rounded:block/compat/{m}/{t}" + } + } + } + save(JsonFile(file), f"src/client/resources/assets/rounded/blockstates/compat/{m}/{t}") + + # block model + file = { + "parent": "minecraft:block/cube_all", + "textures": { + "all": f"rounded:block/compat/{m}/{t}" + } + } + save(JsonFile(file), f"src/client/resources/assets/rounded/models/block/compat/{m}/{t}") + + # item model + file = { + "parent": f"rounded:block/compat/{m}/{t}" + } + save(JsonFile(file), f"src/client/resources/assets/rounded/models/item/compat/{m}/{t}") + + # language key + # TODO: add automatic ripping for other languages, if they are present + # both in rounded and in the source mod + file = JsonFile(source_path="src/client/resources/assets/rounded/lang/en_us.json").data + file[f"block.rounded.compat.{m}.{t}"] = f"{t.replace("_", " ").title()}" + JsonFile(file).dump(origin="./", path="src/client/resources/assets/rounded/lang/en_us.json") + + +for i in compat_generated.keys(): + for j in compat_generated[i]: + add_treated_plank(i, j) diff --git a/gradle.properties b/gradle.properties index 5b7dbf1..d86c4d9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,7 +10,7 @@ yarn_mappings=1.21+build.2 loader_version=0.15.11 # Mod Properties -mod_version=1.0.3 +mod_version=1.0.4 maven_group=com.lumiscosity.rounded archives_base_name=rounded diff --git a/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_end_lotus_planks b/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_end_lotus_planks new file mode 100644 index 0000000..8b7969c --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_end_lotus_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/betterend/treated_end_lotus_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_helix_tree_planks b/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_helix_tree_planks new file mode 100644 index 0000000..68c4eba --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_helix_tree_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/betterend/treated_helix_tree_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_jellyshroom_planks b/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_jellyshroom_planks new file mode 100644 index 0000000..119bb8b --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_jellyshroom_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/betterend/treated_jellyshroom_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_lacugrove_planks b/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_lacugrove_planks new file mode 100644 index 0000000..852ca57 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_lacugrove_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/betterend/treated_lacugrove_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_lucernia_planks b/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_lucernia_planks new file mode 100644 index 0000000..5151746 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_lucernia_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/betterend/treated_lucernia_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_mossy_glowshroom_planks b/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_mossy_glowshroom_planks new file mode 100644 index 0000000..e915f9b --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_mossy_glowshroom_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/betterend/treated_mossy_glowshroom_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_pythadendron_planks b/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_pythadendron_planks new file mode 100644 index 0000000..d428291 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_pythadendron_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/betterend/treated_pythadendron_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_tenanea_planks b/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_tenanea_planks new file mode 100644 index 0000000..58bec1c --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_tenanea_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/betterend/treated_tenanea_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_umbrella_tree_planks b/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_umbrella_tree_planks new file mode 100644 index 0000000..e7a8c2f --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/betterend/treated_umbrella_tree_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/betterend/treated_umbrella_tree_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_anchor_tree_planks b/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_anchor_tree_planks new file mode 100644 index 0000000..8548730 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_anchor_tree_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/betternether/treated_anchor_tree_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_mushroom_fir_planks b/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_mushroom_fir_planks new file mode 100644 index 0000000..62fb550 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_mushroom_fir_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/betternether/treated_mushroom_fir_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_nether_mushroom_planks b/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_nether_mushroom_planks new file mode 100644 index 0000000..8c159a6 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_nether_mushroom_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/betternether/treated_nether_mushroom_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_nether_reed_planks b/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_nether_reed_planks new file mode 100644 index 0000000..1766fb2 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_nether_reed_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/betternether/treated_nether_reed_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_nether_sakura_planks b/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_nether_sakura_planks new file mode 100644 index 0000000..7552363 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_nether_sakura_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/betternether/treated_nether_sakura_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_rubeus_planks b/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_rubeus_planks new file mode 100644 index 0000000..4f7fd02 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_rubeus_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/betternether/treated_rubeus_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_stalagnate_planks b/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_stalagnate_planks new file mode 100644 index 0000000..3cc3983 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_stalagnate_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/betternether/treated_stalagnate_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_wart_planks_planks b/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_wart_planks_planks new file mode 100644 index 0000000..e3fccfc --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_wart_planks_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/betternether/treated_wart_planks_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_willow_planks_planks b/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_willow_planks_planks new file mode 100644 index 0000000..bda42c8 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/betternether/treated_willow_planks_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/betternether/treated_willow_planks_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_dead_planks b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_dead_planks new file mode 100644 index 0000000..22e98c9 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_dead_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/biomesoplenty/treated_dead_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_empyreal_planks b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_empyreal_planks new file mode 100644 index 0000000..10b140e --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_empyreal_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/biomesoplenty/treated_empyreal_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_fir_planks b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_fir_planks new file mode 100644 index 0000000..38d6540 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_fir_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/biomesoplenty/treated_fir_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_hellbark_planks b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_hellbark_planks new file mode 100644 index 0000000..8815c4c --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_hellbark_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/biomesoplenty/treated_hellbark_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_jacaranda_planks b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_jacaranda_planks new file mode 100644 index 0000000..9f71cf9 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_jacaranda_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/biomesoplenty/treated_jacaranda_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_magic_planks b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_magic_planks new file mode 100644 index 0000000..85c96b5 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_magic_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/biomesoplenty/treated_magic_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_mahogany_planks b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_mahogany_planks new file mode 100644 index 0000000..30bd6a2 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_mahogany_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/biomesoplenty/treated_mahogany_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_maple_planks b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_maple_planks new file mode 100644 index 0000000..0e15111 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_maple_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/biomesoplenty/treated_maple_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_palm_planks b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_palm_planks new file mode 100644 index 0000000..44ed466 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_palm_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/biomesoplenty/treated_palm_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_pine_planks b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_pine_planks new file mode 100644 index 0000000..eea8065 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_pine_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/biomesoplenty/treated_pine_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_redwood_planks b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_redwood_planks new file mode 100644 index 0000000..6802014 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_redwood_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/biomesoplenty/treated_redwood_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_umbran_planks b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_umbran_planks new file mode 100644 index 0000000..a9d9ada --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_umbran_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/biomesoplenty/treated_umbran_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_willow_planks b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_willow_planks new file mode 100644 index 0000000..f924de6 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/biomesoplenty/treated_willow_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/biomesoplenty/treated_willow_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/cinderscapes/treated_scorched_planks b/src/client/resources/assets/rounded/blockstates/compat/cinderscapes/treated_scorched_planks new file mode 100644 index 0000000..ee56e90 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/cinderscapes/treated_scorched_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/cinderscapes/treated_scorched_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/cinderscapes/treated_umbral_planks b/src/client/resources/assets/rounded/blockstates/compat/cinderscapes/treated_umbral_planks new file mode 100644 index 0000000..6cf2507 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/cinderscapes/treated_umbral_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/cinderscapes/treated_umbral_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_cypress_planks b/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_cypress_planks new file mode 100644 index 0000000..4bb1376 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_cypress_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/terrestria/treated_cypress_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_hemlock_planks b/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_hemlock_planks new file mode 100644 index 0000000..1874c59 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_hemlock_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/terrestria/treated_hemlock_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_japanese_maple_planks b/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_japanese_maple_planks new file mode 100644 index 0000000..17176e5 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_japanese_maple_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/terrestria/treated_japanese_maple_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_rainbow_eucalyptus_planks b/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_rainbow_eucalyptus_planks new file mode 100644 index 0000000..e00cd5b --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_rainbow_eucalyptus_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/terrestria/treated_rainbow_eucalyptus_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_redwood_planks b/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_redwood_planks new file mode 100644 index 0000000..ddc22d3 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_redwood_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/terrestria/treated_redwood_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_rubber_planks b/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_rubber_planks new file mode 100644 index 0000000..87376e4 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_rubber_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/terrestria/treated_rubber_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_sakura_planks b/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_sakura_planks new file mode 100644 index 0000000..7d86dda --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_sakura_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/terrestria/treated_sakura_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_willow_planks b/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_willow_planks new file mode 100644 index 0000000..aae3fb3 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_willow_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/terrestria/treated_willow_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_yucca_planks b/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_yucca_planks new file mode 100644 index 0000000..81e3c8d --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/terrestria/treated_yucca_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/terrestria/treated_yucca_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/traverse/treated_fir_planks b/src/client/resources/assets/rounded/blockstates/compat/traverse/treated_fir_planks new file mode 100644 index 0000000..ea7a458 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/traverse/treated_fir_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/traverse/treated_fir_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/wilderwild/treated_baobab_planks b/src/client/resources/assets/rounded/blockstates/compat/wilderwild/treated_baobab_planks new file mode 100644 index 0000000..65a53e5 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/wilderwild/treated_baobab_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/wilderwild/treated_baobab_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/wilderwild/treated_cypress_planks b/src/client/resources/assets/rounded/blockstates/compat/wilderwild/treated_cypress_planks new file mode 100644 index 0000000..6b9a349 --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/wilderwild/treated_cypress_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/wilderwild/treated_cypress_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/blockstates/compat/wilderwild/treated_palm_planks b/src/client/resources/assets/rounded/blockstates/compat/wilderwild/treated_palm_planks new file mode 100644 index 0000000..0c389ed --- /dev/null +++ b/src/client/resources/assets/rounded/blockstates/compat/wilderwild/treated_palm_planks @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "rounded:block/compat/wilderwild/treated_palm_planks" + } + } +} diff --git a/src/client/resources/assets/rounded/lang/en_us.json b/src/client/resources/assets/rounded/lang/en_us.json index 2fd87e7..02a7ee6 100644 --- a/src/client/resources/assets/rounded/lang/en_us.json +++ b/src/client/resources/assets/rounded/lang/en_us.json @@ -27,5 +27,52 @@ "tag.item.c.mushrooms": "Mushrooms", "tag.item.c.mushroom_caps": "Mushroom Caps", - "block.rounded.compat.treated_hevea_brasiliensis_planks": "Treated Hevea Brasiliensis Planks" + "block.rounded.compat.treated_hevea_brasiliensis_planks": "Treated Hevea Brasiliensis Planks", + "block.rounded.compat.betterend.treated_dragon_tree_planks": "Treated Dragon Tree Planks", + "block.rounded.compat.betterend.treated_end_lotus_planks": "Treated End Lotus Planks", + "block.rounded.compat.betterend.treated_helix_tree_planks": "Treated Helix Tree Planks", + "block.rounded.compat.betterend.treated_jellyshroom_planks": "Treated Jellyshroom Planks", + "block.rounded.compat.betterend.treated_lacugrove_planks": "Treated Lacugrove Planks", + "block.rounded.compat.betterend.treated_lucernia_planks": "Treated Lucernia Planks", + "block.rounded.compat.betterend.treated_mossy_glowshroom_planks": "Treated Mossy Glowshroom Planks", + "block.rounded.compat.betterend.treated_pythadendron_planks": "Treated Pythadendron Planks", + "block.rounded.compat.betterend.treated_tenanea_planks": "Treated Tenanea Planks", + "block.rounded.compat.betterend.treated_umbrella_tree_planks": "Treated Umbrella Tree Planks", + "block.rounded.compat.betternether.treated_anchor_tree_planks": "Treated Anchor Tree Planks", + "block.rounded.compat.betternether.treated_mushroom_fir_planks": "Treated Mushroom Fir Planks", + "block.rounded.compat.betternether.treated_nether_mushroom_planks": "Treated Nether Mushroom Planks", + "block.rounded.compat.betternether.treated_nether_reed_planks": "Treated Nether Reed Planks", + "block.rounded.compat.betternether.treated_nether_sakura_planks": "Treated Nether Sakura Planks", + "block.rounded.compat.betternether.treated_rubeus_planks": "Treated Rubeus Planks", + "block.rounded.compat.betternether.treated_stalagnate_planks": "Treated Stalagnate Planks", + "block.rounded.compat.betternether.treated_wart_planks_planks": "Treated Wart Planks Planks", + "block.rounded.compat.betternether.treated_willow_planks_planks": "Treated Willow Planks Planks", + "block.rounded.compat.biomesoplenty.treated_dead_planks": "Treated Dead Planks", + "block.rounded.compat.biomesoplenty.treated_empyreal_planks": "Treated Empyreal Planks", + "block.rounded.compat.biomesoplenty.treated_fir_planks": "Treated Fir Planks", + "block.rounded.compat.biomesoplenty.treated_hellbark_planks": "Treated Hellbark Planks", + "block.rounded.compat.biomesoplenty.treated_jacaranda_planks": "Treated Jacaranda Planks", + "block.rounded.compat.biomesoplenty.treated_magic_planks": "Treated Magic Planks", + "block.rounded.compat.biomesoplenty.treated_mahogany_planks": "Treated Mahogany Planks", + "block.rounded.compat.biomesoplenty.treated_maple_planks": "Treated Maple Planks", + "block.rounded.compat.biomesoplenty.treated_palm_planks": "Treated Palm Planks", + "block.rounded.compat.biomesoplenty.treated_pine_planks": "Treated Pine Planks", + "block.rounded.compat.biomesoplenty.treated_redwood_planks": "Treated Redwood Planks", + "block.rounded.compat.biomesoplenty.treated_umbran_planks": "Treated Umbran Planks", + "block.rounded.compat.biomesoplenty.treated_willow_planks": "Treated Willow Planks", + "block.rounded.compat.cinderscapes.treated_scorched_planks": "Treated Scorched Planks", + "block.rounded.compat.cinderscapes.treated_umbral_planks": "Treated Umbral Planks", + "block.rounded.compat.terrestria.treated_cypress_planks": "Treated Cypress Planks", + "block.rounded.compat.terrestria.treated_hemlock_planks": "Treated Hemlock Planks", + "block.rounded.compat.terrestria.treated_japanese_maple_planks": "Treated Japanese Maple Planks", + "block.rounded.compat.terrestria.treated_rainbow_eucalyptus_planks": "Treated Rainbow Eucalyptus Planks", + "block.rounded.compat.terrestria.treated_redwood_planks": "Treated Redwood Planks", + "block.rounded.compat.terrestria.treated_rubber_planks": "Treated Rubber Planks", + "block.rounded.compat.terrestria.treated_sakura_planks": "Treated Sakura Planks", + "block.rounded.compat.terrestria.treated_willow_planks": "Treated Willow Planks", + "block.rounded.compat.terrestria.treated_yucca_planks": "Treated Yucca Planks", + "block.rounded.compat.traverse.treated_fir_planks": "Treated Fir Planks", + "block.rounded.compat.wilderwild.treated_baobab_planks": "Treated Baobab Planks", + "block.rounded.compat.wilderwild.treated_cypress_planks": "Treated Cypress Planks", + "block.rounded.compat.wilderwild.treated_palm_planks": "Treated Palm Planks" } diff --git a/src/client/resources/assets/rounded/models/block/compat/betterend/treated_end_lotus_planks b/src/client/resources/assets/rounded/models/block/compat/betterend/treated_end_lotus_planks new file mode 100644 index 0000000..fc1bc93 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/betterend/treated_end_lotus_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/betterend/treated_end_lotus_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/betterend/treated_helix_tree_planks b/src/client/resources/assets/rounded/models/block/compat/betterend/treated_helix_tree_planks new file mode 100644 index 0000000..3a89a45 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/betterend/treated_helix_tree_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/betterend/treated_helix_tree_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/betterend/treated_jellyshroom_planks b/src/client/resources/assets/rounded/models/block/compat/betterend/treated_jellyshroom_planks new file mode 100644 index 0000000..96d66cc --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/betterend/treated_jellyshroom_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/betterend/treated_jellyshroom_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/betterend/treated_lacugrove_planks b/src/client/resources/assets/rounded/models/block/compat/betterend/treated_lacugrove_planks new file mode 100644 index 0000000..f2fd998 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/betterend/treated_lacugrove_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/betterend/treated_lacugrove_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/betterend/treated_lucernia_planks b/src/client/resources/assets/rounded/models/block/compat/betterend/treated_lucernia_planks new file mode 100644 index 0000000..f916271 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/betterend/treated_lucernia_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/betterend/treated_lucernia_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/betterend/treated_mossy_glowshroom_planks b/src/client/resources/assets/rounded/models/block/compat/betterend/treated_mossy_glowshroom_planks new file mode 100644 index 0000000..5c8da13 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/betterend/treated_mossy_glowshroom_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/betterend/treated_mossy_glowshroom_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/betterend/treated_pythadendron_planks b/src/client/resources/assets/rounded/models/block/compat/betterend/treated_pythadendron_planks new file mode 100644 index 0000000..3e9d68e --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/betterend/treated_pythadendron_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/betterend/treated_pythadendron_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/betterend/treated_tenanea_planks b/src/client/resources/assets/rounded/models/block/compat/betterend/treated_tenanea_planks new file mode 100644 index 0000000..7bdf14f --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/betterend/treated_tenanea_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/betterend/treated_tenanea_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/betterend/treated_umbrella_tree_planks b/src/client/resources/assets/rounded/models/block/compat/betterend/treated_umbrella_tree_planks new file mode 100644 index 0000000..cf44af2 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/betterend/treated_umbrella_tree_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/betterend/treated_umbrella_tree_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/betternether/treated_anchor_tree_planks b/src/client/resources/assets/rounded/models/block/compat/betternether/treated_anchor_tree_planks new file mode 100644 index 0000000..36e4379 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/betternether/treated_anchor_tree_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/betternether/treated_anchor_tree_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/betternether/treated_mushroom_fir_planks b/src/client/resources/assets/rounded/models/block/compat/betternether/treated_mushroom_fir_planks new file mode 100644 index 0000000..e4b1ad3 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/betternether/treated_mushroom_fir_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/betternether/treated_mushroom_fir_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/betternether/treated_nether_mushroom_planks b/src/client/resources/assets/rounded/models/block/compat/betternether/treated_nether_mushroom_planks new file mode 100644 index 0000000..a08ce94 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/betternether/treated_nether_mushroom_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/betternether/treated_nether_mushroom_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/betternether/treated_nether_reed_planks b/src/client/resources/assets/rounded/models/block/compat/betternether/treated_nether_reed_planks new file mode 100644 index 0000000..41899a2 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/betternether/treated_nether_reed_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/betternether/treated_nether_reed_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/betternether/treated_nether_sakura_planks b/src/client/resources/assets/rounded/models/block/compat/betternether/treated_nether_sakura_planks new file mode 100644 index 0000000..f935c85 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/betternether/treated_nether_sakura_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/betternether/treated_nether_sakura_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/betternether/treated_rubeus_planks b/src/client/resources/assets/rounded/models/block/compat/betternether/treated_rubeus_planks new file mode 100644 index 0000000..c36194b --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/betternether/treated_rubeus_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/betternether/treated_rubeus_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/betternether/treated_stalagnate_planks b/src/client/resources/assets/rounded/models/block/compat/betternether/treated_stalagnate_planks new file mode 100644 index 0000000..3d085ed --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/betternether/treated_stalagnate_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/betternether/treated_stalagnate_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/betternether/treated_wart_planks_planks b/src/client/resources/assets/rounded/models/block/compat/betternether/treated_wart_planks_planks new file mode 100644 index 0000000..fc174a5 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/betternether/treated_wart_planks_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/betternether/treated_wart_planks_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/betternether/treated_willow_planks_planks b/src/client/resources/assets/rounded/models/block/compat/betternether/treated_willow_planks_planks new file mode 100644 index 0000000..ed3c0b3 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/betternether/treated_willow_planks_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/betternether/treated_willow_planks_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_dead_planks b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_dead_planks new file mode 100644 index 0000000..9519ff0 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_dead_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/biomesoplenty/treated_dead_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_empyreal_planks b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_empyreal_planks new file mode 100644 index 0000000..5073279 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_empyreal_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/biomesoplenty/treated_empyreal_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_fir_planks b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_fir_planks new file mode 100644 index 0000000..ca54474 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_fir_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/biomesoplenty/treated_fir_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_hellbark_planks b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_hellbark_planks new file mode 100644 index 0000000..17daf34 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_hellbark_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/biomesoplenty/treated_hellbark_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_jacaranda_planks b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_jacaranda_planks new file mode 100644 index 0000000..bc83be8 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_jacaranda_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/biomesoplenty/treated_jacaranda_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_magic_planks b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_magic_planks new file mode 100644 index 0000000..f6443fc --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_magic_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/biomesoplenty/treated_magic_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_mahogany_planks b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_mahogany_planks new file mode 100644 index 0000000..04fd617 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_mahogany_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/biomesoplenty/treated_mahogany_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_maple_planks b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_maple_planks new file mode 100644 index 0000000..56ca670 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_maple_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/biomesoplenty/treated_maple_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_palm_planks b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_palm_planks new file mode 100644 index 0000000..afc24a2 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_palm_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/biomesoplenty/treated_palm_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_pine_planks b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_pine_planks new file mode 100644 index 0000000..1bc65ed --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_pine_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/biomesoplenty/treated_pine_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_redwood_planks b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_redwood_planks new file mode 100644 index 0000000..3fb1dc9 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_redwood_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/biomesoplenty/treated_redwood_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_umbran_planks b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_umbran_planks new file mode 100644 index 0000000..17ec0d0 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_umbran_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/biomesoplenty/treated_umbran_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_willow_planks b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_willow_planks new file mode 100644 index 0000000..fead114 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/biomesoplenty/treated_willow_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/biomesoplenty/treated_willow_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/cinderscapes/treated_scorched_planks b/src/client/resources/assets/rounded/models/block/compat/cinderscapes/treated_scorched_planks new file mode 100644 index 0000000..1a1d8b7 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/cinderscapes/treated_scorched_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/cinderscapes/treated_scorched_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/cinderscapes/treated_umbral_planks b/src/client/resources/assets/rounded/models/block/compat/cinderscapes/treated_umbral_planks new file mode 100644 index 0000000..882a091 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/cinderscapes/treated_umbral_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/cinderscapes/treated_umbral_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_cypress_planks b/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_cypress_planks new file mode 100644 index 0000000..7828433 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_cypress_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/terrestria/treated_cypress_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_hemlock_planks b/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_hemlock_planks new file mode 100644 index 0000000..9b9ac70 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_hemlock_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/terrestria/treated_hemlock_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_japanese_maple_planks b/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_japanese_maple_planks new file mode 100644 index 0000000..8eadad4 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_japanese_maple_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/terrestria/treated_japanese_maple_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_rainbow_eucalyptus_planks b/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_rainbow_eucalyptus_planks new file mode 100644 index 0000000..167d0e3 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_rainbow_eucalyptus_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/terrestria/treated_rainbow_eucalyptus_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_redwood_planks b/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_redwood_planks new file mode 100644 index 0000000..90739d0 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_redwood_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/terrestria/treated_redwood_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_rubber_planks b/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_rubber_planks new file mode 100644 index 0000000..cbc5cf9 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_rubber_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/terrestria/treated_rubber_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_sakura_planks b/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_sakura_planks new file mode 100644 index 0000000..e326b1a --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_sakura_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/terrestria/treated_sakura_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_willow_planks b/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_willow_planks new file mode 100644 index 0000000..d842621 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_willow_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/terrestria/treated_willow_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_yucca_planks b/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_yucca_planks new file mode 100644 index 0000000..3864f9d --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/terrestria/treated_yucca_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/terrestria/treated_yucca_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/traverse/treated_fir_planks b/src/client/resources/assets/rounded/models/block/compat/traverse/treated_fir_planks new file mode 100644 index 0000000..9293de8 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/traverse/treated_fir_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/traverse/treated_fir_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/wilderwild/treated_baobab_planks b/src/client/resources/assets/rounded/models/block/compat/wilderwild/treated_baobab_planks new file mode 100644 index 0000000..b9c9897 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/wilderwild/treated_baobab_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/wilderwild/treated_baobab_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/wilderwild/treated_cypress_planks b/src/client/resources/assets/rounded/models/block/compat/wilderwild/treated_cypress_planks new file mode 100644 index 0000000..a46d09e --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/wilderwild/treated_cypress_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/wilderwild/treated_cypress_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/block/compat/wilderwild/treated_palm_planks b/src/client/resources/assets/rounded/models/block/compat/wilderwild/treated_palm_planks new file mode 100644 index 0000000..d731ea7 --- /dev/null +++ b/src/client/resources/assets/rounded/models/block/compat/wilderwild/treated_palm_planks @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "rounded:block/compat/wilderwild/treated_palm_planks" + } +} diff --git a/src/client/resources/assets/rounded/models/item/compat/betterend/treated_end_lotus_planks b/src/client/resources/assets/rounded/models/item/compat/betterend/treated_end_lotus_planks new file mode 100644 index 0000000..f56d523 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/betterend/treated_end_lotus_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/betterend/treated_end_lotus_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/betterend/treated_helix_tree_planks b/src/client/resources/assets/rounded/models/item/compat/betterend/treated_helix_tree_planks new file mode 100644 index 0000000..d7fe711 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/betterend/treated_helix_tree_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/betterend/treated_helix_tree_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/betterend/treated_jellyshroom_planks b/src/client/resources/assets/rounded/models/item/compat/betterend/treated_jellyshroom_planks new file mode 100644 index 0000000..655ffce --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/betterend/treated_jellyshroom_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/betterend/treated_jellyshroom_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/betterend/treated_lacugrove_planks b/src/client/resources/assets/rounded/models/item/compat/betterend/treated_lacugrove_planks new file mode 100644 index 0000000..892f847 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/betterend/treated_lacugrove_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/betterend/treated_lacugrove_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/betterend/treated_lucernia_planks b/src/client/resources/assets/rounded/models/item/compat/betterend/treated_lucernia_planks new file mode 100644 index 0000000..ffec8c3 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/betterend/treated_lucernia_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/betterend/treated_lucernia_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/betterend/treated_mossy_glowshroom_planks b/src/client/resources/assets/rounded/models/item/compat/betterend/treated_mossy_glowshroom_planks new file mode 100644 index 0000000..7d5a976 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/betterend/treated_mossy_glowshroom_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/betterend/treated_mossy_glowshroom_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/betterend/treated_pythadendron_planks b/src/client/resources/assets/rounded/models/item/compat/betterend/treated_pythadendron_planks new file mode 100644 index 0000000..4ea19d1 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/betterend/treated_pythadendron_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/betterend/treated_pythadendron_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/betterend/treated_tenanea_planks b/src/client/resources/assets/rounded/models/item/compat/betterend/treated_tenanea_planks new file mode 100644 index 0000000..eb2f804 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/betterend/treated_tenanea_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/betterend/treated_tenanea_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/betterend/treated_umbrella_tree_planks b/src/client/resources/assets/rounded/models/item/compat/betterend/treated_umbrella_tree_planks new file mode 100644 index 0000000..abd0e12 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/betterend/treated_umbrella_tree_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/betterend/treated_umbrella_tree_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/betternether/treated_anchor_tree_planks b/src/client/resources/assets/rounded/models/item/compat/betternether/treated_anchor_tree_planks new file mode 100644 index 0000000..8ee91b6 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/betternether/treated_anchor_tree_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/betternether/treated_anchor_tree_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/betternether/treated_mushroom_fir_planks b/src/client/resources/assets/rounded/models/item/compat/betternether/treated_mushroom_fir_planks new file mode 100644 index 0000000..8fcd1d0 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/betternether/treated_mushroom_fir_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/betternether/treated_mushroom_fir_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/betternether/treated_nether_mushroom_planks b/src/client/resources/assets/rounded/models/item/compat/betternether/treated_nether_mushroom_planks new file mode 100644 index 0000000..ff47ad2 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/betternether/treated_nether_mushroom_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/betternether/treated_nether_mushroom_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/betternether/treated_nether_reed_planks b/src/client/resources/assets/rounded/models/item/compat/betternether/treated_nether_reed_planks new file mode 100644 index 0000000..920d162 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/betternether/treated_nether_reed_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/betternether/treated_nether_reed_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/betternether/treated_nether_sakura_planks b/src/client/resources/assets/rounded/models/item/compat/betternether/treated_nether_sakura_planks new file mode 100644 index 0000000..31b035d --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/betternether/treated_nether_sakura_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/betternether/treated_nether_sakura_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/betternether/treated_rubeus_planks b/src/client/resources/assets/rounded/models/item/compat/betternether/treated_rubeus_planks new file mode 100644 index 0000000..c6f8725 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/betternether/treated_rubeus_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/betternether/treated_rubeus_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/betternether/treated_stalagnate_planks b/src/client/resources/assets/rounded/models/item/compat/betternether/treated_stalagnate_planks new file mode 100644 index 0000000..55a4e53 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/betternether/treated_stalagnate_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/betternether/treated_stalagnate_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/betternether/treated_wart_planks_planks b/src/client/resources/assets/rounded/models/item/compat/betternether/treated_wart_planks_planks new file mode 100644 index 0000000..d138522 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/betternether/treated_wart_planks_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/betternether/treated_wart_planks_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/betternether/treated_willow_planks_planks b/src/client/resources/assets/rounded/models/item/compat/betternether/treated_willow_planks_planks new file mode 100644 index 0000000..1f12cff --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/betternether/treated_willow_planks_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/betternether/treated_willow_planks_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_dead_planks b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_dead_planks new file mode 100644 index 0000000..6b16a8f --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_dead_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/biomesoplenty/treated_dead_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_empyreal_planks b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_empyreal_planks new file mode 100644 index 0000000..3eeb039 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_empyreal_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/biomesoplenty/treated_empyreal_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_fir_planks b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_fir_planks new file mode 100644 index 0000000..ce2e3ef --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_fir_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/biomesoplenty/treated_fir_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_hellbark_planks b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_hellbark_planks new file mode 100644 index 0000000..f340980 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_hellbark_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/biomesoplenty/treated_hellbark_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_jacaranda_planks b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_jacaranda_planks new file mode 100644 index 0000000..bc50105 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_jacaranda_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/biomesoplenty/treated_jacaranda_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_magic_planks b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_magic_planks new file mode 100644 index 0000000..7434a9e --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_magic_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/biomesoplenty/treated_magic_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_mahogany_planks b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_mahogany_planks new file mode 100644 index 0000000..1ffa5d0 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_mahogany_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/biomesoplenty/treated_mahogany_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_maple_planks b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_maple_planks new file mode 100644 index 0000000..75b367e --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_maple_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/biomesoplenty/treated_maple_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_palm_planks b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_palm_planks new file mode 100644 index 0000000..aba7582 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_palm_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/biomesoplenty/treated_palm_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_pine_planks b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_pine_planks new file mode 100644 index 0000000..3d4383d --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_pine_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/biomesoplenty/treated_pine_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_redwood_planks b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_redwood_planks new file mode 100644 index 0000000..3b2e642 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_redwood_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/biomesoplenty/treated_redwood_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_umbran_planks b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_umbran_planks new file mode 100644 index 0000000..49cee65 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_umbran_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/biomesoplenty/treated_umbran_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_willow_planks b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_willow_planks new file mode 100644 index 0000000..4700bdb --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/biomesoplenty/treated_willow_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/biomesoplenty/treated_willow_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/cinderscapes/treated_scorched_planks b/src/client/resources/assets/rounded/models/item/compat/cinderscapes/treated_scorched_planks new file mode 100644 index 0000000..a08aaf3 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/cinderscapes/treated_scorched_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/cinderscapes/treated_scorched_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/cinderscapes/treated_umbral_planks b/src/client/resources/assets/rounded/models/item/compat/cinderscapes/treated_umbral_planks new file mode 100644 index 0000000..513bd82 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/cinderscapes/treated_umbral_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/cinderscapes/treated_umbral_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_cypress_planks b/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_cypress_planks new file mode 100644 index 0000000..954d8dc --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_cypress_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/terrestria/treated_cypress_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_hemlock_planks b/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_hemlock_planks new file mode 100644 index 0000000..8f6aea3 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_hemlock_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/terrestria/treated_hemlock_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_japanese_maple_planks b/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_japanese_maple_planks new file mode 100644 index 0000000..cf76d97 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_japanese_maple_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/terrestria/treated_japanese_maple_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_rainbow_eucalyptus_planks b/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_rainbow_eucalyptus_planks new file mode 100644 index 0000000..2bde542 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_rainbow_eucalyptus_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/terrestria/treated_rainbow_eucalyptus_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_redwood_planks b/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_redwood_planks new file mode 100644 index 0000000..954aa91 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_redwood_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/terrestria/treated_redwood_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_rubber_planks b/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_rubber_planks new file mode 100644 index 0000000..69c5629 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_rubber_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/terrestria/treated_rubber_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_sakura_planks b/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_sakura_planks new file mode 100644 index 0000000..c0db0a5 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_sakura_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/terrestria/treated_sakura_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_willow_planks b/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_willow_planks new file mode 100644 index 0000000..bc00fd6 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_willow_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/terrestria/treated_willow_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_yucca_planks b/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_yucca_planks new file mode 100644 index 0000000..8a6abd5 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/terrestria/treated_yucca_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/terrestria/treated_yucca_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/traverse/treated_fir_planks b/src/client/resources/assets/rounded/models/item/compat/traverse/treated_fir_planks new file mode 100644 index 0000000..f4aa69e --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/traverse/treated_fir_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/traverse/treated_fir_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/wilderwild/treated_baobab_planks b/src/client/resources/assets/rounded/models/item/compat/wilderwild/treated_baobab_planks new file mode 100644 index 0000000..c773dd3 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/wilderwild/treated_baobab_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/wilderwild/treated_baobab_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/wilderwild/treated_cypress_planks b/src/client/resources/assets/rounded/models/item/compat/wilderwild/treated_cypress_planks new file mode 100644 index 0000000..efb6a23 --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/wilderwild/treated_cypress_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/wilderwild/treated_cypress_planks" +} diff --git a/src/client/resources/assets/rounded/models/item/compat/wilderwild/treated_palm_planks b/src/client/resources/assets/rounded/models/item/compat/wilderwild/treated_palm_planks new file mode 100644 index 0000000..0bd437d --- /dev/null +++ b/src/client/resources/assets/rounded/models/item/compat/wilderwild/treated_palm_planks @@ -0,0 +1,3 @@ +{ + "parent": "rounded:block/compat/wilderwild/treated_palm_planks" +} diff --git a/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_dragon_tree_planks.png b/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_dragon_tree_planks.png new file mode 100644 index 0000000..148bcb1 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_dragon_tree_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_end_lotus_planks.png b/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_end_lotus_planks.png new file mode 100644 index 0000000..6690e6c Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_end_lotus_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_helix_tree_planks.png b/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_helix_tree_planks.png new file mode 100644 index 0000000..93fcc31 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_helix_tree_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_jellyshroom_planks.png b/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_jellyshroom_planks.png new file mode 100644 index 0000000..1733ed6 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_jellyshroom_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_lacugrove_planks.png b/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_lacugrove_planks.png new file mode 100644 index 0000000..63b4d25 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_lacugrove_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_lucernia_planks.png b/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_lucernia_planks.png new file mode 100644 index 0000000..701f18b Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_lucernia_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_mossy_glowshroom_planks.png b/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_mossy_glowshroom_planks.png new file mode 100644 index 0000000..3a2b271 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_mossy_glowshroom_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_pythadendron_planks.png b/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_pythadendron_planks.png new file mode 100644 index 0000000..3d54466 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_pythadendron_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_tenanea_planks.png b/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_tenanea_planks.png new file mode 100644 index 0000000..ba4e2fe Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_tenanea_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_umbrella_tree_planks.png b/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_umbrella_tree_planks.png new file mode 100644 index 0000000..11b2529 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/betterend/treated_umbrella_tree_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_anchor_tree_planks.png b/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_anchor_tree_planks.png new file mode 100644 index 0000000..2508df3 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_anchor_tree_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_mushroom_fir_planks.png b/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_mushroom_fir_planks.png new file mode 100644 index 0000000..ab38178 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_mushroom_fir_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_nether_mushroom_planks.png b/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_nether_mushroom_planks.png new file mode 100644 index 0000000..fcc347b Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_nether_mushroom_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_nether_reed_planks.png b/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_nether_reed_planks.png new file mode 100644 index 0000000..2875ed9 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_nether_reed_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_nether_sakura_planks.png b/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_nether_sakura_planks.png new file mode 100644 index 0000000..de95188 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_nether_sakura_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_rubeus_planks.png b/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_rubeus_planks.png new file mode 100644 index 0000000..c1f3489 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_rubeus_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_stalagnate_planks.png b/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_stalagnate_planks.png new file mode 100644 index 0000000..6d17f80 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_stalagnate_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_wart_planks.png b/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_wart_planks.png new file mode 100644 index 0000000..a398acb Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_wart_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_willow_planks.png b/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_willow_planks.png new file mode 100644 index 0000000..a920694 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/betternether/treated_willow_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_dead_planks.png b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_dead_planks.png new file mode 100644 index 0000000..e9691ec Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_dead_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_empyreal_planks.png b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_empyreal_planks.png new file mode 100644 index 0000000..d84d619 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_empyreal_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_fir_planks.png b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_fir_planks.png new file mode 100644 index 0000000..92b32b6 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_fir_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_hellbark_planks.png b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_hellbark_planks.png new file mode 100644 index 0000000..8ec39e6 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_hellbark_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_jacaranda_planks.png b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_jacaranda_planks.png new file mode 100644 index 0000000..1b689e6 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_jacaranda_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_magic_planks.png b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_magic_planks.png new file mode 100644 index 0000000..dff909a Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_magic_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_mahogany_planks.png b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_mahogany_planks.png new file mode 100644 index 0000000..9ac55b7 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_mahogany_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_maple_planks.png b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_maple_planks.png new file mode 100644 index 0000000..6a6efa3 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_maple_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_palm_planks.png b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_palm_planks.png new file mode 100644 index 0000000..830f5a0 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_palm_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_pine_planks.png b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_pine_planks.png new file mode 100644 index 0000000..ab9deee Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_pine_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_redwood_planks.png b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_redwood_planks.png new file mode 100644 index 0000000..aa0881f Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_redwood_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_umbran_planks.png b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_umbran_planks.png new file mode 100644 index 0000000..8ba3958 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_umbran_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_willow_planks.png b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_willow_planks.png new file mode 100644 index 0000000..edeb327 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/biomesoplenty/treated_willow_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/cinderscapes/treated_scorched_planks.png b/src/client/resources/assets/rounded/textures/block/compat/cinderscapes/treated_scorched_planks.png new file mode 100644 index 0000000..710dbab Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/cinderscapes/treated_scorched_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/cinderscapes/treated_umbral_planks.png b/src/client/resources/assets/rounded/textures/block/compat/cinderscapes/treated_umbral_planks.png new file mode 100644 index 0000000..26a1602 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/cinderscapes/treated_umbral_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_cypress_planks.png b/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_cypress_planks.png new file mode 100644 index 0000000..7841094 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_cypress_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_hemlock_planks.png b/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_hemlock_planks.png new file mode 100644 index 0000000..5936e3c Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_hemlock_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_japanese_maple_planks.png b/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_japanese_maple_planks.png new file mode 100644 index 0000000..f8ccd0f Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_japanese_maple_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_rainbow_eucalyptus_planks.png b/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_rainbow_eucalyptus_planks.png new file mode 100644 index 0000000..1a90234 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_rainbow_eucalyptus_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_redwood_planks.png b/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_redwood_planks.png new file mode 100644 index 0000000..0f4f934 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_redwood_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_rubber_planks.png b/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_rubber_planks.png new file mode 100644 index 0000000..bee2ce1 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_rubber_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_sakura_planks.png b/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_sakura_planks.png new file mode 100644 index 0000000..1099e3b Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_sakura_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_willow_planks.png b/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_willow_planks.png new file mode 100644 index 0000000..5cbf7fc Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_willow_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_yucca_palm_planks.png b/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_yucca_palm_planks.png new file mode 100644 index 0000000..790692e Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/terrestria/treated_yucca_palm_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/traverse/treated_fir_planks.png b/src/client/resources/assets/rounded/textures/block/compat/traverse/treated_fir_planks.png new file mode 100644 index 0000000..336b0a7 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/traverse/treated_fir_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/wilderwild/treated_baobab_planks.png b/src/client/resources/assets/rounded/textures/block/compat/wilderwild/treated_baobab_planks.png new file mode 100644 index 0000000..778d311 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/wilderwild/treated_baobab_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/wilderwild/treated_cypress_planks.png b/src/client/resources/assets/rounded/textures/block/compat/wilderwild/treated_cypress_planks.png new file mode 100644 index 0000000..6c407d7 Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/wilderwild/treated_cypress_planks.png differ diff --git a/src/client/resources/assets/rounded/textures/block/compat/wilderwild/treated_palm_planks.png b/src/client/resources/assets/rounded/textures/block/compat/wilderwild/treated_palm_planks.png new file mode 100644 index 0000000..c1b701b Binary files /dev/null and b/src/client/resources/assets/rounded/textures/block/compat/wilderwild/treated_palm_planks.png differ diff --git a/src/main/java/com/lumiscosity/rounded/Rounded.java b/src/main/java/com/lumiscosity/rounded/Rounded.java index 5ff7302..e2aad46 100644 --- a/src/main/java/com/lumiscosity/rounded/Rounded.java +++ b/src/main/java/com/lumiscosity/rounded/Rounded.java @@ -2,6 +2,7 @@ import com.lumiscosity.rounded.blocks.RegisterBlocks; import com.lumiscosity.rounded.compat.ExtravaganzaCompat; +import com.lumiscosity.rounded.compat.WilderWildCompat; import com.lumiscosity.rounded.misc.RegisterSounds; import com.lumiscosity.rounded.misc.RegisterTrades; import net.fabricmc.api.ModInitializer; @@ -23,6 +24,9 @@ public void onInitialize() { if (FabricLoader.getInstance().isModLoaded("extravaganza")) { ExtravaganzaCompat.register(); } + if (FabricLoader.getInstance().isModLoaded("wilderwild")) { + WilderWildCompat.register(); + } LOGGER.info("Rounded init complete!"); } diff --git a/src/main/java/com/lumiscosity/rounded/compat/BetterEndCompat.java b/src/main/java/com/lumiscosity/rounded/compat/BetterEndCompat.java new file mode 100644 index 0000000..bb342a2 --- /dev/null +++ b/src/main/java/com/lumiscosity/rounded/compat/BetterEndCompat.java @@ -0,0 +1,22 @@ +package com.lumiscosity.rounded.compat; + +import net.minecraft.block.AbstractBlock; +import net.minecraft.block.Block; +import net.minecraft.block.enums.NoteBlockInstrument; +import net.minecraft.item.BlockItem; +import net.minecraft.item.Item; +import net.minecraft.sound.BlockSoundGroup; + +import static com.lumiscosity.rounded.blocks.RegisterBlocks.register_treated_plank; + +public class BetterEndCompat { + public static final Block TREATED_HEVEA_BRASILIENSIS_PLANKS = new Block( + AbstractBlock.Settings.create().strength(2.0f).sounds(BlockSoundGroup.WOOD).burnable().instrument(NoteBlockInstrument.BASS) + ); + public static final Item TREATED_HEVEA_BRASILIENSIS_PLANKS_ITEM = new BlockItem(TREATED_HEVEA_BRASILIENSIS_PLANKS, new Item.Settings()); + + public static void register() { + register_treated_plank("compat/treated_hevea_brasiliensis_planks", TREATED_HEVEA_BRASILIENSIS_PLANKS, TREATED_HEVEA_BRASILIENSIS_PLANKS_ITEM, "extravaganza", "hevea_brasiliensis"); + + } +} diff --git a/src/main/java/com/lumiscosity/rounded/compat/WilderWildCompat.java b/src/main/java/com/lumiscosity/rounded/compat/WilderWildCompat.java new file mode 100644 index 0000000..1e48896 --- /dev/null +++ b/src/main/java/com/lumiscosity/rounded/compat/WilderWildCompat.java @@ -0,0 +1,34 @@ +package com.lumiscosity.rounded.compat; + +import net.minecraft.block.AbstractBlock; +import net.minecraft.block.Block; +import net.minecraft.block.MapColor; +import net.minecraft.block.enums.NoteBlockInstrument; +import net.minecraft.item.BlockItem; +import net.minecraft.item.Item; +import net.minecraft.sound.BlockSoundGroup; + +import static com.lumiscosity.rounded.blocks.RegisterBlocks.register_treated_plank; + +public class WilderWildCompat { + public static final Block TREATED_BAOBAB_PLANKS = new Block( + AbstractBlock.Settings.create().mapColor(MapColor.ORANGE).instrument(NoteBlockInstrument.BASS).strength(2.0F, 3.0F).sounds(BlockSoundGroup.WOOD).burnable() + ); + public static final Item TREATED_BAOBAB_PLANKS_ITEM = new BlockItem(TREATED_BAOBAB_PLANKS, new Item.Settings()); + + public static final Block TREATED_CYPRESS_PLANKS = new Block( + AbstractBlock.Settings.create().mapColor(MapColor.LIGHT_GRAY).instrument(NoteBlockInstrument.BASS).strength(2.0F, 3.0F).sounds(BlockSoundGroup.WOOD).burnable() + ); + public static final Item TREATED_CYPRESS_PLANKS_ITEM = new BlockItem(TREATED_CYPRESS_PLANKS, new Item.Settings()); + + public static final Block TREATED_PALM_PLANKS = new Block( + AbstractBlock.Settings.create().mapColor(MapColor.TERRACOTTA_WHITE).instrument(NoteBlockInstrument.BASS).strength(2.0F, 3.0F).sounds(BlockSoundGroup.WOOD).burnable() + ); + public static final Item TREATED_PALM_PLANKS_ITEM = new BlockItem(TREATED_PALM_PLANKS, new Item.Settings()); + + public static void register() { + register_treated_plank("compat/wilderwild/treated_baobab_planks", TREATED_BAOBAB_PLANKS, TREATED_BAOBAB_PLANKS_ITEM, "wilderwild", "baobab"); + register_treated_plank("compat/wilderwild/treated_cypress_planks", TREATED_CYPRESS_PLANKS, TREATED_CYPRESS_PLANKS_ITEM, "wilderwild", "cypress"); + register_treated_plank("compat/wilderwild/treated_palm_planks", TREATED_PALM_PLANKS, TREATED_PALM_PLANKS_ITEM, "wilderwild", "palm"); + } +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_helix_tree_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_helix_tree_planks new file mode 100644 index 0000000..168319e --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_helix_tree_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/betterend/treated_helix_tree_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/betterend/treated_helix_tree_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betterend" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_jellyshroom_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_jellyshroom_planks new file mode 100644 index 0000000..f67edbe --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_jellyshroom_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/betterend/treated_jellyshroom_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/betterend/treated_jellyshroom_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betterend" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_lacugrove_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_lacugrove_planks new file mode 100644 index 0000000..88d082a --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_lacugrove_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/betterend/treated_lacugrove_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/betterend/treated_lacugrove_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betterend" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_lucernia_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_lucernia_planks new file mode 100644 index 0000000..937f716 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_lucernia_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/betterend/treated_lucernia_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/betterend/treated_lucernia_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betterend" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_mossy_glowshroom_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_mossy_glowshroom_planks new file mode 100644 index 0000000..a4abde3 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_mossy_glowshroom_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/betterend/treated_mossy_glowshroom_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/betterend/treated_mossy_glowshroom_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betterend" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_pythadendron_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_pythadendron_planks new file mode 100644 index 0000000..5b52fbd --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_pythadendron_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/betterend/treated_pythadendron_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/betterend/treated_pythadendron_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betterend" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_tenanea_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_tenanea_planks new file mode 100644 index 0000000..d3d0cc4 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_tenanea_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/betterend/treated_tenanea_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/betterend/treated_tenanea_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betterend" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_umbrella_tree_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_umbrella_tree_planks new file mode 100644 index 0000000..e7bf881 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betterend/treated_umbrella_tree_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/betterend/treated_umbrella_tree_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/betterend/treated_umbrella_tree_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betterend" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_anchor_tree_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_anchor_tree_planks new file mode 100644 index 0000000..d66db9a --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_anchor_tree_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/betternether/treated_anchor_tree_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/betternether/treated_anchor_tree_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betternether" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_mushroom_fir_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_mushroom_fir_planks new file mode 100644 index 0000000..aa55a48 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_mushroom_fir_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/betternether/treated_mushroom_fir_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/betternether/treated_mushroom_fir_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betternether" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_nether_mushroom_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_nether_mushroom_planks new file mode 100644 index 0000000..c797331 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_nether_mushroom_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/betternether/treated_nether_mushroom_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/betternether/treated_nether_mushroom_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betternether" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_nether_reed_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_nether_reed_planks new file mode 100644 index 0000000..ca99825 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_nether_reed_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/betternether/treated_nether_reed_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/betternether/treated_nether_reed_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betternether" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_nether_sakura_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_nether_sakura_planks new file mode 100644 index 0000000..7167d38 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_nether_sakura_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/betternether/treated_nether_sakura_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/betternether/treated_nether_sakura_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betternether" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_rubeus_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_rubeus_planks new file mode 100644 index 0000000..b99e3a1 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_rubeus_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/betternether/treated_rubeus_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/betternether/treated_rubeus_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betternether" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_stalagnate_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_stalagnate_planks new file mode 100644 index 0000000..cba30a4 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_stalagnate_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/betternether/treated_stalagnate_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/betternether/treated_stalagnate_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betternether" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_wart_planks_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_wart_planks_planks new file mode 100644 index 0000000..fc3a07e --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_wart_planks_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/betternether/treated_wart_planks_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/betternether/treated_wart_planks_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betternether" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_willow_planks_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_willow_planks_planks new file mode 100644 index 0000000..263719f --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/betternether/treated_willow_planks_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/betternether/treated_willow_planks_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/betternether/treated_willow_planks_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betternether" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_dead_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_dead_planks new file mode 100644 index 0000000..673e08f --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_dead_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/biomesoplenty/treated_dead_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/biomesoplenty/treated_dead_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_empyreal_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_empyreal_planks new file mode 100644 index 0000000..32782b9 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_empyreal_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/biomesoplenty/treated_empyreal_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/biomesoplenty/treated_empyreal_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_fir_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_fir_planks new file mode 100644 index 0000000..c792cfb --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_fir_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/biomesoplenty/treated_fir_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/biomesoplenty/treated_fir_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_hellbark_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_hellbark_planks new file mode 100644 index 0000000..6a03912 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_hellbark_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/biomesoplenty/treated_hellbark_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/biomesoplenty/treated_hellbark_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_jacaranda_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_jacaranda_planks new file mode 100644 index 0000000..e0871a9 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_jacaranda_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/biomesoplenty/treated_jacaranda_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/biomesoplenty/treated_jacaranda_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_magic_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_magic_planks new file mode 100644 index 0000000..13c3aa7 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_magic_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/biomesoplenty/treated_magic_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/biomesoplenty/treated_magic_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_mahogany_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_mahogany_planks new file mode 100644 index 0000000..0bcb873 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_mahogany_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/biomesoplenty/treated_mahogany_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/biomesoplenty/treated_mahogany_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_maple_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_maple_planks new file mode 100644 index 0000000..7e6ea2e --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_maple_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/biomesoplenty/treated_maple_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/biomesoplenty/treated_maple_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_palm_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_palm_planks new file mode 100644 index 0000000..a0ed4c7 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_palm_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/biomesoplenty/treated_palm_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/biomesoplenty/treated_palm_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_pine_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_pine_planks new file mode 100644 index 0000000..ff8abb2 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_pine_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/biomesoplenty/treated_pine_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/biomesoplenty/treated_pine_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_redwood_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_redwood_planks new file mode 100644 index 0000000..ecf351d --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_redwood_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/biomesoplenty/treated_redwood_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/biomesoplenty/treated_redwood_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_umbran_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_umbran_planks new file mode 100644 index 0000000..f293519 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_umbran_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/biomesoplenty/treated_umbran_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/biomesoplenty/treated_umbran_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_willow_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_willow_planks new file mode 100644 index 0000000..8dd1954 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/biomesoplenty/treated_willow_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/biomesoplenty/treated_willow_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/biomesoplenty/treated_willow_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/cinderscapes/treated_scorched_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/cinderscapes/treated_scorched_planks new file mode 100644 index 0000000..c7b2bbb --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/cinderscapes/treated_scorched_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/cinderscapes/treated_scorched_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/cinderscapes/treated_scorched_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "cinderscapes" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/cinderscapes/treated_umbral_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/cinderscapes/treated_umbral_planks new file mode 100644 index 0000000..2d949f9 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/cinderscapes/treated_umbral_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/cinderscapes/treated_umbral_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/cinderscapes/treated_umbral_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "cinderscapes" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_cypress_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_cypress_planks new file mode 100644 index 0000000..bd87d0b --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_cypress_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/terrestria/treated_cypress_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/terrestria/treated_cypress_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "terrestria" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_hemlock_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_hemlock_planks new file mode 100644 index 0000000..214c388 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_hemlock_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/terrestria/treated_hemlock_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/terrestria/treated_hemlock_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "terrestria" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_japanese_maple_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_japanese_maple_planks new file mode 100644 index 0000000..f9fe178 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_japanese_maple_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/terrestria/treated_japanese_maple_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/terrestria/treated_japanese_maple_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "terrestria" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_rainbow_eucalyptus_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_rainbow_eucalyptus_planks new file mode 100644 index 0000000..24a8677 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_rainbow_eucalyptus_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/terrestria/treated_rainbow_eucalyptus_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/terrestria/treated_rainbow_eucalyptus_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "terrestria" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_redwood_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_redwood_planks new file mode 100644 index 0000000..fba01c7 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_redwood_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/terrestria/treated_redwood_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/terrestria/treated_redwood_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "terrestria" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_rubber_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_rubber_planks new file mode 100644 index 0000000..6a44ca4 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_rubber_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/terrestria/treated_rubber_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/terrestria/treated_rubber_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "terrestria" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_sakura_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_sakura_planks new file mode 100644 index 0000000..ef11deb --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_sakura_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/terrestria/treated_sakura_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/terrestria/treated_sakura_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "terrestria" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_willow_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_willow_planks new file mode 100644 index 0000000..4cf75aa --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_willow_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/terrestria/treated_willow_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/terrestria/treated_willow_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "terrestria" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_yucca_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_yucca_planks new file mode 100644 index 0000000..9ee3b3e --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/terrestria/treated_yucca_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/terrestria/treated_yucca_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/terrestria/treated_yucca_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "terrestria" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/traverse/treated_fir_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/traverse/treated_fir_planks new file mode 100644 index 0000000..6f03c7a --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/traverse/treated_fir_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/traverse/treated_fir_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/traverse/treated_fir_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "traverse" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/wilderwild/treated_baobab_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/wilderwild/treated_baobab_planks new file mode 100644 index 0000000..f0a39b6 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/wilderwild/treated_baobab_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/wilderwild/treated_baobab_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/wilderwild/treated_baobab_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "wilderwild" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/wilderwild/treated_cypress_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/wilderwild/treated_cypress_planks new file mode 100644 index 0000000..cd6d425 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/wilderwild/treated_cypress_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/wilderwild/treated_cypress_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/wilderwild/treated_cypress_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "wilderwild" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/wilderwild/treated_palm_planks b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/wilderwild/treated_palm_planks new file mode 100644 index 0000000..b7219e4 --- /dev/null +++ b/src/main/resources/data/rounded/advancement/recipes/building_blocks/compat/wilderwild/treated_palm_planks @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "rounded:compat/wilderwild/treated_palm_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "rounded:compat/wilderwild/treated_palm_planks" + ] + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "wilderwild" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/betterend/treated_helix_tree_planks b/src/main/resources/data/rounded/recipe/compat/betterend/treated_helix_tree_planks new file mode 100644 index 0000000..2478bb4 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/betterend/treated_helix_tree_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "betterend:helix_tree_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/betterend/treated_helix_tree_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betterend" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/betterend/treated_jellyshroom_planks b/src/main/resources/data/rounded/recipe/compat/betterend/treated_jellyshroom_planks new file mode 100644 index 0000000..fae2b6c --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/betterend/treated_jellyshroom_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "betterend:jellyshroom_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/betterend/treated_jellyshroom_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betterend" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/betterend/treated_lacugrove_planks b/src/main/resources/data/rounded/recipe/compat/betterend/treated_lacugrove_planks new file mode 100644 index 0000000..16a57ad --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/betterend/treated_lacugrove_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "betterend:lacugrove_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/betterend/treated_lacugrove_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betterend" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/betterend/treated_lucernia_planks b/src/main/resources/data/rounded/recipe/compat/betterend/treated_lucernia_planks new file mode 100644 index 0000000..c3f393a --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/betterend/treated_lucernia_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "betterend:lucernia_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/betterend/treated_lucernia_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betterend" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/betterend/treated_mossy_glowshroom_planks b/src/main/resources/data/rounded/recipe/compat/betterend/treated_mossy_glowshroom_planks new file mode 100644 index 0000000..77dd299 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/betterend/treated_mossy_glowshroom_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "betterend:mossy_glowshroom_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/betterend/treated_mossy_glowshroom_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betterend" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/betterend/treated_pythadendron_planks b/src/main/resources/data/rounded/recipe/compat/betterend/treated_pythadendron_planks new file mode 100644 index 0000000..cf336ca --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/betterend/treated_pythadendron_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "betterend:pythadendron_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/betterend/treated_pythadendron_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betterend" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/betterend/treated_tenanea_planks b/src/main/resources/data/rounded/recipe/compat/betterend/treated_tenanea_planks new file mode 100644 index 0000000..c0efefc --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/betterend/treated_tenanea_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "betterend:tenanea_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/betterend/treated_tenanea_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betterend" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/betterend/treated_umbrella_tree_planks b/src/main/resources/data/rounded/recipe/compat/betterend/treated_umbrella_tree_planks new file mode 100644 index 0000000..b467f56 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/betterend/treated_umbrella_tree_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "betterend:umbrella_tree_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/betterend/treated_umbrella_tree_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betterend" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/betternether/treated_anchor_tree_planks b/src/main/resources/data/rounded/recipe/compat/betternether/treated_anchor_tree_planks new file mode 100644 index 0000000..35e1077 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/betternether/treated_anchor_tree_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "betternether:anchor_tree_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/betternether/treated_anchor_tree_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betternether" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/betternether/treated_mushroom_fir_planks b/src/main/resources/data/rounded/recipe/compat/betternether/treated_mushroom_fir_planks new file mode 100644 index 0000000..cb0d101 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/betternether/treated_mushroom_fir_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "betternether:mushroom_fir_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/betternether/treated_mushroom_fir_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betternether" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/betternether/treated_nether_mushroom_planks b/src/main/resources/data/rounded/recipe/compat/betternether/treated_nether_mushroom_planks new file mode 100644 index 0000000..418e306 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/betternether/treated_nether_mushroom_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "betternether:nether_mushroom_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/betternether/treated_nether_mushroom_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betternether" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/betternether/treated_nether_reed_planks b/src/main/resources/data/rounded/recipe/compat/betternether/treated_nether_reed_planks new file mode 100644 index 0000000..9ea0ce6 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/betternether/treated_nether_reed_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "betternether:nether_reed_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/betternether/treated_nether_reed_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betternether" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/betternether/treated_nether_sakura_planks b/src/main/resources/data/rounded/recipe/compat/betternether/treated_nether_sakura_planks new file mode 100644 index 0000000..66debd3 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/betternether/treated_nether_sakura_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "betternether:nether_sakura_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/betternether/treated_nether_sakura_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betternether" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/betternether/treated_rubeus_planks b/src/main/resources/data/rounded/recipe/compat/betternether/treated_rubeus_planks new file mode 100644 index 0000000..0fe267f --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/betternether/treated_rubeus_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "betternether:rubeus_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/betternether/treated_rubeus_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betternether" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/betternether/treated_stalagnate_planks b/src/main/resources/data/rounded/recipe/compat/betternether/treated_stalagnate_planks new file mode 100644 index 0000000..d5bc94e --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/betternether/treated_stalagnate_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "betternether:stalagnate_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/betternether/treated_stalagnate_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betternether" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/betternether/treated_wart_planks_planks b/src/main/resources/data/rounded/recipe/compat/betternether/treated_wart_planks_planks new file mode 100644 index 0000000..846a416 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/betternether/treated_wart_planks_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "betternether:wart_planks_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/betternether/treated_wart_planks_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betternether" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/betternether/treated_willow_planks_planks b/src/main/resources/data/rounded/recipe/compat/betternether/treated_willow_planks_planks new file mode 100644 index 0000000..b291dc8 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/betternether/treated_willow_planks_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "betternether:willow_planks_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/betternether/treated_willow_planks_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "betternether" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_dead_planks b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_dead_planks new file mode 100644 index 0000000..68a9e1f --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_dead_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "biomesoplenty:dead_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/biomesoplenty/treated_dead_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_empyreal_planks b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_empyreal_planks new file mode 100644 index 0000000..7353259 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_empyreal_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "biomesoplenty:empyreal_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/biomesoplenty/treated_empyreal_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_fir_planks b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_fir_planks new file mode 100644 index 0000000..fdc573c --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_fir_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "biomesoplenty:fir_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/biomesoplenty/treated_fir_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_hellbark_planks b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_hellbark_planks new file mode 100644 index 0000000..654949f --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_hellbark_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "biomesoplenty:hellbark_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/biomesoplenty/treated_hellbark_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_jacaranda_planks b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_jacaranda_planks new file mode 100644 index 0000000..b4b030f --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_jacaranda_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "biomesoplenty:jacaranda_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/biomesoplenty/treated_jacaranda_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_magic_planks b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_magic_planks new file mode 100644 index 0000000..9341f7a --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_magic_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "biomesoplenty:magic_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/biomesoplenty/treated_magic_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_mahogany_planks b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_mahogany_planks new file mode 100644 index 0000000..6ecbcf5 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_mahogany_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "biomesoplenty:mahogany_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/biomesoplenty/treated_mahogany_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_maple_planks b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_maple_planks new file mode 100644 index 0000000..bb3d081 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_maple_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "biomesoplenty:maple_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/biomesoplenty/treated_maple_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_palm_planks b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_palm_planks new file mode 100644 index 0000000..bee2435 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_palm_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "biomesoplenty:palm_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/biomesoplenty/treated_palm_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_pine_planks b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_pine_planks new file mode 100644 index 0000000..225c231 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_pine_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "biomesoplenty:pine_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/biomesoplenty/treated_pine_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_redwood_planks b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_redwood_planks new file mode 100644 index 0000000..c071905 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_redwood_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "biomesoplenty:redwood_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/biomesoplenty/treated_redwood_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_umbran_planks b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_umbran_planks new file mode 100644 index 0000000..34e8df1 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_umbran_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "biomesoplenty:umbran_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/biomesoplenty/treated_umbran_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_willow_planks b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_willow_planks new file mode 100644 index 0000000..16f07fd --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/biomesoplenty/treated_willow_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "biomesoplenty:willow_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/biomesoplenty/treated_willow_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "biomesoplenty" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/cinderscapes/treated_scorched_planks b/src/main/resources/data/rounded/recipe/compat/cinderscapes/treated_scorched_planks new file mode 100644 index 0000000..e06adf0 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/cinderscapes/treated_scorched_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "cinderscapes:scorched_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/cinderscapes/treated_scorched_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "cinderscapes" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/cinderscapes/treated_umbral_planks b/src/main/resources/data/rounded/recipe/compat/cinderscapes/treated_umbral_planks new file mode 100644 index 0000000..f190435 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/cinderscapes/treated_umbral_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "cinderscapes:umbral_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/cinderscapes/treated_umbral_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "cinderscapes" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/terrestria/treated_cypress_planks b/src/main/resources/data/rounded/recipe/compat/terrestria/treated_cypress_planks new file mode 100644 index 0000000..156dbd0 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/terrestria/treated_cypress_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "terrestria:cypress_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/terrestria/treated_cypress_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "terrestria" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/terrestria/treated_hemlock_planks b/src/main/resources/data/rounded/recipe/compat/terrestria/treated_hemlock_planks new file mode 100644 index 0000000..e83beb6 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/terrestria/treated_hemlock_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "terrestria:hemlock_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/terrestria/treated_hemlock_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "terrestria" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/terrestria/treated_japanese_maple_planks b/src/main/resources/data/rounded/recipe/compat/terrestria/treated_japanese_maple_planks new file mode 100644 index 0000000..cac10e7 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/terrestria/treated_japanese_maple_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "terrestria:japanese_maple_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/terrestria/treated_japanese_maple_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "terrestria" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/terrestria/treated_rainbow_eucalyptus_planks b/src/main/resources/data/rounded/recipe/compat/terrestria/treated_rainbow_eucalyptus_planks new file mode 100644 index 0000000..24af085 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/terrestria/treated_rainbow_eucalyptus_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "terrestria:rainbow_eucalyptus_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/terrestria/treated_rainbow_eucalyptus_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "terrestria" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/terrestria/treated_redwood_planks b/src/main/resources/data/rounded/recipe/compat/terrestria/treated_redwood_planks new file mode 100644 index 0000000..f8387d0 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/terrestria/treated_redwood_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "terrestria:redwood_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/terrestria/treated_redwood_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "terrestria" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/terrestria/treated_rubber_planks b/src/main/resources/data/rounded/recipe/compat/terrestria/treated_rubber_planks new file mode 100644 index 0000000..50f1467 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/terrestria/treated_rubber_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "terrestria:rubber_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/terrestria/treated_rubber_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "terrestria" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/terrestria/treated_sakura_planks b/src/main/resources/data/rounded/recipe/compat/terrestria/treated_sakura_planks new file mode 100644 index 0000000..cf4cf3d --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/terrestria/treated_sakura_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "terrestria:sakura_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/terrestria/treated_sakura_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "terrestria" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/terrestria/treated_willow_planks b/src/main/resources/data/rounded/recipe/compat/terrestria/treated_willow_planks new file mode 100644 index 0000000..802c253 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/terrestria/treated_willow_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "terrestria:willow_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/terrestria/treated_willow_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "terrestria" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/terrestria/treated_yucca_planks b/src/main/resources/data/rounded/recipe/compat/terrestria/treated_yucca_planks new file mode 100644 index 0000000..146714f --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/terrestria/treated_yucca_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "terrestria:yucca_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/terrestria/treated_yucca_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "terrestria" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/traverse/treated_fir_planks b/src/main/resources/data/rounded/recipe/compat/traverse/treated_fir_planks new file mode 100644 index 0000000..9ce122a --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/traverse/treated_fir_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "traverse:fir_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/traverse/treated_fir_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "traverse" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/wilderwild/treated_baobab_planks b/src/main/resources/data/rounded/recipe/compat/wilderwild/treated_baobab_planks new file mode 100644 index 0000000..1cef274 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/wilderwild/treated_baobab_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "wilderwild:baobab_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/wilderwild/treated_baobab_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "wilderwild" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/wilderwild/treated_cypress_planks b/src/main/resources/data/rounded/recipe/compat/wilderwild/treated_cypress_planks new file mode 100644 index 0000000..3c69d66 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/wilderwild/treated_cypress_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "wilderwild:cypress_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/wilderwild/treated_cypress_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "wilderwild" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/recipe/compat/wilderwild/treated_palm_planks b/src/main/resources/data/rounded/recipe/compat/wilderwild/treated_palm_planks new file mode 100644 index 0000000..d178c49 --- /dev/null +++ b/src/main/resources/data/rounded/recipe/compat/wilderwild/treated_palm_planks @@ -0,0 +1,30 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "rounded:treated_planks", + "key": { + "#": { + "item": "wilderwild:palm_planks" + }, + "X": { + "item": "minecraft:honeycomb" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "rounded:compat/wilderwild/treated_palm_planks" + }, + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "wilderwild" + ] + } + ] +} diff --git a/src/main/resources/data/rounded/tags/item/treated_planks.json b/src/main/resources/data/rounded/tags/item/treated_planks.json index 6ae9d89..f259f2b 100644 --- a/src/main/resources/data/rounded/tags/item/treated_planks.json +++ b/src/main/resources/data/rounded/tags/item/treated_planks.json @@ -15,6 +15,194 @@ { "required": false, "id": "rounded:compat/treated_hevea_brasiliensis_planks" + }, + { + "required": false, + "id": "rounded:compat/betterend/treated_dragon_tree_planks" + }, + { + "required": false, + "id": "rounded:compat/betterend/treated_end_lotus_planks" + }, + { + "required": false, + "id": "rounded:compat/betterend/treated_helix_tree_planks" + }, + { + "required": false, + "id": "rounded:compat/betterend/treated_jellyshroom_planks" + }, + { + "required": false, + "id": "rounded:compat/betterend/treated_lacugrove_planks" + }, + { + "required": false, + "id": "rounded:compat/betterend/treated_lucernia_planks" + }, + { + "required": false, + "id": "rounded:compat/betterend/treated_mossy_glowshroom_planks" + }, + { + "required": false, + "id": "rounded:compat/betterend/treated_pythadendron_planks" + }, + { + "required": false, + "id": "rounded:compat/betterend/treated_tenanea_planks" + }, + { + "required": false, + "id": "rounded:compat/betterend/treated_umbrella_tree_planks" + }, + { + "required": false, + "id": "rounded:compat/betternether/treated_anchor_tree_planks" + }, + { + "required": false, + "id": "rounded:compat/betternether/treated_mushroom_fir_planks" + }, + { + "required": false, + "id": "rounded:compat/betternether/treated_nether_mushroom_planks" + }, + { + "required": false, + "id": "rounded:compat/betternether/treated_nether_reed_planks" + }, + { + "required": false, + "id": "rounded:compat/betternether/treated_nether_sakura_planks" + }, + { + "required": false, + "id": "rounded:compat/betternether/treated_rubeus_planks" + }, + { + "required": false, + "id": "rounded:compat/betternether/treated_stalagnate_planks" + }, + { + "required": false, + "id": "rounded:compat/betternether/treated_wart_planks_planks" + }, + { + "required": false, + "id": "rounded:compat/betternether/treated_willow_planks_planks" + }, + { + "required": false, + "id": "rounded:compat/biomesoplenty/treated_dead_planks" + }, + { + "required": false, + "id": "rounded:compat/biomesoplenty/treated_empyreal_planks" + }, + { + "required": false, + "id": "rounded:compat/biomesoplenty/treated_fir_planks" + }, + { + "required": false, + "id": "rounded:compat/biomesoplenty/treated_hellbark_planks" + }, + { + "required": false, + "id": "rounded:compat/biomesoplenty/treated_jacaranda_planks" + }, + { + "required": false, + "id": "rounded:compat/biomesoplenty/treated_magic_planks" + }, + { + "required": false, + "id": "rounded:compat/biomesoplenty/treated_mahogany_planks" + }, + { + "required": false, + "id": "rounded:compat/biomesoplenty/treated_maple_planks" + }, + { + "required": false, + "id": "rounded:compat/biomesoplenty/treated_palm_planks" + }, + { + "required": false, + "id": "rounded:compat/biomesoplenty/treated_pine_planks" + }, + { + "required": false, + "id": "rounded:compat/biomesoplenty/treated_redwood_planks" + }, + { + "required": false, + "id": "rounded:compat/biomesoplenty/treated_umbran_planks" + }, + { + "required": false, + "id": "rounded:compat/biomesoplenty/treated_willow_planks" + }, + { + "required": false, + "id": "rounded:compat/cinderscapes/treated_scorched_planks" + }, + { + "required": false, + "id": "rounded:compat/cinderscapes/treated_umbral_planks" + }, + { + "required": false, + "id": "rounded:compat/terrestria/treated_cypress_planks" + }, + { + "required": false, + "id": "rounded:compat/terrestria/treated_hemlock_planks" + }, + { + "required": false, + "id": "rounded:compat/terrestria/treated_japanese_maple_planks" + }, + { + "required": false, + "id": "rounded:compat/terrestria/treated_rainbow_eucalyptus_planks" + }, + { + "required": false, + "id": "rounded:compat/terrestria/treated_redwood_planks" + }, + { + "required": false, + "id": "rounded:compat/terrestria/treated_rubber_planks" + }, + { + "required": false, + "id": "rounded:compat/terrestria/treated_sakura_planks" + }, + { + "required": false, + "id": "rounded:compat/terrestria/treated_willow_planks" + }, + { + "required": false, + "id": "rounded:compat/terrestria/treated_yucca_planks" + }, + { + "required": false, + "id": "rounded:compat/traverse/treated_fir_planks" + }, + { + "required": false, + "id": "rounded:compat/wilderwild/treated_baobab_planks" + }, + { + "required": false, + "id": "rounded:compat/wilderwild/treated_cypress_planks" + }, + { + "required": false, + "id": "rounded:compat/wilderwild/treated_palm_planks" } ] }