From e91fa99836dc6b9cf6dec781896e251ad5f1fa01 Mon Sep 17 00:00:00 2001 From: VoidLeech Date: Tue, 17 Dec 2024 01:17:43 +0100 Subject: [PATCH] feat: data compat for gardens_of_the_dead, undergarden, unusualend and deeperdarker --- .../2d64935085b86659cb7857bad9701dbf9bab6e4c | 16 +- .../b256105d8411632b0d585496ea8944a751a08034 | 504 ++++++++++++++++++ .../undergarden/depthrock_cloggrum_ore.json | 33 ++ .../undergarden/depthrock_coal_ore.json | 33 ++ .../undergarden/depthrock_diamond_ore.json | 33 ++ .../undergarden/depthrock_gold_ore.json | 34 ++ .../undergarden/depthrock_iron_ore.json | 33 ++ .../undergarden/depthrock_regalium_ore.json | 34 ++ .../undergarden/depthrock_utherium_ore.json | 33 ++ .../undergarden/shiverstone_cloggrum_ore.json | 33 ++ .../undergarden/shiverstone_coal_ore.json | 33 ++ .../undergarden/shiverstone_diamond_ore.json | 33 ++ .../shiverstone_froststeel_ore.json | 33 ++ .../undergarden/shiverstone_iron_ore.json | 33 ++ .../undergarden/shiverstone_regalium_ore.json | 34 ++ .../undergarden/shiverstone_utherium_ore.json | 33 ++ .../compat/unusualend/scale_horse_armor.json | 36 ++ .../undergarden/virulent_mix_bucket.json | 23 + .../filling/compat/undergarden/deepturf.json | 24 + .../compat/deeperdarker/gloomy_cactus.json | 25 + .../compat/deeperdarker/glowing_flowers.json | 25 + .../compat/deeperdarker/lily_flower.json | 25 + .../compat/deeperdarker/sculk_grime.json | 19 + .../gardens_of_the_dead/blistercrown.json | 25 + .../glowing_soul_spore.json | 25 + .../tall_blistercrown.json | 31 ++ .../compat/undergarden/amorous_bristle.json | 25 + .../compat/undergarden/butterbunch.json | 25 + .../milling/compat/undergarden/depthrock.json | 31 ++ .../compat/undergarden/miserabell.json | 25 + .../compat/undergarden/shimmerweed.json | 25 + .../compat/undergarden/tall_shimmerweed.json | 30 ++ .../compat/unusualend/chorus_roots.json | 25 + .../compat/unusualend/endstone_sprouts.json | 21 + .../unusualend/flowering_gloopy_pile.json | 31 ++ .../unusualend/flowering_purpr_grass.json | 25 + .../compat/unusualend/gloopy_bush.json | 25 + .../compat/unusualend/gloopy_tendrils.json | 21 + .../compat/unusualend/purper_grass.json | 25 + .../compat/unusualend/shiny_spirea.json | 25 + .../compat/unusualend/small_warped_algae.json | 21 + .../compat/unusualend/warped_algae.json | 25 + .../compat/unusualend/warped_sprouts.json | 21 + .../create/tags/blocks/fan_transparent.json | 14 +- .../create/tags/blocks/tree_attachments.json | 10 +- .../tags/items/modded_stripped_logs.json | 20 + .../tags/items/modded_stripped_wood.json | 16 + .../create/tags/items/upright_on_belt.json | 22 +- .../data/recipe/CrushingRecipeGen.java | 133 ++++- .../data/recipe/CuttingRecipeGen.java | 5 +- .../data/recipe/EmptyingRecipeGen.java | 7 +- .../data/recipe/FillingRecipeGen.java | 10 +- .../data/recipe/MillingRecipeGen.java | 69 ++- .../data/CreateRegistrateTags.java | 19 + 54 files changed, 1975 insertions(+), 19 deletions(-) create mode 100644 src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_cloggrum_ore.json create mode 100644 src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_coal_ore.json create mode 100644 src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_diamond_ore.json create mode 100644 src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_gold_ore.json create mode 100644 src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_iron_ore.json create mode 100644 src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_regalium_ore.json create mode 100644 src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_utherium_ore.json create mode 100644 src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_cloggrum_ore.json create mode 100644 src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_coal_ore.json create mode 100644 src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_diamond_ore.json create mode 100644 src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_froststeel_ore.json create mode 100644 src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_iron_ore.json create mode 100644 src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_regalium_ore.json create mode 100644 src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_utherium_ore.json create mode 100644 src/generated/resources/data/create/recipes/crushing/compat/unusualend/scale_horse_armor.json create mode 100644 src/generated/resources/data/create/recipes/emptying/compat/undergarden/virulent_mix_bucket.json create mode 100644 src/generated/resources/data/create/recipes/filling/compat/undergarden/deepturf.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/deeperdarker/gloomy_cactus.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/deeperdarker/glowing_flowers.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/deeperdarker/lily_flower.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/deeperdarker/sculk_grime.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/gardens_of_the_dead/blistercrown.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/gardens_of_the_dead/glowing_soul_spore.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/gardens_of_the_dead/tall_blistercrown.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/undergarden/amorous_bristle.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/undergarden/butterbunch.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/undergarden/depthrock.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/undergarden/miserabell.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/undergarden/shimmerweed.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/undergarden/tall_shimmerweed.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/unusualend/chorus_roots.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/unusualend/endstone_sprouts.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/unusualend/flowering_gloopy_pile.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/unusualend/flowering_purpr_grass.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/unusualend/gloopy_bush.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/unusualend/gloopy_tendrils.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/unusualend/purper_grass.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/unusualend/shiny_spirea.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/unusualend/small_warped_algae.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/unusualend/warped_algae.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/unusualend/warped_sprouts.json diff --git a/src/generated/resources/.cache/2d64935085b86659cb7857bad9701dbf9bab6e4c b/src/generated/resources/.cache/2d64935085b86659cb7857bad9701dbf9bab6e4c index dd7d0033b0..94f1ecc43c 100644 --- a/src/generated/resources/.cache/2d64935085b86659cb7857bad9701dbf9bab6e4c +++ b/src/generated/resources/.cache/2d64935085b86659cb7857bad9701dbf9bab6e4c @@ -642,8 +642,13 @@ b0d8f08968763a5f74e5cd5644377a76a9f39753 assets/create/blockstates/yellow_toolbo fe8c497aacc641c2f01cec90bba9f19e59cc2ed2 assets/create/blockstates/yellow_valve_handle.json e819e93fdcbe9fd9c050a052d2718ff3b3539365 assets/create/blockstates/zinc_block.json 64121dcb216381c83b4fe28aa361ea07c24c9ad0 assets/create/blockstates/zinc_ore.json +<<<<<<< HEAD 148ea6cb1f12ff9fa4b882c75ee5509aef00cf37 assets/create/lang/en_ud.json 9f810a52200ffba1a507fe7180df392bf2ddb0f9 assets/create/lang/en_us.json +======= +5f729ba3f0557eb1c1923a091e06eee5ddf25c59 assets/create/lang/en_ud.json +bdd95ac05db0717d02e4dc34b6054e73d4eee640 assets/create/lang/en_us.json +>>>>>>> ae0dea2d9 (feat: data compat for gardens_of_the_dead, undergarden, unusualend and deeperdarker) a97e1060e00ae701a02e39cd4ef8054cf345fac4 assets/create/models/block/acacia_window.json 103e032c0b1a0a6a27c67da8c91179a564bd281c assets/create/models/block/acacia_window_pane_noside.json fb00b627abda76ad4fea867ca57dbfadd24fffa3 assets/create/models/block/acacia_window_pane_noside_alt.json @@ -4692,7 +4697,7 @@ f675c20350ed60da4878b5d6301f02c8c05624bd data/create/tags/blocks/fan_processing_ 0592b99f657415f6546564ed8efa1fcbef07ba15 data/create/tags/blocks/fan_processing_catalysts/haunting.json 9386dd9a1d234813f9b8ae4ec88866d396aa1d37 data/create/tags/blocks/fan_processing_catalysts/smoking.json 35133e95f1c8fdd7a1c21afcc231fc0bffefb9a8 data/create/tags/blocks/fan_processing_catalysts/splashing.json -6858173c670bb593664ac3c62ded726d57d581f1 data/create/tags/blocks/fan_transparent.json +6b484960ce220fb5bb50ba082280c8b0dab0158e data/create/tags/blocks/fan_transparent.json 2589b135c0e96ad29076569e144528fe32ea5b39 data/create/tags/blocks/girdable_tracks.json 02c0a018f2b8540dc2f1fb420172cc716552f321 data/create/tags/blocks/movable_empty_collider.json 35133e95f1c8fdd7a1c21afcc231fc0bffefb9a8 data/create/tags/blocks/non_breakable.json @@ -4709,7 +4714,7 @@ f02fc9781e8f0ae33ed3b98cf4f46ba6927c7ff8 data/create/tags/blocks/sugar_cane_vari 8a6ad3c63fb0c436ec8109f39358213930effd5a data/create/tags/blocks/table_cloths.json 5def5088f7fd31b80e6f28c1c4ea146aa9d7d15b data/create/tags/blocks/toolboxes.json 2589b135c0e96ad29076569e144528fe32ea5b39 data/create/tags/blocks/tracks.json -1b6977d9a399cf6ee042e3f8f5e64e4d3cda5489 data/create/tags/blocks/tree_attachments.json +815833ec209dd0e5e65af471e8a80067d0b68e79 data/create/tags/blocks/tree_attachments.json da739ad2160e7df4e0e5cc89587670ce5e9450c3 data/create/tags/blocks/valve_handles.json 72143286fb5cb372a0696550e2eac76ca50e6fbc data/create/tags/blocks/windmill_sails.json a109dab3eeeae64b2eb909ae1b5027716c5dd271 data/create/tags/blocks/wrench_pickup.json @@ -4729,6 +4734,7 @@ f43cac8216e2a9347e48cf93a43de95dd810ca20 data/create/tags/items/contraption_cont d371dfd35e49a7bef19f59c03e7f4ae20992f03d data/create/tags/items/create_ingots.json 910d0f5ccbc4c84b224eca1f1588b1695f41447b data/create/tags/items/crushed_raw_materials.json 0fa526e7e742573b603ad26b09526cf724efa1dc data/create/tags/items/deployable_drink.json +<<<<<<< HEAD 35133e95f1c8fdd7a1c21afcc231fc0bffefb9a8 data/create/tags/items/dispense_behavior_wrap_blacklist.json ebd7b09daf2f64c0c04d821696b0e145683d8693 data/create/tags/items/dyed_table_cloths.json d2bb65d893d71d2d9871f81f430c233a93adb4bb data/create/tags/items/invalid_for_track_paving.json @@ -4736,6 +4742,10 @@ d2bb65d893d71d2d9871f81f430c233a93adb4bb data/create/tags/items/invalid_for_trac 586f8fc5a8b8559c9dc0017e13c78ad918688fae data/create/tags/items/modded_stripped_wood.json cebf5fd98eddf5c14befdd47052be678eea79542 data/create/tags/items/packages.json f400870b8dbcd14238be3ec99c419093073ba3a6 data/create/tags/items/postboxes.json +======= +e500b3c8bc0b12bb3e93b05897aaaec393ce946f data/create/tags/items/modded_stripped_logs.json +664381f463cdb49baf65270cf52f1d8ea96bad5f data/create/tags/items/modded_stripped_wood.json +>>>>>>> ae0dea2d9 (feat: data compat for gardens_of_the_dead, undergarden, unusualend and deeperdarker) 695d75b352fd190b303c724d1aaee9bb786a903b data/create/tags/items/pressurized_air_sources.json 22c4d4e033a61942b170aa309ed46a89a0ba0c65 data/create/tags/items/pulpifiable.json 2cd3adffd8b151354df137a990dcb97996a665bb data/create/tags/items/sandpaper.json @@ -4762,7 +4772,7 @@ e22493305e0cebfb7ededae122e19ee9dd24fc9d data/create/tags/items/stone_types/scor 5def5088f7fd31b80e6f28c1c4ea146aa9d7d15b data/create/tags/items/toolboxes.json 2589b135c0e96ad29076569e144528fe32ea5b39 data/create/tags/items/tracks.json a5b5711d1798473a9b25db5b7f749570ed0a2769 data/create/tags/items/upgrade_aquatic/coral.json -22c744a157399a21492bcd8b211578f8f504e653 data/create/tags/items/upright_on_belt.json +5a766e52ff42e36e52379f3d0ef787b9766e562b data/create/tags/items/upright_on_belt.json da739ad2160e7df4e0e5cc89587670ce5e9450c3 data/create/tags/items/valve_handles.json c59c9fc0cdd45de659aa8023d36f9decb90f708c data/create/tags/items/vanilla_stripped_logs.json 64441ac1daa64c81601b94b82b21c0ee862b6344 data/create/tags/items/vanilla_stripped_wood.json diff --git a/src/generated/resources/.cache/b256105d8411632b0d585496ea8944a751a08034 b/src/generated/resources/.cache/b256105d8411632b0d585496ea8944a751a08034 index 949db86d0e..08a90cdbbd 100644 --- a/src/generated/resources/.cache/b256105d8411632b0d585496ea8944a751a08034 +++ b/src/generated/resources/.cache/b256105d8411632b0d585496ea8944a751a08034 @@ -81,6 +81,21 @@ a5537631def291e7da320d2bc8c6256db45ea622 data/create/recipes/crushing/compat/sim ef8e75c897962c4bc4fa4ccaa42b374bbeb633e8 data/create/recipes/crushing/compat/thermal/cinnabar_ore.json e16232b73076c46164a7b0352398e19db30af6c5 data/create/recipes/crushing/compat/thermal/niter_ore.json 05da2e5ca7871402b29ace6e543aeb008a78af80 data/create/recipes/crushing/compat/thermal/sulfur_ore.json +32631693bfa0b5ebacc434c160d507a80f7a81cb data/create/recipes/crushing/compat/undergarden/depthrock_cloggrum_ore.json +8c508b7cf3df43ec7e9892b5a91cafcccdf78a2c data/create/recipes/crushing/compat/undergarden/depthrock_coal_ore.json +2a1f601262864fc6f1bef85ea37c015ea35816f7 data/create/recipes/crushing/compat/undergarden/depthrock_diamond_ore.json +6c170dd895f46a2748624fc6ecb622e8f4c46a95 data/create/recipes/crushing/compat/undergarden/depthrock_gold_ore.json +6412d2972b6cbbdc8a90bc1f5f9e9070cea2e399 data/create/recipes/crushing/compat/undergarden/depthrock_iron_ore.json +096bcec90427ad59efb78d6723dc5de9fdb94efc data/create/recipes/crushing/compat/undergarden/depthrock_regalium_ore.json +172d1cb0ae57bbe6b7b4306b17f7c3a0fd51aa78 data/create/recipes/crushing/compat/undergarden/depthrock_utherium_ore.json +98e08228771bfde59742d39c25511d5d2a757e9f data/create/recipes/crushing/compat/undergarden/shiverstone_cloggrum_ore.json +5d704245536a6a299ad93d87c8b82a419ff32153 data/create/recipes/crushing/compat/undergarden/shiverstone_coal_ore.json +198e6e9980866e036cbe867ec0a20a179e64eab3 data/create/recipes/crushing/compat/undergarden/shiverstone_diamond_ore.json +90aef429723f15016259e36e0fcec761e7f0ba9f data/create/recipes/crushing/compat/undergarden/shiverstone_froststeel_ore.json +d29db223523e3b5c7cb30de9b25a128204820ac6 data/create/recipes/crushing/compat/undergarden/shiverstone_iron_ore.json +534be14d42766b3fbeaddb5b85c54f37f97dcb00 data/create/recipes/crushing/compat/undergarden/shiverstone_regalium_ore.json +95b48e7df4343a2320f940f9e8e0f09d4708fc08 data/create/recipes/crushing/compat/undergarden/shiverstone_utherium_ore.json +fbcb453ee8db668473937840646a317fb51e8a1c data/create/recipes/crushing/compat/unusualend/scale_horse_armor.json ad91e6a560bdb8ef311862a0fee1f316529ed439 data/create/recipes/crushing/copper_ore.json 0ff7fa09b2ae808bc29c4d87985deccab5de2de5 data/create/recipes/crushing/crimsite.json 50c9a45e77d266852317fa1bac6c17443cfd986c data/create/recipes/crushing/crimsite_recycling.json @@ -175,6 +190,7 @@ af1ca00e05d554bba1d85c766e52560d5ea8fe4d data/create/recipes/cutting/compat/ars_ 1a66e7e6dfba9531bbb5a1d0bf014e16d6cbb6be data/create/recipes/cutting/compat/ars_nouveau/stripped_purple_archwood_wood.json 5c1c8275b2e30fdf387dcf358fd41e995e817c86 data/create/recipes/cutting/compat/ars_nouveau/stripped_red_archwood_log.json 9dc5bd8a1002b9d299d60a405720950eb0b4e9ab data/create/recipes/cutting/compat/ars_nouveau/stripped_red_archwood_wood.json +<<<<<<< HEAD c2f1bca179d6218aa75526df386106b72eb0dd67 data/create/recipes/cutting/compat/immersiveengineering/wire_aluminum.json 4e1ae62cb3f11d79b2ba979aa647a49518615525 data/create/recipes/cutting/compat/immersiveengineering/wire_copper.json e9086dc98d03798ded6f3170a5c51528d1f5eba7 data/create/recipes/cutting/compat/immersiveengineering/wire_electrum.json @@ -182,6 +198,468 @@ ca543d1e95ac73dbf3eaac91e80830fb3a071276 data/create/recipes/cutting/compat/imme bcab848fda66d20cf871f97db3c7c41f7c4b55c9 data/create/recipes/cutting/compat/immersiveengineering/wire_steel.json aa75d5f92d23fb24aece736145ac8372f6cff3f3 data/create/recipes/cutting/compat/regions_unexplored/silver_birch_log.json 3218231281a0afda1cef330a022e450efac18927 data/create/recipes/cutting/compat/regions_unexplored/silver_birch_wood.json +======= +08337ca1d46e04197fa31ccc21c3fcbbc0efde5a data/create/recipes/cutting/compat/atmospheric/aspen_log.json +1077e644ee8e83e39dbd695e5ed7b12591aedcfa data/create/recipes/cutting/compat/atmospheric/aspen_wood.json +339cc9026c5d89c8b78283baf5f21cb8b4471bad data/create/recipes/cutting/compat/atmospheric/grimwood.json +a8c2ff06f663881b1edbf7eab5e91083e59cf568 data/create/recipes/cutting/compat/atmospheric/grimwood_log.json +16640492eab4c22bf18e06fdf7a0469e1326f10b data/create/recipes/cutting/compat/atmospheric/kousa_log.json +0f2b8fa779cd3bc6e2ac04aa16596e08bda29578 data/create/recipes/cutting/compat/atmospheric/kousa_wood.json +0689201dddce046ef830ae791dc614ebcd6bb26d data/create/recipes/cutting/compat/atmospheric/morado_log.json +f3968dddde6ace179c0b6463aba17e212a93629a data/create/recipes/cutting/compat/atmospheric/morado_wood.json +41bb788e28c66d8a7415ec3731ca09f440864a9a data/create/recipes/cutting/compat/atmospheric/rosewood.json +4c49e3ac52fd466929a63e5009dce631040ba6ba data/create/recipes/cutting/compat/atmospheric/rosewood_log.json +a90a322d3acc2115e9a52c0e288215991c5ed143 data/create/recipes/cutting/compat/atmospheric/stripped_aspen_log.json +482e9a0464c877c21cf37925e20b6aeff633676c data/create/recipes/cutting/compat/atmospheric/stripped_aspen_wood.json +2d05a0460606960c7e73d2a67012b7dc55c00356 data/create/recipes/cutting/compat/atmospheric/stripped_grimwood.json +c2bfa5fa40905cb3bd2511d94907252e86afe7b8 data/create/recipes/cutting/compat/atmospheric/stripped_grimwood_log.json +092cae4bd9d8dd5626fd4b5c072520977dfa8a4e data/create/recipes/cutting/compat/atmospheric/stripped_kousa_log.json +cc69f0162e8fdd56e2e6a8d3423acd09a977f56d data/create/recipes/cutting/compat/atmospheric/stripped_kousa_wood.json +e9d88cf3cd60e6d43af7d1d16a174f88fcf1233d data/create/recipes/cutting/compat/atmospheric/stripped_morado_log.json +5f55e43d57c00b48c010609da73e7aa009f6c49a data/create/recipes/cutting/compat/atmospheric/stripped_morado_wood.json +ecfda5a9474fda3772c4cdfbe213c1350ed9ee38 data/create/recipes/cutting/compat/atmospheric/stripped_rosewood.json +c4e9a1327e2926f0517feaaf39c9629da8629312 data/create/recipes/cutting/compat/atmospheric/stripped_rosewood_log.json +924b4b9d24d2544aa04e7a713e6ce4674450b616 data/create/recipes/cutting/compat/atmospheric/stripped_yucca_log.json +ec6c644a9381526ea5c507a1968627fc880041ac data/create/recipes/cutting/compat/atmospheric/stripped_yucca_wood.json +c528538d50280aa575d642076b4d82e905cd5742 data/create/recipes/cutting/compat/atmospheric/yucca_log.json +fa41576ce1f7524bcd5c9d0bd755872c61594906 data/create/recipes/cutting/compat/atmospheric/yucca_wood.json +bca0cb14b60f7982d3e25f1fa082fc6c1d297cac data/create/recipes/cutting/compat/autumnity/maple_log.json +d95f86b26b21356ce3a9305d31143984489bd044 data/create/recipes/cutting/compat/autumnity/maple_wood.json +b66953dee0ea9804e22aa6f296c49e81f34d2d18 data/create/recipes/cutting/compat/autumnity/sappy_maple_log.json +bf5a4170f365901a3d850387ff6338e576f8e8eb data/create/recipes/cutting/compat/autumnity/sappy_maple_wood.json +598201da89849526cc316b63b297814bc52d75d1 data/create/recipes/cutting/compat/autumnity/stripped_maple_log.json +b93e929d2078211fd70d6df8d4eb065e6d4cc112 data/create/recipes/cutting/compat/autumnity/stripped_maple_wood.json +76872508fd1b302d4e94a2017ea72f7d38de6273 data/create/recipes/cutting/compat/biomesoplenty/dead_log.json +6bee03a37457acfc937c36ffb2d58ca97218c002 data/create/recipes/cutting/compat/biomesoplenty/dead_wood.json +c62f06b79bdac37704f0fa31459f98aeb2d4f7ae data/create/recipes/cutting/compat/biomesoplenty/fir_log.json +530425aed6c6acd1463f17e88aba7794118758a1 data/create/recipes/cutting/compat/biomesoplenty/fir_wood.json +e88e60e59fe0eb3118b00b02af9e529c866785d3 data/create/recipes/cutting/compat/biomesoplenty/hellbark_log.json +6997475ab7fb0c489188749447a0212d5facc1ca data/create/recipes/cutting/compat/biomesoplenty/hellbark_wood.json +4838e37981d65e3a732e320fd75f8e4762271ef9 data/create/recipes/cutting/compat/biomesoplenty/jacaranda_log.json +96bac76034038740a7c9e84c48ba90442a669774 data/create/recipes/cutting/compat/biomesoplenty/jacaranda_wood.json +4c5c28264e05e294de2b316fdd0dd2de8b8a1ed2 data/create/recipes/cutting/compat/biomesoplenty/magic_log.json +3634bb459019791c1010b7b93886e9d70fb00aa4 data/create/recipes/cutting/compat/biomesoplenty/magic_wood.json +697be2e1eccbf5ec96d5f00ab7ec03918a32f5c3 data/create/recipes/cutting/compat/biomesoplenty/mahogany_log.json +fa8a8440905213675dd769ae29509a1cbcabb1c1 data/create/recipes/cutting/compat/biomesoplenty/mahogany_wood.json +1130274e3e8abc3d3c7fe646898db7c68a59fed0 data/create/recipes/cutting/compat/biomesoplenty/palm_log.json +184b9042633580815a6d1e2e1f1d3c543f26a3e4 data/create/recipes/cutting/compat/biomesoplenty/palm_wood.json +919a8fbf9f8e7f398a28a8af71ca4ad48ed8d6db data/create/recipes/cutting/compat/biomesoplenty/redwood_log.json +165e2642f98885734b3f815579ff589b8f0b870e data/create/recipes/cutting/compat/biomesoplenty/redwood_wood.json +1a3f84111c5027304bfe8d037fa853125b2183c2 data/create/recipes/cutting/compat/biomesoplenty/stripped_dead_log.json +8f2c2015927767d627be865dc603530dd05328ee data/create/recipes/cutting/compat/biomesoplenty/stripped_dead_wood.json +822d84a550496c7f2c3ee127314a50512dfe5c8c data/create/recipes/cutting/compat/biomesoplenty/stripped_fir_log.json +737f59278b7b08c743b1ba5dc336c906b7fdd0e5 data/create/recipes/cutting/compat/biomesoplenty/stripped_fir_wood.json +03196fc1d845abe7f16ebbf25c64c86ad9c42efe data/create/recipes/cutting/compat/biomesoplenty/stripped_hellbark_log.json +b067086760701e8c11ced7b871b97e0ef7b1b2f0 data/create/recipes/cutting/compat/biomesoplenty/stripped_hellbark_wood.json +06dc710f86bfebb1a6927f3dff8d64e48009acf2 data/create/recipes/cutting/compat/biomesoplenty/stripped_jacaranda_log.json +a300edf8cae5ad7b3e2c129b44d1ea956e517c41 data/create/recipes/cutting/compat/biomesoplenty/stripped_jacaranda_wood.json +285b0ec232953870c714ce0b05b129e3e5833ee1 data/create/recipes/cutting/compat/biomesoplenty/stripped_magic_log.json +91647155034c4ffa87005d38416704dbb3c7b569 data/create/recipes/cutting/compat/biomesoplenty/stripped_magic_wood.json +3df1098856ffc9ae705f3ed577be378801e1fff9 data/create/recipes/cutting/compat/biomesoplenty/stripped_mahogany_log.json +be8856c7ddcac88a2d51980d963964c98b623dd8 data/create/recipes/cutting/compat/biomesoplenty/stripped_mahogany_wood.json +a77cbccc69c38b78bf15ee90fa377c11a8539cef data/create/recipes/cutting/compat/biomesoplenty/stripped_palm_log.json +e5df4bc6f127838474fadcb14e7bfaee739dddad data/create/recipes/cutting/compat/biomesoplenty/stripped_palm_wood.json +dfe420fd232ddf6ef27dd97baebef38b1087a55b data/create/recipes/cutting/compat/biomesoplenty/stripped_redwood_log.json +5bb6720ae1472207587a935d3fca5f065e0efa1a data/create/recipes/cutting/compat/biomesoplenty/stripped_redwood_wood.json +079b43a27f33868a776e27f22432d81051067ea1 data/create/recipes/cutting/compat/biomesoplenty/stripped_umbran_log.json +35c64750475e72b01333694c1d588213838528cd data/create/recipes/cutting/compat/biomesoplenty/stripped_umbran_wood.json +cf2036fe04660304257d7e5822eeff6656685417 data/create/recipes/cutting/compat/biomesoplenty/stripped_willow_log.json +f69bfa1c375c67d63d7b35475dedbe76644c10a5 data/create/recipes/cutting/compat/biomesoplenty/stripped_willow_wood.json +71a5963ad5dd9de348451ae4bfbad46cc06b8d8f data/create/recipes/cutting/compat/biomesoplenty/umbran_log.json +4cc971f56409befacd039a09ed5b561702681172 data/create/recipes/cutting/compat/biomesoplenty/umbran_wood.json +f3c630ba88419ea2fdf55b03eac22aac88acd56c data/create/recipes/cutting/compat/biomesoplenty/willow_log.json +f661dc5faff7e08489ef6ac4996864b79e53804a data/create/recipes/cutting/compat/biomesoplenty/willow_wood.json +c3c4999b33f2f29f31f1ac2cd0256694e530b6ab data/create/recipes/cutting/compat/blue_skies/bluebright_log.json +686bb3eab9fd2fc0439ffe7c31c08dee37eb17c3 data/create/recipes/cutting/compat/blue_skies/bluebright_wood.json +dfcee56f35b64e0b6d9a86a113f56de78f0ce6b3 data/create/recipes/cutting/compat/blue_skies/crystallized_log.json +0f6fa127bf9fd14a799985437eb1554a527f71c8 data/create/recipes/cutting/compat/blue_skies/crystallized_wood.json +a0ca7db3a2a631be843c697347ad70501b4e700c data/create/recipes/cutting/compat/blue_skies/dusk_log.json +ccfa435f7714312b8f307503203cb53d1643282a data/create/recipes/cutting/compat/blue_skies/dusk_wood.json +d7d5a3b1dfc58f0779819ce96fb382a5b023fba5 data/create/recipes/cutting/compat/blue_skies/frostbright_log.json +eee254d6e658b9584223d3fdb52d02e6257cbf02 data/create/recipes/cutting/compat/blue_skies/frostbright_wood.json +80499299707fbaad688fada38255b0dd076371f0 data/create/recipes/cutting/compat/blue_skies/lunar_log.json +177c8fd94e40a9ed839f43fbf6ee6afa53da7d93 data/create/recipes/cutting/compat/blue_skies/lunar_wood.json +a8cbd0e4f80fa6cf5b295c488a5795af9d20c923 data/create/recipes/cutting/compat/blue_skies/maple_log.json +a5ceee5b1c402dfcb06851a696c4ba4e3c15d790 data/create/recipes/cutting/compat/blue_skies/maple_wood.json +137ccda54b20e644f2aedafd924a976ffd88d452 data/create/recipes/cutting/compat/blue_skies/starlit_log.json +1960934756be7cb82421e9428622eb853c96c451 data/create/recipes/cutting/compat/blue_skies/starlit_wood.json +c96c5ecb3913b7611cea45dd45be447313a53278 data/create/recipes/cutting/compat/blue_skies/stripped_bluebright_log.json +26af6c6fc9e093d466b8a920de16e95aca9e0fe6 data/create/recipes/cutting/compat/blue_skies/stripped_bluebright_wood.json +2ef370bdc202010ef3f3d28a3df050b785178966 data/create/recipes/cutting/compat/blue_skies/stripped_dusk_log.json +e64dc0f1b77303152596c2c092783d06cfaed371 data/create/recipes/cutting/compat/blue_skies/stripped_dusk_wood.json +523239c7e97a4d0ea9a602324926ff8c7de21122 data/create/recipes/cutting/compat/blue_skies/stripped_frostbright_log.json +a29748d29a707f36cc660b833fc1d1caab2c7c2a data/create/recipes/cutting/compat/blue_skies/stripped_frostbright_wood.json +5eec34196ea44c10cd72a75a843b22fa5a4ab419 data/create/recipes/cutting/compat/blue_skies/stripped_lunar_log.json +c3be04b553399fe0a7e0ec551086abc7c3eedf36 data/create/recipes/cutting/compat/blue_skies/stripped_lunar_wood.json +43af28179df2cdd235293c8be0ec9fdd30393b6d data/create/recipes/cutting/compat/blue_skies/stripped_maple_log.json +6972e2bde54d352e14431fd334a06bfb1c83ecb6 data/create/recipes/cutting/compat/blue_skies/stripped_maple_wood.json +d4c2e45ea9525bb4d8df7e8ffaa4fba18c40d30f data/create/recipes/cutting/compat/blue_skies/stripped_starlit_log.json +964a494326ee801e693c9f4d870a8420a532e8cb data/create/recipes/cutting/compat/blue_skies/stripped_starlit_wood.json +158cde5b02ffefebe1d2a393f443c918fce9987e data/create/recipes/cutting/compat/botania/dreamwood.json +159b2c750e34c4782146554c6dc4b10a67e68c98 data/create/recipes/cutting/compat/botania/dreamwood_log.json +5d137232772d1f78be59fb8f382cee312b6df601 data/create/recipes/cutting/compat/botania/glimmering_dreamwood.json +eb5e05b5cab9fa314277121a0cbf94bdafa2e14b data/create/recipes/cutting/compat/botania/glimmering_dreamwood_log.json +f335b36e818ad653a245f54c9c77a7d9c041c561 data/create/recipes/cutting/compat/botania/glimmering_livingwood.json +49b875f3a21b5a85c33ac5de992d071aa0c8f4fd data/create/recipes/cutting/compat/botania/glimmering_livingwood_log.json +eb48e281f17bc125511870ff02a58cab915e435d data/create/recipes/cutting/compat/botania/glimmering_stripped_dreamwood.json +217ea2bc83a98334f0f155a64a1ea1e19a661e56 data/create/recipes/cutting/compat/botania/glimmering_stripped_dreamwood_log.json +8e39b16d4d1db2643cc5ec79773b1ae2b5bed1ab data/create/recipes/cutting/compat/botania/glimmering_stripped_livingwood.json +407698357fb1ff81ef4e35b32f3f1692cbb317c9 data/create/recipes/cutting/compat/botania/glimmering_stripped_livingwood_log.json +0c43382655638d8bca0c84fadb6d609ecc16ecd2 data/create/recipes/cutting/compat/botania/livingwood.json +da68af0ba1b040e8049a224e8ea8ada7fcc1f45a data/create/recipes/cutting/compat/botania/livingwood_log.json +eed98e7a9d5c4cd1bf39e4268bac6f1dc348d512 data/create/recipes/cutting/compat/botania/stripped_dreamwood.json +7fadb54f614bfe0af2c2c22f46c6923a14fefa8c data/create/recipes/cutting/compat/botania/stripped_dreamwood_log.json +2786670eacfe51a1f4adc4b83e825f93c328a1ea data/create/recipes/cutting/compat/botania/stripped_livingwood.json +9f471696da339cadeb3d805c3ea61310b1d81ff4 data/create/recipes/cutting/compat/botania/stripped_livingwood_log.json +4e775fd59f7c5b4ca0861cd9a077d3e0e464b4a4 data/create/recipes/cutting/compat/byg/aspen_log.json +bd21d721698b1d46f2a0483e2ea926558ba8f0ea data/create/recipes/cutting/compat/byg/aspen_wood.json +cef520dc7a7c4ec257f2b4ab2b1b134ef29874f0 data/create/recipes/cutting/compat/byg/baobab_log.json +56002a9c9d210fdce2d21c4abb17851b5bc770f9 data/create/recipes/cutting/compat/byg/baobab_wood.json +5492c3b2db0fefb3f1498bbb440d5c92bad7e072 data/create/recipes/cutting/compat/byg/blue_enchanted_log.json +6b32af35555c83fee27c43858ebe03711c825d36 data/create/recipes/cutting/compat/byg/blue_enchanted_wood.json +2325864b4f7a80d466f5eef373f65cccb0557d55 data/create/recipes/cutting/compat/byg/bulbis_stem.json +52320312ae0aa6d957f841b430355d96afdbfe0b data/create/recipes/cutting/compat/byg/bulbis_wood.json +588ea2463640155d79724a694b5152574ea3f2a7 data/create/recipes/cutting/compat/byg/cika_log.json +880d0190030e3a70fd2a21ab4fc11604fbaac447 data/create/recipes/cutting/compat/byg/cika_wood.json +1fc63cafc946178443d1e362b9730455f2192b25 data/create/recipes/cutting/compat/byg/cypress_log.json +c27c16aec08599e76020ac4b40dc5085b2a85d3a data/create/recipes/cutting/compat/byg/cypress_wood.json +5daca7d84f07e72a961fce6e405cd13428411bd3 data/create/recipes/cutting/compat/byg/ebony_log.json +5e7650fdc0541e996db733880ddd7746f6998660 data/create/recipes/cutting/compat/byg/ebony_wood.json +0357f1d46f7b79de4b20af24eff754c5d280ed3f data/create/recipes/cutting/compat/byg/ether_log.json +464978c5018fb884aecad8455caefa3396b88bea data/create/recipes/cutting/compat/byg/ether_wood.json +3053408dcc0deedd992e4ca8c9181fff1a952ad8 data/create/recipes/cutting/compat/byg/fir_log.json +dfd2ce56f18327ac7feea783d5c7439dd2516884 data/create/recipes/cutting/compat/byg/fir_wood.json +40af5f403a0681833109b26b6da8762d99df484a data/create/recipes/cutting/compat/byg/fungal_imparius_hyphae.json +3d7de0bab24b7ea34c34a25383c4937cc9f585d8 data/create/recipes/cutting/compat/byg/fungal_imparius_stem.json +121375152c841b695bbd23fa4a4ad408243464fe data/create/recipes/cutting/compat/byg/green_enchanted_log.json +16b991e08d10fe32b93d987113c12dc9568517c3 data/create/recipes/cutting/compat/byg/green_enchanted_wood.json +65d3c6f12bd86be2060487adce703896c596207d data/create/recipes/cutting/compat/byg/holly_log.json +6ccd44a9607d8ac1b34896f6b0f427865a18a447 data/create/recipes/cutting/compat/byg/holly_wood.json +47dd1a429986a790a418c97f56884fa19dcbc74e data/create/recipes/cutting/compat/byg/imparius_hyphae.json +a24ac854f3b3ebf57bea9ebd58fd9655fed8e922 data/create/recipes/cutting/compat/byg/imparius_stem.json +6152e117579369ae3388f6f458331a6747a83272 data/create/recipes/cutting/compat/byg/jacaranda_log.json +3e58caf860dfa0432bad58aae44d5713264010da data/create/recipes/cutting/compat/byg/jacaranda_wood.json +58c4d750ed6a08f30908c7508106a224c2047de8 data/create/recipes/cutting/compat/byg/lament_log.json +d93f6deefd5bcf4d91242534d9b588fa2ab1a7de data/create/recipes/cutting/compat/byg/lament_wood.json +6f3a120fae7fdcc98a416185107381a6caf739b0 data/create/recipes/cutting/compat/byg/mahogany_log.json +19cf897802135c3ebdf68f6e2bc41f3cf8d0ddb0 data/create/recipes/cutting/compat/byg/mahogany_wood.json +d13e02245ca4acd0c4c4d38359eddf3b22fcff7f data/create/recipes/cutting/compat/byg/maple_log.json +9c947dd9fb94709b481daa3ec5156b227b061cdd data/create/recipes/cutting/compat/byg/maple_wood.json +f25cdfa7c0ff0d9c0bfb8fd4c678d1ad61d6f755 data/create/recipes/cutting/compat/byg/nightshade_log.json +7b58e103b01afc4b730b5b3f71cb9fd893427916 data/create/recipes/cutting/compat/byg/nightshade_wood.json +ab8cd4e768bb4b6945498249f9d5302909de199e data/create/recipes/cutting/compat/byg/palm_log.json +c446697efd034229fb5334af83f75b6418806074 data/create/recipes/cutting/compat/byg/palm_wood.json +476fceb3e5b0284125de9c53227e318e1025ca63 data/create/recipes/cutting/compat/byg/palo_verde_log.json +bb3f841b52b75cd14aa5ea82f1459f2a7b234c36 data/create/recipes/cutting/compat/byg/palo_verde_wood.json +eeb2e2db22875cfe74b30f834637dd74006bde5d data/create/recipes/cutting/compat/byg/pine_log.json +911a25900b077a512dc59331055b06481944f207 data/create/recipes/cutting/compat/byg/pine_wood.json +4ca5a84e9f098c9a935b1321fca795f6fcccd0f9 data/create/recipes/cutting/compat/byg/rainbow_eucalyptus_log.json +5735995aa9f0717817b819268e3885ac6f7ed1e0 data/create/recipes/cutting/compat/byg/rainbow_eucalyptus_wood.json +28823f07067a1df8f152d6c1ddeeae8e61bf47eb data/create/recipes/cutting/compat/byg/redwood_log.json +dbd5003c9b08a7794b0aeac2eb1e0996f00de73f data/create/recipes/cutting/compat/byg/redwood_wood.json +0a25e874ba7b36357a6d4172eb74af363db339cb data/create/recipes/cutting/compat/byg/skyris_log.json +0ff912a98f11fdeee6f5ad34f36c591ce944b1cf data/create/recipes/cutting/compat/byg/skyris_wood.json +201ef4c331f3083cf2272ce1bf3aacbd76d91c54 data/create/recipes/cutting/compat/byg/stripped_aspen_log.json +cc9d820a5d2a987494884a682d9648dfcbfb1055 data/create/recipes/cutting/compat/byg/stripped_aspen_wood.json +a844fac33edd99c0f166f17cd493c4c01ffe1d35 data/create/recipes/cutting/compat/byg/stripped_baobab_log.json +bb1d318dbfb3deada9db8c5c679977684468b60f data/create/recipes/cutting/compat/byg/stripped_baobab_wood.json +fec45c1d4084c9de211876a3fd313313c18920b2 data/create/recipes/cutting/compat/byg/stripped_blue_enchanted_log.json +608a3d0bb5ca12e95141016099085821e47f4e98 data/create/recipes/cutting/compat/byg/stripped_blue_enchanted_wood.json +087dd3a1c516f9db9729974781bc68e13ff4b3de data/create/recipes/cutting/compat/byg/stripped_bulbis_stem.json +f45c17bea93fc15f10b0c135ebf334a41a2e68d2 data/create/recipes/cutting/compat/byg/stripped_bulbis_wood.json +4187543812af8be22977b2b503ffb16ff82e38e6 data/create/recipes/cutting/compat/byg/stripped_cika_log.json +72c90971b638693cf7425ff59530672f37433b52 data/create/recipes/cutting/compat/byg/stripped_cika_wood.json +c66c179d9989be618909104ba8e0f399ca34a630 data/create/recipes/cutting/compat/byg/stripped_cypress_log.json +0dbf97db4afd35580faadb6d5964ef9098438ac4 data/create/recipes/cutting/compat/byg/stripped_cypress_wood.json +944b0993af3591956df6c2c5cd7fd08643c2dccb data/create/recipes/cutting/compat/byg/stripped_ebony_log.json +ee3de122e8ff85f1eda9a1834e3c19eef1250685 data/create/recipes/cutting/compat/byg/stripped_ebony_wood.json +e64357b673fe4f983e9547305f8f95272e8b8b77 data/create/recipes/cutting/compat/byg/stripped_ether_log.json +c2ecdaadf564d496ab679b38356ce9614237668b data/create/recipes/cutting/compat/byg/stripped_ether_wood.json +a267fc6425816b6bc01396221470e0814e6bd942 data/create/recipes/cutting/compat/byg/stripped_fir_log.json +b7647e89ee29a4e116c49c1ae419d3d053608017 data/create/recipes/cutting/compat/byg/stripped_fir_wood.json +3b0e0a3a91e8f19b2f48f53044a2e3d5479578a3 data/create/recipes/cutting/compat/byg/stripped_green_enchanted_log.json +1406357c702c4d82f372e4f1a837591586faff97 data/create/recipes/cutting/compat/byg/stripped_green_enchanted_wood.json +2772e21459b48648f3c54b82243994f38a691c84 data/create/recipes/cutting/compat/byg/stripped_holly_log.json +46b523df1967aca55cc9f9763016bcd6133a3cb8 data/create/recipes/cutting/compat/byg/stripped_holly_wood.json +0b4b05df393e5e0bda59877b9f9048b7c510043d data/create/recipes/cutting/compat/byg/stripped_jacaranda_log.json +503bc3dcefeee34b91527eeb61a6ebd50d678fbd data/create/recipes/cutting/compat/byg/stripped_jacaranda_wood.json +4fbaedf8e7a601f592c6c671de6435b52c44b6d4 data/create/recipes/cutting/compat/byg/stripped_lament_log.json +0b4478eba4e2d9bd835d9ad91dcf2eccfc538f12 data/create/recipes/cutting/compat/byg/stripped_lament_wood.json +3550d5eb7f8eab95f4dd840d72cc14dea7acdb67 data/create/recipes/cutting/compat/byg/stripped_mahogany_log.json +d66b3e69b6bcf38a9d01fc9290b81778b46459f0 data/create/recipes/cutting/compat/byg/stripped_mahogany_wood.json +4778e5d9e1b5a5d254483dedf9cf22cbda73ca2d data/create/recipes/cutting/compat/byg/stripped_maple_log.json +18b5f67be3d28bc6c8764d2ad576f16745d95109 data/create/recipes/cutting/compat/byg/stripped_maple_wood.json +1446329655130e0cf0f0da7c1c17f517bbfb9d79 data/create/recipes/cutting/compat/byg/stripped_nightshade_log.json +c1ddc415556ebf6c6b518d3dc1c54f389ecc6ca9 data/create/recipes/cutting/compat/byg/stripped_nightshade_wood.json +cc7a000cf42f792912531e83f00cc694bf47d0ee data/create/recipes/cutting/compat/byg/stripped_palm_log.json +6ad7a35bfef1334a0566496f9a4658c4213db72e data/create/recipes/cutting/compat/byg/stripped_palm_wood.json +1ac1701b9779eb875b371a3e8742b1de203a0339 data/create/recipes/cutting/compat/byg/stripped_pine_log.json +9be87d49f1f20967d115c842d551cbcfe813fe50 data/create/recipes/cutting/compat/byg/stripped_pine_wood.json +39bda1670d29736ae18a72115b5525e2b54b26c2 data/create/recipes/cutting/compat/byg/stripped_rainbow_eucalyptus_log.json +da8e26696706d6a0c5af520bcde6246f463a6e7d data/create/recipes/cutting/compat/byg/stripped_rainbow_eucalyptus_wood.json +b2720a4858848f941e264a8f78653477d7283403 data/create/recipes/cutting/compat/byg/stripped_redwood_log.json +ff3707171e4422b08b6eb9b9bf6a1a4bdffdbe16 data/create/recipes/cutting/compat/byg/stripped_redwood_wood.json +a72ab3e1f450e11903d403ede28ac1395c360d2e data/create/recipes/cutting/compat/byg/stripped_skyris_log.json +096b56116fe9c02005e68c84c15d7ba4c590572a data/create/recipes/cutting/compat/byg/stripped_skyris_wood.json +b6f1b9584cb32d329023815be6b3df8e17dbcf0b data/create/recipes/cutting/compat/byg/stripped_willow_log.json +8925bfb2575712dd3abc306b64bafd93d168dd3b data/create/recipes/cutting/compat/byg/stripped_willow_wood.json +03bda6ad269d122e39adb211b1f3a8ed1ba11eb9 data/create/recipes/cutting/compat/byg/stripped_witch_hazel_log.json +03865937f2c740871024d8bd51ef5e07567f1c3d data/create/recipes/cutting/compat/byg/stripped_witch_hazel_wood.json +611bed180fa9ec6fa5e7cc3e8958836c2fb24489 data/create/recipes/cutting/compat/byg/stripped_zelkova_log.json +f4283de13917784d85c0ba84f68424ec8b69545f data/create/recipes/cutting/compat/byg/stripped_zelkova_wood.json +667d33f61cb4c5f5d204169c9e3adf11154bdfc2 data/create/recipes/cutting/compat/byg/willow_log.json +53f2571f67a1991676981a239875814d99f62e6c data/create/recipes/cutting/compat/byg/willow_wood.json +73e9929c94048d2fa4646dc92eaf02cc0f2b71da data/create/recipes/cutting/compat/byg/witch_hazel_log.json +88b328cf0c0a02f296056abb423e4f3745e5ab4d data/create/recipes/cutting/compat/byg/witch_hazel_wood.json +31a331b2294c726f0e6b4573b1db14c2423116b2 data/create/recipes/cutting/compat/byg/zelkova_log.json +f249713773128375a0869a8df3205b384e2b54f4 data/create/recipes/cutting/compat/byg/zelkova_wood.json +363da3d703f57ccac27632b573734a940799374b data/create/recipes/cutting/compat/ecologics/azalea_log.json +052c45bc088143aae8508af521a8f91a2c263459 data/create/recipes/cutting/compat/ecologics/azalea_wood.json +10b5a67570271c02e12d3d46e48c2ed8fe2fd2fb data/create/recipes/cutting/compat/ecologics/coconut_log.json +8d34f87daf269250af59bae242322bc869017d84 data/create/recipes/cutting/compat/ecologics/coconut_wood.json +bec2975b6e10bb12261feb952e8e7cd6e0019619 data/create/recipes/cutting/compat/ecologics/flowering_azalea_log.json +701a522dbdfab4a7772b0f8dd5d9759ce24052e3 data/create/recipes/cutting/compat/ecologics/flowering_azalea_wood.json +b12bab3ed019328ce83f64b828b366b72503e823 data/create/recipes/cutting/compat/ecologics/stripped_azalea_log.json +2a5d12c6b39847533e6940931ad201e6924aae38 data/create/recipes/cutting/compat/ecologics/stripped_azalea_wood.json +37a3e9f0220b51d51250fe6febb7348858f0e8b5 data/create/recipes/cutting/compat/ecologics/stripped_coconut_log.json +e2308624a37abc099e2349456afa1c4064b02fdb data/create/recipes/cutting/compat/ecologics/stripped_coconut_wood.json +c6b1455c29d3bd0ff387edad10328ba4dd8b7f44 data/create/recipes/cutting/compat/ecologics/stripped_walnut_log.json +0026f35ef1445df9c3bb83bdfe25898cceffd5e4 data/create/recipes/cutting/compat/ecologics/stripped_walnut_wood.json +e4c5b799335a71a4259de6519ff9fe86fc014c85 data/create/recipes/cutting/compat/ecologics/walnut_log.json +45734ddd48ac17b25b88cf1f5b0d227431946cf7 data/create/recipes/cutting/compat/ecologics/walnut_wood.json +b0be23a2a268557b1ab26518a9d6ff1e492068fa data/create/recipes/cutting/compat/endergetic/poise_stem.json +1581ae3f152ba5784d6b737ed37e0fe8e6317a76 data/create/recipes/cutting/compat/endergetic/stripped_poise_stem.json +513c32af17004085c152de0c50ecdc0821ad5736 data/create/recipes/cutting/compat/environmental/cherry_log.json +dd7f392a18fa58dbcd02e1700a89d847ef912f6a data/create/recipes/cutting/compat/environmental/cherry_wood.json +bb5be6efdf3a134baed80179e9f65a5e9402e001 data/create/recipes/cutting/compat/environmental/stripped_cherry_log.json +8938bac54128e55540b9061333cebadb615c5531 data/create/recipes/cutting/compat/environmental/stripped_cherry_wood.json +962dd25663096fe3883f0aa5a89cea00c312625a data/create/recipes/cutting/compat/environmental/stripped_willow_log.json +ee28f2a0519c41df80647ec643d20b3ce05d5ca7 data/create/recipes/cutting/compat/environmental/stripped_willow_wood.json +bfa59f4024105be24f441ec9e1fe2394bb4c32ed data/create/recipes/cutting/compat/environmental/stripped_wisteria_log.json +15cb849317c8038750000708c93cce535d7662e5 data/create/recipes/cutting/compat/environmental/stripped_wisteria_wood.json +9c9b4b63d736e9bef583e3e3085df9547bee1ad3 data/create/recipes/cutting/compat/environmental/willow_log.json +6a6b47c7c058fe67ea0f0f479145e0e921fcd571 data/create/recipes/cutting/compat/environmental/willow_wood.json +590fa0d5dbc357c4d22f7e79f94365c50ca1c812 data/create/recipes/cutting/compat/environmental/wisteria_log.json +62b927056738fbbbb1ceb7b2b3f23e45c94cdd1b data/create/recipes/cutting/compat/environmental/wisteria_wood.json +97d07cbd21b147d93cbfea6534258f0b5faabbbb data/create/recipes/cutting/compat/forbidden_arcanus/aurum_log.json +b08980c7deb9a4de4983fdae188f0c5ac627c1e5 data/create/recipes/cutting/compat/forbidden_arcanus/aurum_wood.json +47902025354c45f34fa62402fc5f32db6648a7c3 data/create/recipes/cutting/compat/forbidden_arcanus/stripped_aurum_log.json +f8f97315cfcd7e76229b9856ca6b2942bd7754f5 data/create/recipes/cutting/compat/forbidden_arcanus/stripped_aurum_wood.json +c6e138b6adf0311deebeff7cacdcdb57337f41da data/create/recipes/cutting/compat/goodending/cypress_log.json +cac6d3d763a3909d9a1f3eebe83190013e323e8a data/create/recipes/cutting/compat/goodending/cypress_wood.json +a3664dc30807cbc7903f79944bfb9b7d08a91671 data/create/recipes/cutting/compat/goodending/muddy_oak_log.json +c0bde27c6ff867dbfe7bea538bce82ddd12d4fea data/create/recipes/cutting/compat/goodending/muddy_oak_wood.json +eb749011e1c688f2005a63eb9953d29c6287eae4 data/create/recipes/cutting/compat/goodending/stripped_cypress_log.json +228632291f42fb47b73a6e3058a27475d97c20f1 data/create/recipes/cutting/compat/goodending/stripped_cypress_wood.json +c9e3c6e1b591822283f4436c70a52ce27034e8cf data/create/recipes/cutting/compat/goodending/stripped_muddy_oak_log.json +f6cabdcbdb8aeffb03228bf65183bbec5aaba182 data/create/recipes/cutting/compat/goodending/stripped_muddy_oak_wood.json +3a9be23a966c2737c5059474c17a86566bc5505f data/create/recipes/cutting/compat/hexcasting/edified_log.json +3f3879c426acb1753f2985ed19f0a905bdbd3797 data/create/recipes/cutting/compat/hexcasting/edified_wood.json +68d80d00d15d6ad14100025eecbd76c1fa8e3a52 data/create/recipes/cutting/compat/hexcasting/stripped_edified_log.json +9e665be213a1eca08df0dcf38766d2ce3a76de8a data/create/recipes/cutting/compat/hexcasting/stripped_edified_wood.json +f87872a26b790bd29abfc036486474c5db8ee518 data/create/recipes/cutting/compat/integrateddynamics/menril_log.json +cd568df5168a0cfccbdaaf767ec63d71871ba3ba data/create/recipes/cutting/compat/integrateddynamics/menril_log_stripped.json +b5573785c73cbf3b2c2bd096bb0a12b054819b74 data/create/recipes/cutting/compat/integrateddynamics/menril_wood.json +ebca8e98bca0a5c8926c4aa5b197d5d436e2e00b data/create/recipes/cutting/compat/integrateddynamics/menril_wood_stripped.json +1b91f83f2c6e4c6087abc7a136478027b2c7092d data/create/recipes/cutting/compat/nethers_exoticism/jabuticaba_log.json +5f074e7d51d851e95469a234666485ae1f913731 data/create/recipes/cutting/compat/nethers_exoticism/ramboutan_log.json +d8ea31f8eac026d99a26ab200eeca6faee064d9c data/create/recipes/cutting/compat/nethers_exoticism/ramboutan_wood.json +536ed770010fcf8ba56f6333d58fa09b974b95c4 data/create/recipes/cutting/compat/nethers_exoticism/stripped_jabuticaba_log.json +8c84afc4870ff5c8d936dd1363e18531f27c6233 data/create/recipes/cutting/compat/nethers_exoticism/stripped_ramboutan_log.json +4119174e4e7126b66d05e78e7415558a31ba6540 data/create/recipes/cutting/compat/nethers_exoticism/stripped_ramboutan_wood.json +5a8b70f884741f155924174f8f8911574a782928 data/create/recipes/cutting/compat/quark/ancient_log.json +0b6953e5fd8f5d248f5327a8775e4e30a355ca49 data/create/recipes/cutting/compat/quark/ancient_wood.json +a0194f77f72349786f6b87e641c9628f7fe46fdf data/create/recipes/cutting/compat/quark/azalea_log.json +17daa6e2505ae75e51def1f1523f9d6f120de696 data/create/recipes/cutting/compat/quark/azalea_wood.json +118122fbd3154c0090768d9103e802d2e68b3f06 data/create/recipes/cutting/compat/quark/blossom_log.json +57b23b572f4d75bb39f7f84277f0a0a4e6be992b data/create/recipes/cutting/compat/quark/blossom_wood.json +d36666b83bf934aabd20aac182c4863de693903e data/create/recipes/cutting/compat/quark/stripped_ancient_log.json +a666d4c2d54acfa924eeef535415b993d40ca015 data/create/recipes/cutting/compat/quark/stripped_ancient_wood.json +e05b81a5609420153b3ecace758a153bd88a4bef data/create/recipes/cutting/compat/quark/stripped_azalea_log.json +f820204e8d99f21203b001da23e8b44cf61e33e2 data/create/recipes/cutting/compat/quark/stripped_azalea_wood.json +af71513af8de414036ff73fee0eaca4b823de99c data/create/recipes/cutting/compat/quark/stripped_blossom_log.json +071c8a562233a342875c9cdd392bbebfe719e321 data/create/recipes/cutting/compat/quark/stripped_blossom_wood.json +9fe1249c4b24d82699829f1e8f3dc19de791dbd1 data/create/recipes/cutting/compat/regions_unexplored/alpha_log.json +27585fe96d7e211e4469c437c82c89c1268cf0bf data/create/recipes/cutting/compat/regions_unexplored/ashen_log.json +bf04910ca9246aec3146eff28bc7d5d778c5d6d4 data/create/recipes/cutting/compat/regions_unexplored/ashen_wood.json +371e7f6a13a45006c21837847999e6e1b69e6320 data/create/recipes/cutting/compat/regions_unexplored/baobab_log.json +2cadb9f9d714f8668291122519a73458d6e6afdb data/create/recipes/cutting/compat/regions_unexplored/baobab_wood.json +f124b677daea80e9efdcb58451442403f79ecc59 data/create/recipes/cutting/compat/regions_unexplored/blackwood_log.json +809aba67a96fcf9766c4278697ddfbd89ff63db1 data/create/recipes/cutting/compat/regions_unexplored/blackwood_wood.json +d6263c38f2a54be9310530cfd5f23aaddda0dbca data/create/recipes/cutting/compat/regions_unexplored/blue_bioshroom_hyphae.json +3904212da6e2eb60c453520a44eb22d33fc1c128 data/create/recipes/cutting/compat/regions_unexplored/blue_bioshroom_stem.json +780ddd7800cc138177752ee965ccd7cad8e53c6e data/create/recipes/cutting/compat/regions_unexplored/brimwood_log.json +15ca75b81a207a347e06c730da7afa106714b9ed data/create/recipes/cutting/compat/regions_unexplored/brimwood_log_magma.json +44d643b1724377c9019436f6927b0e1c2de63a42 data/create/recipes/cutting/compat/regions_unexplored/brimwood_wood.json +d449dc8b30400627cb509b0bcdc6b63bbb595172 data/create/recipes/cutting/compat/regions_unexplored/cobalt_log.json +7ff17654f134c7c13f6008619b76b4e19751728c data/create/recipes/cutting/compat/regions_unexplored/cobalt_wood.json +8446d9a9b3ff0140c64d549e33f9f5718fdcceb6 data/create/recipes/cutting/compat/regions_unexplored/cypress_log.json +620d71dee83ac1aa16d30c1b4833e15f00a04208 data/create/recipes/cutting/compat/regions_unexplored/cypress_wood.json +0fa6e6ac5c19c8660111c07b13f0d82cf339910b data/create/recipes/cutting/compat/regions_unexplored/dead_log.json +30a08ae6222bebf4c6fbfc5801ccc30b5d01e417 data/create/recipes/cutting/compat/regions_unexplored/dead_wood.json +696b5f3eb788a5ab8dc35f91ffbc575d987af4b1 data/create/recipes/cutting/compat/regions_unexplored/eucalyptus_log.json +641e17384aa1ed504157ee8b4c3bf839f864199c data/create/recipes/cutting/compat/regions_unexplored/eucalyptus_wood.json +e8b754d24ae46631a97ffa6b15f4676768c4e219 data/create/recipes/cutting/compat/regions_unexplored/green_bioshroom_hyphae.json +3401ba3b7c8fa6023566e99532f035e4d78463ea data/create/recipes/cutting/compat/regions_unexplored/green_bioshroom_stem.json +0e2885c8819270dd0ea9b423eb17aabce17f50b6 data/create/recipes/cutting/compat/regions_unexplored/joshua_log.json +fd296307a65df37d2c952b3de9e79234b36c8bf8 data/create/recipes/cutting/compat/regions_unexplored/joshua_wood.json +b063c34700782af4ba8e5b353faa93a6af63e133 data/create/recipes/cutting/compat/regions_unexplored/kapok_log.json +44375fea18ff6312a05eb4948cf23916cad31bb7 data/create/recipes/cutting/compat/regions_unexplored/kapok_wood.json +74e328e600a2ce311638acf6b0cda2dca7e689bd data/create/recipes/cutting/compat/regions_unexplored/larch_log.json +519d0a467bafd51425e588c1452b326485ac504a data/create/recipes/cutting/compat/regions_unexplored/larch_wood.json +9d8f4845c835ba07d4f1f0f07b8d9ed39fb3514a data/create/recipes/cutting/compat/regions_unexplored/magnolia_log.json +4b367599792101bd5403aba96e973748fc91e8cf data/create/recipes/cutting/compat/regions_unexplored/magnolia_wood.json +caaefb19635f7fbec31d87d7ef40172c25e48b72 data/create/recipes/cutting/compat/regions_unexplored/maple_log.json +b8731d1b36bac59a519a496ce5253595be58ca57 data/create/recipes/cutting/compat/regions_unexplored/maple_wood.json +3cb94f34a0318442ea3a9225366587bf1aa0a01a data/create/recipes/cutting/compat/regions_unexplored/mauve_log.json +587727f7998dd25ee3441aa6f0ed1736262b8a55 data/create/recipes/cutting/compat/regions_unexplored/mauve_wood.json +aecbe7b08f8374331f976434daff89c4e4922efd data/create/recipes/cutting/compat/regions_unexplored/palm_log.json +3a83e8d7cac67638b76a8b30d469faaae71e9d6a data/create/recipes/cutting/compat/regions_unexplored/palm_wood.json +40b46cba392e02498406b90536b8da540df0eb76 data/create/recipes/cutting/compat/regions_unexplored/pine_log.json +9fe88b00cb4c42ed5677f46bccdf2c05fd085c5f data/create/recipes/cutting/compat/regions_unexplored/pine_wood.json +7a11eb2ede6e9d5f1284e6223c52465493901f79 data/create/recipes/cutting/compat/regions_unexplored/pink_bioshroom_hyphae.json +78fb2663e91d8f6494ff1348f2d83633e50713ee data/create/recipes/cutting/compat/regions_unexplored/pink_bioshroom_stem.json +eb7b75678cf8ae102eee91456bd8d4387acfb146 data/create/recipes/cutting/compat/regions_unexplored/redwood_log.json +d1da4369daa6c4fd16dfeff7551c218949e122d5 data/create/recipes/cutting/compat/regions_unexplored/redwood_wood.json +aa75d5f92d23fb24aece736145ac8372f6cff3f3 data/create/recipes/cutting/compat/regions_unexplored/silver_birch_log.json +3218231281a0afda1cef330a022e450efac18927 data/create/recipes/cutting/compat/regions_unexplored/silver_birch_wood.json +2002a66ac280b0a41679cb84422a591760fd88bc data/create/recipes/cutting/compat/regions_unexplored/socotra_log.json +de2954580e05806befc31b2d445577d3fae6ba47 data/create/recipes/cutting/compat/regions_unexplored/socotra_wood.json +7a3bf3bbdb5ff29682d60ac068ffa9f4bb423b34 data/create/recipes/cutting/compat/regions_unexplored/stripped_baobab_log.json +2c961586f828dca3a4107dc181e7e99ef7fecf7d data/create/recipes/cutting/compat/regions_unexplored/stripped_baobab_wood.json +497877a6e23c6f337f46e784e64f725e7507d98a data/create/recipes/cutting/compat/regions_unexplored/stripped_blackwood_log.json +092003ce37ad550040026e2913e9670f5c25169e data/create/recipes/cutting/compat/regions_unexplored/stripped_blackwood_wood.json +fa85fe2cf25bdfffb5bfcb0d7d2fc2733c8e2961 data/create/recipes/cutting/compat/regions_unexplored/stripped_blue_bioshroom_hyphae.json +68b7452484be51a5ca9e1f5daa5ef960e84c4a24 data/create/recipes/cutting/compat/regions_unexplored/stripped_blue_bioshroom_stem.json +25793b4b9d6bd7222da6e49c59a134f36c708d2b data/create/recipes/cutting/compat/regions_unexplored/stripped_brimwood_log.json +cec8ba2be437e8e50f18277dd7464cb5a51783c6 data/create/recipes/cutting/compat/regions_unexplored/stripped_brimwood_wood.json +d131167166b5eaabc2b116920693399624cc969c data/create/recipes/cutting/compat/regions_unexplored/stripped_cobalt_log.json +eb2300ca83bcffaf96fb192cd8f5f6be6ce4d1a5 data/create/recipes/cutting/compat/regions_unexplored/stripped_cobalt_wood.json +2bde40143b3b9e400f3e921dd74100f6e4c2febf data/create/recipes/cutting/compat/regions_unexplored/stripped_cypress_log.json +7dd7b4e0478e42f4141a384f5f5db3d24c6256ba data/create/recipes/cutting/compat/regions_unexplored/stripped_cypress_wood.json +55992382313212af1448785769cb98272736f913 data/create/recipes/cutting/compat/regions_unexplored/stripped_dead_log.json +b1808c9c2afea6f77cbc008d89a0d98c0baacb5b data/create/recipes/cutting/compat/regions_unexplored/stripped_dead_wood.json +4af8a646e1cda8e7cfb54d848af04bcd071cb742 data/create/recipes/cutting/compat/regions_unexplored/stripped_eucalyptus_log.json +892f2b15212cdd1ab5aa94bdced37c8ecd502fad data/create/recipes/cutting/compat/regions_unexplored/stripped_eucalyptus_wood.json +a0b555a70b9c45671175ea9d67c7f9bb6291ce39 data/create/recipes/cutting/compat/regions_unexplored/stripped_green_bioshroom_hyphae.json +0b361b9f1b0fffb0934f347e93e01f7f99c8c598 data/create/recipes/cutting/compat/regions_unexplored/stripped_green_bioshroom_stem.json +7887134005361356b59e3e8f79f747461aa90967 data/create/recipes/cutting/compat/regions_unexplored/stripped_joshua_log.json +12bcc42d67c110b7b57a2c15bfd184a7c8d5ced3 data/create/recipes/cutting/compat/regions_unexplored/stripped_joshua_wood.json +9c192bac86ada1020093ec7a38bae39f890f6867 data/create/recipes/cutting/compat/regions_unexplored/stripped_kapok_log.json +5cf8658dec167a5eae2555e231d86c6dee1e9f86 data/create/recipes/cutting/compat/regions_unexplored/stripped_kapok_wood.json +9b9d6b4ff28a9ee9d38e8ff7e2f66c5d741792d1 data/create/recipes/cutting/compat/regions_unexplored/stripped_larch_log.json +477187045049395be4b50747e70b8682bf627745 data/create/recipes/cutting/compat/regions_unexplored/stripped_larch_wood.json +9444611d488463cf40113a522c0125bcc901f59d data/create/recipes/cutting/compat/regions_unexplored/stripped_magnolia_log.json +c7093db236a350421fb1963233472c8d7b09407b data/create/recipes/cutting/compat/regions_unexplored/stripped_magnolia_wood.json +6ba2945063856e34dfde713c8b6caf9bcd0b59ad data/create/recipes/cutting/compat/regions_unexplored/stripped_maple_log.json +cb536b2a2638a6e378423c2ea2a3c8785f6fc7c7 data/create/recipes/cutting/compat/regions_unexplored/stripped_maple_wood.json +3ff0ebc63da709a8f4958b7439cf9a88c4f9a349 data/create/recipes/cutting/compat/regions_unexplored/stripped_mauve_log.json +a274dadaba1e1f489e7b531ac4eb02e808fc4f01 data/create/recipes/cutting/compat/regions_unexplored/stripped_mauve_wood.json +626e2bb1d62ab57bcadf3732491a6a1efd249035 data/create/recipes/cutting/compat/regions_unexplored/stripped_palm_log.json +50dee41bd5c412aa444a2fcc5c3d7638ab01133d data/create/recipes/cutting/compat/regions_unexplored/stripped_palm_wood.json +9270af6499ef6e5c0e097bee06637a518d3a83d7 data/create/recipes/cutting/compat/regions_unexplored/stripped_pine_log.json +58c10356ba51c77959e8f66f83e178d20cec097b data/create/recipes/cutting/compat/regions_unexplored/stripped_pine_wood.json +01b11c8a041883e21d5374b8afdef2fa47a55aee data/create/recipes/cutting/compat/regions_unexplored/stripped_pink_bioshroom_hyphae.json +0c4826e7e49e2cc704627235c2f1c8fab604019f data/create/recipes/cutting/compat/regions_unexplored/stripped_pink_bioshroom_stem.json +1177ce8821f01c08ab918ea24ea33b61cbd733cf data/create/recipes/cutting/compat/regions_unexplored/stripped_redwood_log.json +af8789a2a697cd2118d6809100a0c04d4c74794e data/create/recipes/cutting/compat/regions_unexplored/stripped_redwood_wood.json +4e441e9502ba4be4fc1c0da98bb53af30f366d1f data/create/recipes/cutting/compat/regions_unexplored/stripped_socotra_log.json +3f93dd9538e68c9b1482c41d531c359e6b144914 data/create/recipes/cutting/compat/regions_unexplored/stripped_socotra_wood.json +bcba754ec947af79701a5ffb0e64ff7a7ff92a09 data/create/recipes/cutting/compat/regions_unexplored/stripped_willow_log.json +f104dc175e416d675e358e6601442c09c356858e data/create/recipes/cutting/compat/regions_unexplored/stripped_willow_wood.json +6c4a98aa0396f330924d5be6a1fb7c1123c5d236 data/create/recipes/cutting/compat/regions_unexplored/stripped_yellow_bioshroom_hyphae.json +b1440d5254bf8dc5b619a7d871f2c51511498184 data/create/recipes/cutting/compat/regions_unexplored/stripped_yellow_bioshroom_stem.json +54ed3844da6abdf55939f1d3ed42394c55ce57c5 data/create/recipes/cutting/compat/regions_unexplored/willow_log.json +d0419337ab011df3685a6fea849c17904a03f2d7 data/create/recipes/cutting/compat/regions_unexplored/willow_wood.json +365f090b94466b7695e7beb7d0fc7b7e084e636c data/create/recipes/cutting/compat/regions_unexplored/yellow_bioshroom_hyphae.json +22d48a8e9cf5a566bbc566a92e6bf9762a33586a data/create/recipes/cutting/compat/regions_unexplored/yellow_bioshroom_stem.json +8a9e25c2c196ab94c9e7b5fcb2cf27bc161a8d1c data/create/recipes/cutting/compat/silentgear/netherwood_log.json +9e869a4b7bbb08fefa140292f0cb0806a795fc59 data/create/recipes/cutting/compat/silentgear/netherwood_wood.json +d9cdc0eb674cdf08963ac8f97ee6a7ea2f99e779 data/create/recipes/cutting/compat/silentgear/stripped_netherwood_log.json +071ed83f5ce7f15688e95a1bf33142061ec4aa22 data/create/recipes/cutting/compat/silentgear/stripped_netherwood_wood.json +b2ced0a8d2f9e610ccca5c849bf460492d5fa568 data/create/recipes/cutting/compat/tconstruct/bloodshroom_log.json +9a3551fe7a74cbf4107fa4b26eb2b92a4f19dc44 data/create/recipes/cutting/compat/tconstruct/bloodshroom_wood.json +2a8f39581c635bb98ab437fb48796505df99cfec data/create/recipes/cutting/compat/tconstruct/greenheart_log.json +c68a24ed72589e9427f60fbf8c33cbf8403297fa data/create/recipes/cutting/compat/tconstruct/greenheart_wood.json +4a548deea4a151fc1d58c81ab26bd30a61900864 data/create/recipes/cutting/compat/tconstruct/skyroot_log.json +763616da266a28b8c4b1a88df0ce87c6ce37367c data/create/recipes/cutting/compat/tconstruct/skyroot_wood.json +ad4a650ace874dab7f039e53afa0164de2601a05 data/create/recipes/cutting/compat/tconstruct/stripped_bloodshroom_log.json +fcda399dee09fd7b7f8486fe5000522a4211c6d2 data/create/recipes/cutting/compat/tconstruct/stripped_bloodshroom_wood.json +e7f542ab1523379f218d47c7365f1d3be41036b4 data/create/recipes/cutting/compat/tconstruct/stripped_greenheart_log.json +aaa2b8cde03e0141fc4ccd3702fcb0d13966b391 data/create/recipes/cutting/compat/tconstruct/stripped_greenheart_wood.json +dec7bfbdc2c974655110651365f701121370394a data/create/recipes/cutting/compat/tconstruct/stripped_skyroot_log.json +0486cee0f932eee89bb26c2fe5b0ed076d05d1be data/create/recipes/cutting/compat/tconstruct/stripped_skyroot_wood.json +0dcbd6c92adce8bc1fe8a1a6f4c21ad436d4852f data/create/recipes/cutting/compat/the_vault/chromatic_log.json +bb89e77d7cdb54b37434f65c1652112b14fcfcc7 data/create/recipes/cutting/compat/the_vault/driftwood_log.json +e7f497ec5ea4860147d5941df4b594526361886d data/create/recipes/cutting/compat/the_vault/overgrown_wooden_log.json +e04c07431e80d779b2bfdb1227d2b43896ead7f5 data/create/recipes/cutting/compat/the_vault/stripped_chromatic_log.json +e91c945669e5b838e28b73079be0218b7dbb438c data/create/recipes/cutting/compat/the_vault/stripped_driftwood_log.json +dcb888781e53a4bd13a39dc8dcf52d68c70daa11 data/create/recipes/cutting/compat/the_vault/stripped_overgrown_wooden_log.json +95824dae54de5c99be7f108882bb0add80d9f4f4 data/create/recipes/cutting/compat/the_vault/stripped_wooden_log.json +f43130d8c47dbfd21c89d519539e2d8b5437c108 data/create/recipes/cutting/compat/the_vault/wooden_log.json +9a2d7361718e64bf25c3660123ab9f506fad7dba data/create/recipes/cutting/compat/twilightforest/canopy_log.json +35f470c4fb8c1e651bcf8f161ebcaa0f9f888be2 data/create/recipes/cutting/compat/twilightforest/canopy_wood.json +02ef237d075e3033676e0229946c9c2bc9ae27e0 data/create/recipes/cutting/compat/twilightforest/dark_log.json +a032ee8a436f2f7efc993a6d791217d4096c55a9 data/create/recipes/cutting/compat/twilightforest/dark_wood.json +541b21973ffebe85f9e6c31879a46e60d29ec3ba data/create/recipes/cutting/compat/twilightforest/mangrove_log.json +7a8f8746a1d3851ed064138600439749fb619225 data/create/recipes/cutting/compat/twilightforest/mangrove_wood.json +f0018c0a0276f09c26a4ffa8dbff756e70e84af9 data/create/recipes/cutting/compat/twilightforest/mining_log.json +d6e04a2c5139229993067515749038519e664407 data/create/recipes/cutting/compat/twilightforest/mining_wood.json +d03b8d192ba433bd1660fee4cbac81b52b37b332 data/create/recipes/cutting/compat/twilightforest/sorting_log.json +acade83e3e155d869bb66a4c514eff14eaf43130 data/create/recipes/cutting/compat/twilightforest/sorting_wood.json +a819a899a63885169df3c5ff9a21981821154222 data/create/recipes/cutting/compat/twilightforest/stripped_canopy_log.json +cfa1a8b90368d788c29ef3ff57dafad780c29ca4 data/create/recipes/cutting/compat/twilightforest/stripped_canopy_wood.json +bbd6724c3e7b294620d148a283724847428e41ec data/create/recipes/cutting/compat/twilightforest/stripped_dark_log.json +31a5f34120e0fabe91e532e0e86d77a71c66139c data/create/recipes/cutting/compat/twilightforest/stripped_dark_wood.json +ef5428c754626c390bdc3bd5f0c4ceaae069259c data/create/recipes/cutting/compat/twilightforest/stripped_mangrove_log.json +4db7b6856995a1fcb3d4f019816607bf242c043a data/create/recipes/cutting/compat/twilightforest/stripped_mangrove_wood.json +49fd097bf3182fcdd2cf180dc333f7fe853b586c data/create/recipes/cutting/compat/twilightforest/stripped_mining_log.json +4f231e9c88cc7441a097effd59caca0ff8c7b291 data/create/recipes/cutting/compat/twilightforest/stripped_mining_wood.json +939d8b45db3554e7d9a6157ab13889606f5926ec data/create/recipes/cutting/compat/twilightforest/stripped_sorting_log.json +a4beff8b63bfcaef2e14fc74eaf991a2f0e09b09 data/create/recipes/cutting/compat/twilightforest/stripped_sorting_wood.json +1388f289e43aa0b7a4642af5fff252602dd274c4 data/create/recipes/cutting/compat/twilightforest/stripped_time_log.json +6f21b5b4c2d4aee61ac2d990fee1651def801a67 data/create/recipes/cutting/compat/twilightforest/stripped_time_wood.json +c7c462798f3935b300e0fbc1a616736276e13292 data/create/recipes/cutting/compat/twilightforest/stripped_transformation_log.json +4770650398d3787991fa0dde2274611e241ab330 data/create/recipes/cutting/compat/twilightforest/stripped_transformation_wood.json +d87200bda38ba06d6eaf732e05ba74110cb888e5 data/create/recipes/cutting/compat/twilightforest/stripped_twilight_oak_log.json +d1a18db626fb8c1ed4684e99154a73f1ba94c341 data/create/recipes/cutting/compat/twilightforest/stripped_twilight_oak_wood.json +bc6a18b90847c9e27a28c19a391fd343237f1788 data/create/recipes/cutting/compat/twilightforest/time_log.json +d9ea151935b7257f9a799be5959d736a20eabf44 data/create/recipes/cutting/compat/twilightforest/time_wood.json +917862f3314fd636f65ef8ca1826182cce386ee2 data/create/recipes/cutting/compat/twilightforest/transformation_log.json +29649f4c23ddc00eebe7352dcca0d4c695807c62 data/create/recipes/cutting/compat/twilightforest/transformation_wood.json +10227f5cf8a9995f7e59c509ad20a33f907a1203 data/create/recipes/cutting/compat/twilightforest/twilight_oak_log.json +60c949a998c4ffe6f838faf729ef9a7a247a59df data/create/recipes/cutting/compat/twilightforest/twilight_oak_wood.json +b6c3111236dea7685ed893a2ddab6bacbb606170 data/create/recipes/cutting/compat/upgrade_aquatic/driftwood.json +b86b4710a31b8ab98d3f61972fd0e3a80d1cb788 data/create/recipes/cutting/compat/upgrade_aquatic/driftwood_log.json +1a155ced39a05ccbaa1fcd57052c8acced381860 data/create/recipes/cutting/compat/upgrade_aquatic/river_log.json +9b29505252b5c529d86e24c9c53d1190e73537d7 data/create/recipes/cutting/compat/upgrade_aquatic/river_wood.json +1104de0e8917d4fa8e51b036b573ef54bfbc7980 data/create/recipes/cutting/compat/upgrade_aquatic/stripped_driftwood.json +3fd253db6046bd5276cac5aea203f5293a49f843 data/create/recipes/cutting/compat/upgrade_aquatic/stripped_driftwood_log.json +ab08c98c58c2beab4805d0576cac3874c4774553 data/create/recipes/cutting/compat/upgrade_aquatic/stripped_river_log.json +b368756fa5ec34fa279f53fb99aea8f47757828a data/create/recipes/cutting/compat/upgrade_aquatic/stripped_river_wood.json +2619c5f3916147bf13a21f986f1889a67f885d1b data/create/recipes/cutting/compat/windswept/chestnut_log.json +40068203261db20d74bd84fa8c9e9a6fa9fc4ef5 data/create/recipes/cutting/compat/windswept/chestnut_wood.json +70a5cf4ac9996f9f424c064fc39fab8901f5c71c data/create/recipes/cutting/compat/windswept/holly_log.json +28833896273e3da215da3dee4da13e43ac56aecf data/create/recipes/cutting/compat/windswept/holly_wood.json +0e20d4166a792d5beba3e3ca17beb61253ceb162 data/create/recipes/cutting/compat/windswept/stripped_chestnut_log.json +33de028562009de6bdccd54f5b3835b7bbfe06a7 data/create/recipes/cutting/compat/windswept/stripped_chestnut_wood.json +68ddfcd839417094d75e889ed42ea244d07e2c0f data/create/recipes/cutting/compat/windswept/stripped_holly_log.json +a22e7839d935d0aca9de371ba50d956e0cbfa137 data/create/recipes/cutting/compat/windswept/stripped_holly_wood.json +0a3c2e35782d54a28c3c60eae10bdd6247d5977f data/create/recipes/cutting/crimson_hyphae.json +cc4d09728d2407c0c972e696037d1b45db9a8bc2 data/create/recipes/cutting/crimson_stem.json +ebdf404a6de7880a42527c35727fa4214eb8cff3 data/create/recipes/cutting/dark_oak_log.json +5b3eab6a44b9c76e6317254214991128450c0cd7 data/create/recipes/cutting/dark_oak_wood.json +8dc8b46f4e75470466806da9d851db52a8166baf data/create/recipes/cutting/jungle_log.json +e34df7cc80df6139a0f77cd5f7b8b17b0abbffa9 data/create/recipes/cutting/jungle_wood.json +7f2d46fb9d896915469177e1647615de926cac08 data/create/recipes/cutting/mangrove_log.json +9f6520bfecff967456ca5c529810e1245e51bebd data/create/recipes/cutting/mangrove_wood.json +3617011bd39d6cdc5b9b326272d19df0b3510590 data/create/recipes/cutting/oak_log.json +554409e54c85164ae8e832208623f3400fd80750 data/create/recipes/cutting/oak_wood.json +0e67c6e6685d4b752b129456c607039a203d341a data/create/recipes/cutting/spruce_log.json +85cf63074b922696ea691cfbc2cf7c348d4e0977 data/create/recipes/cutting/spruce_wood.json +1e83972fa75e6cef279da72312ae0577e6b074a3 data/create/recipes/cutting/stripped_acacia_log.json +070aa9790369a368666c03bf1cea9643ed0e5bc7 data/create/recipes/cutting/stripped_acacia_wood.json +>>>>>>> ae0dea2d9 (feat: data compat for gardens_of_the_dead, undergarden, unusualend and deeperdarker) 558e81291da72b7f042b3b3270744b2c05ddc6fa data/create/recipes/cutting/stripped_bamboo_block.json 7a01147d3c7d8fb9acb870b33e5a792328f88c3c data/create/recipes/deploying/cogwheel.json 71823595ba3f587a0940125d87f2d33a99d317d8 data/create/recipes/deploying/copper_block_from_deoxidising.json @@ -299,6 +777,7 @@ b19f74374347bb123ad32b9d1bb680763467fe1d data/create/recipes/deploying/weathered 0b20bddac967edea53442c05c59ccf3306e9eb76 data/create/recipes/emptying/compat/alexsmobs/lava_bottle.json 5fb7e705b53ed84b607858be1db6a6d2765bea9c data/create/recipes/emptying/compat/farmersdelight/milk_bottle.json 054bd7804a710c498f605b82fd7d5055a4762829 data/create/recipes/emptying/compat/neapolitan/milk_bottle.json +28f9a5230d5753ddb91d790ad677724a064001eb data/create/recipes/emptying/compat/undergarden/virulent_mix_bucket.json ab35f7d885d8f2c8ccf562938ac804f6cb4c38ad data/create/recipes/emptying/honey_bottle.json b4e78bf89677ff211c9a740231836ae0598cf0d8 data/create/recipes/filling/blaze_cake.json aea7837e33bfcbdd1e0b4386372b6595fd00ad1d data/create/recipes/filling/builders_tea.json @@ -311,6 +790,7 @@ a48a8862847dab2a75f8e2710203ed5f7d00533e data/create/recipes/filling/compat/imme fd578bb1e05901d0b959b1f445273619b55cde57 data/create/recipes/filling/compat/neapolitan/milk_bottle.json 3f0f458c0c044c7b1c4e203d7394d890ba286d86 data/create/recipes/filling/compat/regions_unexplored/peat_grass_block.json ff16c74f09edbc67ed969f64270ca376bb8ea955 data/create/recipes/filling/compat/regions_unexplored/silt_grass_block.json +bc4e81e17325df94b3fd1ba1dc80a601b2b09631 data/create/recipes/filling/compat/undergarden/deepturf.json 364eba8060e0d685dda6e88713a4a5c74f02ffbd data/create/recipes/filling/compat/vampirism/cursed_grass.json 12c19b46eec5bd371300dfcff5d2a9dd7169bb1b data/create/recipes/filling/glowstone.json afeb566e5f989c58d239a2f66084ce3d813d111a data/create/recipes/filling/grass_block.json @@ -460,6 +940,10 @@ eb9606bbb2e4c6fb82b6607c8d5c23834d9e44a8 data/create/recipes/milling/compat/byg/ 1732969a11d677b825758f6c4af2cdbcdc365898 data/create/recipes/milling/compat/byg/winter_scilla.json 9266eaf6e2259fccb6e2aa57a9e19fc1faeb53fe data/create/recipes/milling/compat/byg/yellow_daffodil.json fda00f49b9a5758ee7d24f2aeab81a3cc690544a data/create/recipes/milling/compat/byg/yellow_tulip.json +7dd3899372857c7fd49a3a970f9dc3c25e41ee91 data/create/recipes/milling/compat/deeperdarker/gloomy_cactus.json +fbe6ffbdf4339b6a7871afae5b145530c63bb43c data/create/recipes/milling/compat/deeperdarker/glowing_flowers.json +e1bd0a8af4bd05b906da1206142bbc7dd7930a5f data/create/recipes/milling/compat/deeperdarker/lily_flower.json +1e44b3071341f4b6c999a8f0462e8fb9c8fe5855 data/create/recipes/milling/compat/deeperdarker/sculk_grime.json 2e6a7a1b0e8ab1d6e514a30a21d47b404cfdcd45 data/create/recipes/milling/compat/druidcraft/lavender.json 5be32cdd48cf7d9e3f8273fc3479d559070b9872 data/create/recipes/milling/compat/environmental/bird_of_paradise.json 102130e75ea8f2b8c99ad9641d293a4e588912cf data/create/recipes/milling/compat/environmental/bluebell.json @@ -478,6 +962,9 @@ c14ba9d30c2a111de9ffba9d3e6a6ca34f2e660c data/create/recipes/milling/compat/envi 15b94ea2ddabb3ac7cea57defae746d6c16e2932 data/create/recipes/milling/compat/environmental/white_delphinium.json 85fcaa71b40ff82c1ba73fc7a186a798af87c042 data/create/recipes/milling/compat/environmental/white_lotus_flower.json ffa08663414289ab1e6b9af09ac992cc8f4b5571 data/create/recipes/milling/compat/environmental/yellow_hibiscus.json +cd9e8861ceda000e34f64b93797dca28226c49ff data/create/recipes/milling/compat/gardens_of_the_dead/blistercrown.json +0472ae32a16202ddd2b073cad021138711040406 data/create/recipes/milling/compat/gardens_of_the_dead/glowing_soul_spore.json +cb5401caf1bb6acf67318d56c780242636bb846f data/create/recipes/milling/compat/gardens_of_the_dead/tall_blistercrown.json 582ed748a36073e5f6b2f20558a7d640ab204112 data/create/recipes/milling/compat/regions_unexplored/alpha_dandelion.json 08903c2ae46ed55b228f6e5d80e292832ed39996 data/create/recipes/milling/compat/regions_unexplored/alpha_rose.json 28a9a042217a6d2f33a8694a6765677a2d48acf1 data/create/recipes/milling/compat/regions_unexplored/aster.json @@ -524,6 +1011,23 @@ a23c2973e496cc3cc6f294c5d06e547c6696b9cf data/create/recipes/milling/compat/regi ad68b82791487bde56dd7e60ad99da72a67abd68 data/create/recipes/milling/compat/regions_unexplored/yellow_snowbelle.json e91fedfa7b5ae32a60ffb915b999e16de9f1ed66 data/create/recipes/milling/compat/supplementaries/flax.json 1476cbf643e972cb0c554081ada9b5d583aac6a9 data/create/recipes/milling/compat/tconstruct/nercotic_bone.json +46945bd2bc77da4f608f4f1019e6f6bfdb2de9ea data/create/recipes/milling/compat/undergarden/amorous_bristle.json +e5ba3bd2dc2339b21c935066e2d655b22d5da85f data/create/recipes/milling/compat/undergarden/butterbunch.json +0d4eee2fdd6766f4bf8506b211e2865b6f8f2907 data/create/recipes/milling/compat/undergarden/depthrock.json +3085241f56a0fc986a748464c27cf954446900ab data/create/recipes/milling/compat/undergarden/miserabell.json +6fa64dc9d7ddb942aa48d2cbd09aca89d8aa16ca data/create/recipes/milling/compat/undergarden/shimmerweed.json +4c4c37c0aa76403a6cdce04d5a5603eea2eacdd0 data/create/recipes/milling/compat/undergarden/tall_shimmerweed.json +11344959f08d8adccc5b2e7e380ca34162ee7df3 data/create/recipes/milling/compat/unusualend/chorus_roots.json +17256179b040f116b4be1de8f93cd9e5ee9fd839 data/create/recipes/milling/compat/unusualend/endstone_sprouts.json +5a871f9a10944a980a877ae2d850f0483e70ddfc data/create/recipes/milling/compat/unusualend/flowering_gloopy_pile.json +d917d231ac48c5373d55be3f16ef5fc191d7ca11 data/create/recipes/milling/compat/unusualend/flowering_purpr_grass.json +0aca02da4595554c74e9aac93068682a4f8eca9e data/create/recipes/milling/compat/unusualend/gloopy_bush.json +5289f74f11b0b732ebfc0deb8befd249495b9619 data/create/recipes/milling/compat/unusualend/gloopy_tendrils.json +202c508981689db798693585600012a8d1c96b61 data/create/recipes/milling/compat/unusualend/purper_grass.json +a1dec87b826a6d1698a40ae0459e6475f51a61a1 data/create/recipes/milling/compat/unusualend/shiny_spirea.json +d911b11484d8285c5e1e4b26cba1df0f961b1c30 data/create/recipes/milling/compat/unusualend/small_warped_algae.json +6bdbbc63610fad270a5e717313fd63360360b2c8 data/create/recipes/milling/compat/unusualend/warped_algae.json +1008ae63081dc9517d592bb8de3d9b35dad09bcc data/create/recipes/milling/compat/unusualend/warped_sprouts.json ddc4dbfef080def2e5f0a3a7e22f16b82dadc99a data/create/recipes/milling/compat/upgrade_aquatic/flowering_rush.json 77c588e4860fe29912b13b8d221c559141379d8a data/create/recipes/milling/compat/upgrade_aquatic/pink_searocket.json 04e638f5116c962884ca48efe6c113eecd2cf519 data/create/recipes/milling/compat/upgrade_aquatic/white_searocket.json diff --git a/src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_cloggrum_ore.json b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_cloggrum_ore.json new file mode 100644 index 0000000000..a187a5667e --- /dev/null +++ b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_cloggrum_ore.json @@ -0,0 +1,33 @@ +{ + "type": "create:crushing", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "undergarden" + } + ], + "ingredients": [ + { + "item": "undergarden:depthrock_cloggrum_ore" + } + ], + "processingTime": 350, + "results": [ + { + "count": 2, + "item": "undergarden:raw_cloggrum" + }, + { + "chance": 0.25, + "item": "undergarden:raw_cloggrum" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.125, + "item": "undergarden:depthrock" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_coal_ore.json b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_coal_ore.json new file mode 100644 index 0000000000..78218fd09f --- /dev/null +++ b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_coal_ore.json @@ -0,0 +1,33 @@ +{ + "type": "create:crushing", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "undergarden" + } + ], + "ingredients": [ + { + "item": "undergarden:depthrock_coal_ore" + } + ], + "processingTime": 300, + "results": [ + { + "count": 2, + "item": "minecraft:coal" + }, + { + "chance": 0.25, + "item": "minecraft:coal" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.125, + "item": "undergarden:depthrock" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_diamond_ore.json b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_diamond_ore.json new file mode 100644 index 0000000000..bef95b5275 --- /dev/null +++ b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_diamond_ore.json @@ -0,0 +1,33 @@ +{ + "type": "create:crushing", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "undergarden" + } + ], + "ingredients": [ + { + "item": "undergarden:depthrock_diamond_ore" + } + ], + "processingTime": 450, + "results": [ + { + "count": 2, + "item": "minecraft:diamond" + }, + { + "chance": 0.25, + "item": "minecraft:diamond" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.125, + "item": "undergarden:depthrock" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_gold_ore.json b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_gold_ore.json new file mode 100644 index 0000000000..3629c2c194 --- /dev/null +++ b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_gold_ore.json @@ -0,0 +1,34 @@ +{ + "type": "create:crushing", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "undergarden" + } + ], + "ingredients": [ + { + "item": "undergarden:depthrock_gold_ore" + } + ], + "processingTime": 350, + "results": [ + { + "count": 2, + "item": "create:crushed_raw_gold" + }, + { + "chance": 0.25, + "item": "create:crushed_raw_gold" + }, + { + "chance": 0.75, + "count": 2, + "item": "create:experience_nugget" + }, + { + "chance": 0.125, + "item": "undergarden:depthrock" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_iron_ore.json b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_iron_ore.json new file mode 100644 index 0000000000..dcaa7a033f --- /dev/null +++ b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_iron_ore.json @@ -0,0 +1,33 @@ +{ + "type": "create:crushing", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "undergarden" + } + ], + "ingredients": [ + { + "item": "undergarden:depthrock_iron_ore" + } + ], + "processingTime": 350, + "results": [ + { + "count": 2, + "item": "create:crushed_raw_iron" + }, + { + "chance": 0.25, + "item": "create:crushed_raw_iron" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.125, + "item": "undergarden:depthrock" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_regalium_ore.json b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_regalium_ore.json new file mode 100644 index 0000000000..dfc12916c7 --- /dev/null +++ b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_regalium_ore.json @@ -0,0 +1,34 @@ +{ + "type": "create:crushing", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "undergarden" + } + ], + "ingredients": [ + { + "item": "undergarden:depthrock_regalium_ore" + } + ], + "processingTime": 450, + "results": [ + { + "count": 2, + "item": "undergarden:regalium_crystal" + }, + { + "chance": 0.25, + "item": "undergarden:regalium_crystal" + }, + { + "chance": 0.75, + "count": 2, + "item": "create:experience_nugget" + }, + { + "chance": 0.125, + "item": "undergarden:depthrock" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_utherium_ore.json b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_utherium_ore.json new file mode 100644 index 0000000000..21265f5462 --- /dev/null +++ b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/depthrock_utherium_ore.json @@ -0,0 +1,33 @@ +{ + "type": "create:crushing", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "undergarden" + } + ], + "ingredients": [ + { + "item": "undergarden:depthrock_utherium_ore" + } + ], + "processingTime": 450, + "results": [ + { + "count": 2, + "item": "undergarden:utherium_crystal" + }, + { + "chance": 0.25, + "item": "undergarden:utherium_crystal" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.125, + "item": "undergarden:depthrock" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_cloggrum_ore.json b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_cloggrum_ore.json new file mode 100644 index 0000000000..b76fa512d0 --- /dev/null +++ b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_cloggrum_ore.json @@ -0,0 +1,33 @@ +{ + "type": "create:crushing", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "undergarden" + } + ], + "ingredients": [ + { + "item": "undergarden:shiverstone_cloggrum_ore" + } + ], + "processingTime": 350, + "results": [ + { + "count": 2, + "item": "undergarden:raw_cloggrum" + }, + { + "chance": 0.25, + "item": "undergarden:raw_cloggrum" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.125, + "item": "undergarden:shiverstone" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_coal_ore.json b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_coal_ore.json new file mode 100644 index 0000000000..4a8ba9fa3c --- /dev/null +++ b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_coal_ore.json @@ -0,0 +1,33 @@ +{ + "type": "create:crushing", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "undergarden" + } + ], + "ingredients": [ + { + "item": "undergarden:shiverstone_coal_ore" + } + ], + "processingTime": 300, + "results": [ + { + "count": 2, + "item": "create:crushed_raw_iron" + }, + { + "chance": 0.25, + "item": "create:crushed_raw_iron" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.125, + "item": "undergarden:shiverstone" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_diamond_ore.json b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_diamond_ore.json new file mode 100644 index 0000000000..f262169dff --- /dev/null +++ b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_diamond_ore.json @@ -0,0 +1,33 @@ +{ + "type": "create:crushing", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "undergarden" + } + ], + "ingredients": [ + { + "item": "undergarden:shiverstone_diamond_ore" + } + ], + "processingTime": 450, + "results": [ + { + "count": 2, + "item": "minecraft:diamond" + }, + { + "chance": 0.25, + "item": "minecraft:diamond" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.125, + "item": "undergarden:shiverstone" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_froststeel_ore.json b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_froststeel_ore.json new file mode 100644 index 0000000000..2c3f182ce8 --- /dev/null +++ b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_froststeel_ore.json @@ -0,0 +1,33 @@ +{ + "type": "create:crushing", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "undergarden" + } + ], + "ingredients": [ + { + "item": "undergarden:shiverstone_froststeel_ore" + } + ], + "processingTime": 350, + "results": [ + { + "count": 2, + "item": "undergarden:raw_froststeel" + }, + { + "chance": 0.25, + "item": "undergarden:raw_froststeel" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.125, + "item": "undergarden:shiverstone" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_iron_ore.json b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_iron_ore.json new file mode 100644 index 0000000000..9db868e85e --- /dev/null +++ b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_iron_ore.json @@ -0,0 +1,33 @@ +{ + "type": "create:crushing", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "undergarden" + } + ], + "ingredients": [ + { + "item": "undergarden:shiverstone_iron_ore" + } + ], + "processingTime": 350, + "results": [ + { + "count": 2, + "item": "create:crushed_raw_iron" + }, + { + "chance": 0.25, + "item": "create:crushed_raw_iron" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.125, + "item": "undergarden:shiverstone" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_regalium_ore.json b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_regalium_ore.json new file mode 100644 index 0000000000..4452a13751 --- /dev/null +++ b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_regalium_ore.json @@ -0,0 +1,34 @@ +{ + "type": "create:crushing", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "undergarden" + } + ], + "ingredients": [ + { + "item": "undergarden:shiverstone_regalium_ore" + } + ], + "processingTime": 450, + "results": [ + { + "count": 2, + "item": "undergarden:regalium_crystal" + }, + { + "chance": 0.25, + "item": "undergarden:regalium_crystal" + }, + { + "chance": 0.75, + "count": 2, + "item": "create:experience_nugget" + }, + { + "chance": 0.125, + "item": "undergarden:shiverstone" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_utherium_ore.json b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_utherium_ore.json new file mode 100644 index 0000000000..ce95eb0a04 --- /dev/null +++ b/src/generated/resources/data/create/recipes/crushing/compat/undergarden/shiverstone_utherium_ore.json @@ -0,0 +1,33 @@ +{ + "type": "create:crushing", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "undergarden" + } + ], + "ingredients": [ + { + "item": "undergarden:shiverstone_utherium_ore" + } + ], + "processingTime": 450, + "results": [ + { + "count": 2, + "item": "undergarden:utherium_crystal" + }, + { + "chance": 0.25, + "item": "undergarden:utherium_crystal" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + }, + { + "chance": 0.125, + "item": "undergarden:shiverstone" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/crushing/compat/unusualend/scale_horse_armor.json b/src/generated/resources/data/create/recipes/crushing/compat/unusualend/scale_horse_armor.json new file mode 100644 index 0000000000..0970b5812b --- /dev/null +++ b/src/generated/resources/data/create/recipes/crushing/compat/unusualend/scale_horse_armor.json @@ -0,0 +1,36 @@ +{ + "type": "create:crushing", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "unusualend" + } + ], + "ingredients": [ + { + "item": "unusualend:scale_horse_armor" + } + ], + "processingTime": 200, + "results": [ + { + "count": 2, + "item": "unusualend:bolok_scale" + }, + { + "chance": 0.5, + "count": 2, + "item": "unusualend:warped_moss" + }, + { + "chance": 0.5, + "count": 2, + "item": "unusualend:bolok_scale" + }, + { + "chance": 0.25, + "count": 2, + "item": "minecraft:string" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/emptying/compat/undergarden/virulent_mix_bucket.json b/src/generated/resources/data/create/recipes/emptying/compat/undergarden/virulent_mix_bucket.json new file mode 100644 index 0000000000..a9e395ee87 --- /dev/null +++ b/src/generated/resources/data/create/recipes/emptying/compat/undergarden/virulent_mix_bucket.json @@ -0,0 +1,23 @@ +{ + "type": "create:emptying", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "undergarden" + } + ], + "ingredients": [ + { + "item": "undergarden:virulent_mix_bucket" + } + ], + "results": [ + { + "item": "minecraft:bucket" + }, + { + "amount": 1000, + "fluid": "undergarden:virulent_mix_source" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/filling/compat/undergarden/deepturf.json b/src/generated/resources/data/create/recipes/filling/compat/undergarden/deepturf.json new file mode 100644 index 0000000000..fd732d6e2d --- /dev/null +++ b/src/generated/resources/data/create/recipes/filling/compat/undergarden/deepturf.json @@ -0,0 +1,24 @@ +{ + "type": "create:filling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "undergarden" + } + ], + "ingredients": [ + { + "item": "undergarden:deepsoil" + }, + { + "amount": 500, + "fluid": "minecraft:water", + "nbt": {} + } + ], + "results": [ + { + "item": "undergarden:deepturf_block" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/deeperdarker/gloomy_cactus.json b/src/generated/resources/data/create/recipes/milling/compat/deeperdarker/gloomy_cactus.json new file mode 100644 index 0000000000..2096fe17f9 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/deeperdarker/gloomy_cactus.json @@ -0,0 +1,25 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deeperdarker" + } + ], + "ingredients": [ + { + "item": "deeperdarker:gloomy_cactus" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:orange_dye" + }, + { + "chance": 0.1, + "item": "minecraft:orange_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/deeperdarker/glowing_flowers.json b/src/generated/resources/data/create/recipes/milling/compat/deeperdarker/glowing_flowers.json new file mode 100644 index 0000000000..2a1c08c462 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/deeperdarker/glowing_flowers.json @@ -0,0 +1,25 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deeperdarker" + } + ], + "ingredients": [ + { + "item": "deeperdarker:glowing_flowers" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:light_blue_dye" + }, + { + "chance": 0.1, + "item": "minecraft:orange_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/deeperdarker/lily_flower.json b/src/generated/resources/data/create/recipes/milling/compat/deeperdarker/lily_flower.json new file mode 100644 index 0000000000..1c898fca88 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/deeperdarker/lily_flower.json @@ -0,0 +1,25 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deeperdarker" + } + ], + "ingredients": [ + { + "item": "deeperdarker:lily_flower" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:light_blue_dye" + }, + { + "chance": 0.1, + "item": "minecraft:orange_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/deeperdarker/sculk_grime.json b/src/generated/resources/data/create/recipes/milling/compat/deeperdarker/sculk_grime.json new file mode 100644 index 0000000000..ec4766869c --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/deeperdarker/sculk_grime.json @@ -0,0 +1,19 @@ +{ + "type": "create:milling", + "ingredients": [ + { + "item": "deeperdarker:sculk_grime" + } + ], + "processingTime": 50, + "results": [ + { + "count": 3, + "item": "deeperdarker:grime_ball" + }, + { + "chance": 0.5, + "item": "deeperdarker:grime_ball" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/gardens_of_the_dead/blistercrown.json b/src/generated/resources/data/create/recipes/milling/compat/gardens_of_the_dead/blistercrown.json new file mode 100644 index 0000000000..0321891c15 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/gardens_of_the_dead/blistercrown.json @@ -0,0 +1,25 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "gardens_of_the_dead" + } + ], + "ingredients": [ + { + "item": "gardens_of_the_dead:blistercrown" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:orange_dye" + }, + { + "chance": 0.1, + "item": "minecraft:red_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/gardens_of_the_dead/glowing_soul_spore.json b/src/generated/resources/data/create/recipes/milling/compat/gardens_of_the_dead/glowing_soul_spore.json new file mode 100644 index 0000000000..9f7b9c34a2 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/gardens_of_the_dead/glowing_soul_spore.json @@ -0,0 +1,25 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "gardens_of_the_dead" + } + ], + "ingredients": [ + { + "item": "gardens_of_the_dead:glowing_soul_spore" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:light_blue_dye" + }, + { + "chance": 0.1, + "item": "minecraft:brown_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/gardens_of_the_dead/tall_blistercrown.json b/src/generated/resources/data/create/recipes/milling/compat/gardens_of_the_dead/tall_blistercrown.json new file mode 100644 index 0000000000..5b225fc8c5 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/gardens_of_the_dead/tall_blistercrown.json @@ -0,0 +1,31 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "gardens_of_the_dead" + } + ], + "ingredients": [ + { + "item": "gardens_of_the_dead:tall_blistercrown" + } + ], + "processingTime": 50, + "results": [ + { + "count": 3, + "item": "minecraft:orange_dye" + }, + { + "chance": 0.25, + "count": 2, + "item": "minecraft:red_dye" + }, + { + "chance": 0.1, + "count": 2, + "item": "minecraft:orange_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/undergarden/amorous_bristle.json b/src/generated/resources/data/create/recipes/milling/compat/undergarden/amorous_bristle.json new file mode 100644 index 0000000000..b61c303bad --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/undergarden/amorous_bristle.json @@ -0,0 +1,25 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "undergarden" + } + ], + "ingredients": [ + { + "item": "undergarden:amorous_bristle" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:pink_dye" + }, + { + "chance": 0.5, + "item": "minecraft:pink_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/undergarden/butterbunch.json b/src/generated/resources/data/create/recipes/milling/compat/undergarden/butterbunch.json new file mode 100644 index 0000000000..43632ef40e --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/undergarden/butterbunch.json @@ -0,0 +1,25 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "undergarden" + } + ], + "ingredients": [ + { + "item": "undergarden:butterbunch" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:yellow_dye" + }, + { + "chance": 0.1, + "item": "minecraft:yellow_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/undergarden/depthrock.json b/src/generated/resources/data/create/recipes/milling/compat/undergarden/depthrock.json new file mode 100644 index 0000000000..80f0881544 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/undergarden/depthrock.json @@ -0,0 +1,31 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "undergarden" + } + ], + "ingredients": [ + { + "item": "undergarden:depthrock" + } + ], + "processingTime": 200, + "results": [ + { + "count": 3, + "item": "undergarden:depthrock_pebble" + }, + { + "chance": 0.5, + "count": 3, + "item": "undergarden:depthrock_pebble" + }, + { + "chance": 0.25, + "count": 3, + "item": "undergarden:depthrock_pebble" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/undergarden/miserabell.json b/src/generated/resources/data/create/recipes/milling/compat/undergarden/miserabell.json new file mode 100644 index 0000000000..e57e285ecb --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/undergarden/miserabell.json @@ -0,0 +1,25 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "undergarden" + } + ], + "ingredients": [ + { + "item": "undergarden:miserabell" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:light_blue_dye" + }, + { + "chance": 0.1, + "item": "minecraft:light_blue_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/undergarden/shimmerweed.json b/src/generated/resources/data/create/recipes/milling/compat/undergarden/shimmerweed.json new file mode 100644 index 0000000000..a73649bd29 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/undergarden/shimmerweed.json @@ -0,0 +1,25 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "undergarden" + } + ], + "ingredients": [ + { + "item": "undergarden:shimmerweed" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:white_dye" + }, + { + "chance": 0.1, + "item": "minecraft:white_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/undergarden/tall_shimmerweed.json b/src/generated/resources/data/create/recipes/milling/compat/undergarden/tall_shimmerweed.json new file mode 100644 index 0000000000..b7dd7127c2 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/undergarden/tall_shimmerweed.json @@ -0,0 +1,30 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "undergarden" + } + ], + "ingredients": [ + { + "item": "undergarden:tall_shimmerweed" + } + ], + "processingTime": 50, + "results": [ + { + "count": 3, + "item": "minecraft:white_dye" + }, + { + "chance": 0.25, + "count": 2, + "item": "minecraft:green_dye" + }, + { + "chance": 0.1, + "item": "minecraft:white_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/unusualend/chorus_roots.json b/src/generated/resources/data/create/recipes/milling/compat/unusualend/chorus_roots.json new file mode 100644 index 0000000000..1323265d32 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/unusualend/chorus_roots.json @@ -0,0 +1,25 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "unusualend" + } + ], + "ingredients": [ + { + "item": "unusualend:chorus_roots" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:magenta_dye" + }, + { + "chance": 0.1, + "item": "minecraft:purple_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/unusualend/endstone_sprouts.json b/src/generated/resources/data/create/recipes/milling/compat/unusualend/endstone_sprouts.json new file mode 100644 index 0000000000..15276b8268 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/unusualend/endstone_sprouts.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "unusualend" + } + ], + "ingredients": [ + { + "item": "unusualend:endstone_sprouts" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:pink_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/unusualend/flowering_gloopy_pile.json b/src/generated/resources/data/create/recipes/milling/compat/unusualend/flowering_gloopy_pile.json new file mode 100644 index 0000000000..3c1fc78175 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/unusualend/flowering_gloopy_pile.json @@ -0,0 +1,31 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "unusualend" + } + ], + "ingredients": [ + { + "item": "unusualend:flowering_gloopy_pile" + } + ], + "processingTime": 50, + "results": [ + { + "count": 3, + "item": "minecraft:purple_dye" + }, + { + "chance": 0.25, + "count": 2, + "item": "minecraft:magenta_dye" + }, + { + "chance": 0.1, + "count": 2, + "item": "minecraft:purple_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/unusualend/flowering_purpr_grass.json b/src/generated/resources/data/create/recipes/milling/compat/unusualend/flowering_purpr_grass.json new file mode 100644 index 0000000000..81a2f40888 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/unusualend/flowering_purpr_grass.json @@ -0,0 +1,25 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "unusualend" + } + ], + "ingredients": [ + { + "item": "unusualend:flowering_purpr_grass" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:pink_dye" + }, + { + "chance": 0.1, + "item": "minecraft:pink_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/unusualend/gloopy_bush.json b/src/generated/resources/data/create/recipes/milling/compat/unusualend/gloopy_bush.json new file mode 100644 index 0000000000..0416311eea --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/unusualend/gloopy_bush.json @@ -0,0 +1,25 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "unusualend" + } + ], + "ingredients": [ + { + "item": "unusualend:gloopy_bush" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:purple_dye" + }, + { + "chance": 0.1, + "item": "minecraft:purple_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/unusualend/gloopy_tendrils.json b/src/generated/resources/data/create/recipes/milling/compat/unusualend/gloopy_tendrils.json new file mode 100644 index 0000000000..c1c2a9cbf8 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/unusualend/gloopy_tendrils.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "unusualend" + } + ], + "ingredients": [ + { + "item": "unusualend:gloopy_tendrils" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:magenta_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/unusualend/purper_grass.json b/src/generated/resources/data/create/recipes/milling/compat/unusualend/purper_grass.json new file mode 100644 index 0000000000..68308aa9d0 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/unusualend/purper_grass.json @@ -0,0 +1,25 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "unusualend" + } + ], + "ingredients": [ + { + "item": "unusualend:purper_grass" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:pink_dye" + }, + { + "chance": 0.1, + "item": "minecraft:pink_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/unusualend/shiny_spirea.json b/src/generated/resources/data/create/recipes/milling/compat/unusualend/shiny_spirea.json new file mode 100644 index 0000000000..8b3f1bd9d7 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/unusualend/shiny_spirea.json @@ -0,0 +1,25 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "unusualend" + } + ], + "ingredients": [ + { + "item": "unusualend:shiny_spirea" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:magenta_dye" + }, + { + "chance": 0.1, + "item": "minecraft:purple_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/unusualend/small_warped_algae.json b/src/generated/resources/data/create/recipes/milling/compat/unusualend/small_warped_algae.json new file mode 100644 index 0000000000..db6d6f5f8c --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/unusualend/small_warped_algae.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "unusualend" + } + ], + "ingredients": [ + { + "item": "unusualend:small_warped_algae" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:blue_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/unusualend/warped_algae.json b/src/generated/resources/data/create/recipes/milling/compat/unusualend/warped_algae.json new file mode 100644 index 0000000000..63cfe37320 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/unusualend/warped_algae.json @@ -0,0 +1,25 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "unusualend" + } + ], + "ingredients": [ + { + "item": "unusualend:warped_algae" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:blue_dye" + }, + { + "chance": 0.1, + "item": "minecraft:blue_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/unusualend/warped_sprouts.json b/src/generated/resources/data/create/recipes/milling/compat/unusualend/warped_sprouts.json new file mode 100644 index 0000000000..822faf662a --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/unusualend/warped_sprouts.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "unusualend" + } + ], + "ingredients": [ + { + "item": "unusualend:warped_sprouts" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:cyan_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/tags/blocks/fan_transparent.json b/src/generated/resources/data/create/tags/blocks/fan_transparent.json index 6dcdc1df9f..ab437be02f 100644 --- a/src/generated/resources/data/create/tags/blocks/fan_transparent.json +++ b/src/generated/resources/data/create/tags/blocks/fan_transparent.json @@ -11,6 +11,18 @@ "minecraft:mangrove_roots", "#minecraft:campfires", "#minecraft:fences", - "#minecraft:leaves" + "#minecraft:leaves", + { + "id": "quark:gold_bars", + "required": false + }, + { + "id": "quark:grate", + "required": false + }, + { + "id": "undergarden:cloggrum_bars", + "required": false + } ] } \ No newline at end of file diff --git a/src/generated/resources/data/create/tags/blocks/tree_attachments.json b/src/generated/resources/data/create/tags/blocks/tree_attachments.json index ca9da984ba..c379223a63 100644 --- a/src/generated/resources/data/create/tags/blocks/tree_attachments.json +++ b/src/generated/resources/data/create/tags/blocks/tree_attachments.json @@ -5,6 +5,14 @@ "minecraft:mangrove_propagule", "minecraft:moss_carpet", "minecraft:shroomlight", - "minecraft:vine" + "minecraft:vine", + { + "id": "undergarden:hanging_grongle_leaves", + "required": false + }, + { + "id": "undergarden:gronglet", + "required": false + } ] } \ No newline at end of file diff --git a/src/generated/resources/data/create/tags/items/modded_stripped_logs.json b/src/generated/resources/data/create/tags/items/modded_stripped_logs.json index 1da5f0de24..c7f15fa261 100644 --- a/src/generated/resources/data/create/tags/items/modded_stripped_logs.json +++ b/src/generated/resources/data/create/tags/items/modded_stripped_logs.json @@ -408,6 +408,18 @@ "id": "regions_unexplored:stripped_willow_log", "required": false }, + { + "id": "undergarden:stripped_smogstem_log", + "required": false + }, + { + "id": "undergarden:stripped_wigglewood_log", + "required": false + }, + { + "id": "undergarden:stripped_grongle_log", + "required": false + }, { "id": "autumnity:maple", "required": false @@ -439,6 +451,14 @@ { "id": "regions_unexplored:brimwood_log_magma", "required": false + }, + { + "id": "gardens_of_the_dead:stripped_soulblight_stem", + "required": false + }, + { + "id": "unusualend:stripped_chorus_cane_block", + "required": false } ] } \ No newline at end of file diff --git a/src/generated/resources/data/create/tags/items/modded_stripped_wood.json b/src/generated/resources/data/create/tags/items/modded_stripped_wood.json index e37ca11d8a..e4df57c40e 100644 --- a/src/generated/resources/data/create/tags/items/modded_stripped_wood.json +++ b/src/generated/resources/data/create/tags/items/modded_stripped_wood.json @@ -408,6 +408,18 @@ "id": "regions_unexplored:stripped_willow_wood", "required": false }, + { + "id": "undergarden:stripped_smogstem_wood", + "required": false + }, + { + "id": "undergarden:stripped_wigglewood_wood", + "required": false + }, + { + "id": "undergarden:stripped_grongle_wood", + "required": false + }, { "id": "infernalexp:stripped_luminous_hyphae", "required": false @@ -431,6 +443,10 @@ { "id": "regions_unexplored:stripped_yellow_bioshroom_hyphae", "required": false + }, + { + "id": "gardens_of_the_dead:stripped_soulblight_hyphae", + "required": false } ] } \ No newline at end of file diff --git a/src/generated/resources/data/create/tags/items/upright_on_belt.json b/src/generated/resources/data/create/tags/items/upright_on_belt.json index a7c54c1ef8..deb9022855 100644 --- a/src/generated/resources/data/create/tags/items/upright_on_belt.json +++ b/src/generated/resources/data/create/tags/items/upright_on_belt.json @@ -9,6 +9,26 @@ "minecraft:splash_potion", "minecraft:lingering_potion", "minecraft:honey_bottle", - "minecraft:cake" + "minecraft:cake", + { + "id": "undergarden:virulent_mix_bucket", + "required": false + }, + { + "id": "unusualend:warped_potion", + "required": false + }, + { + "id": "unusualend:warped_infusion", + "required": false + }, + { + "id": "unusualend:chorus_juice", + "required": false + }, + { + "id": "unusualend:chorus_tea", + "required": false + } ] } \ No newline at end of file diff --git a/src/main/java/com/simibubi/create/foundation/data/recipe/CrushingRecipeGen.java b/src/main/java/com/simibubi/create/foundation/data/recipe/CrushingRecipeGen.java index 47dfb4f6c4..f0c422a078 100644 --- a/src/main/java/com/simibubi/create/foundation/data/recipe/CrushingRecipeGen.java +++ b/src/main/java/com/simibubi/create/foundation/data/recipe/CrushingRecipeGen.java @@ -405,21 +405,144 @@ public class CrushingRecipeGen extends ProcessingRecipeGen { .output(0.125f, Mods.AET, "holystone", 1) .output(0.75f, AllItems.EXP_NUGGET.get()) .whenModLoaded(Mods.AET.getId())), - + // IE - + IE_COKE_DUST = create(Mods.IE.recipeId("coal_coke"), b -> b.duration(200) .require(Mods.IE, "coal_coke").output(Mods.IE, "dust_coke") .whenModLoaded(Mods.IE.getId())), - + IE_COKE_BLOCK = create(Mods.IE.recipeId("coke_block"), b -> b.duration(200) .require(Mods.IE, "coke").output(1, Mods.IE.asResource("dust_coke"), 9) .whenModLoaded(Mods.IE.getId())), - + IE_SLAG_GRAVEL = create(Mods.IE.recipeId("slag"), b -> b.duration(200) .require(Mods.IE, "slag").output(Mods.IE, "slag_gravel") - .whenModLoaded(Mods.IE.getId())); + .whenModLoaded(Mods.IE.getId())), + // Unusual End + + UUE_HORSE_ARMOR = create(Mods.UUE.recipeId("scale_horse_armor"), b -> b.duration(200) + .require(Mods.UUE, "scale_horse_armor") + .output(1f, Mods.UUE, "bolok_scale", 2) + .output(0.5f, Mods.UUE, "warped_moss", 2) + .output(0.5f, Mods.UUE, "bolok_scale", 2) + .output(0.25f, Items.STRING, 2) + .whenModLoaded(Mods.UUE.getId())), + + // Undergarden + + UG_COAL_D = create(Mods.UG.recipeId("depthrock_coal_ore"), b -> b.duration(300) + .require(Mods.UG, "depthrock_coal_ore") + .output(1f, Items.COAL, 2) + .output(0.25f, Items.COAL) + .output(0.75f, AllItems.EXP_NUGGET.get()) + .output(0.125f, Mods.UG, "depthrock", 1) + .whenModLoaded(Mods.UG.getId())), + + UG_COAL_S = create(Mods.UG.recipeId("shiverstone_coal_ore"), b -> b.duration(300) + .require(Mods.UG, "shiverstone_coal_ore") + .output(1f, AllItems.CRUSHED_IRON.get(), 2) + .output(0.25f, AllItems.CRUSHED_IRON.get()) + .output(0.75f, AllItems.EXP_NUGGET.get()) + .output(0.125f, Mods.UG, "shiverstone", 1) + .whenModLoaded(Mods.UG.getId())), + + UG_IRON_D = create(Mods.UG.recipeId("depthrock_iron_ore"), b -> b.duration(350) + .require(Mods.UG, "depthrock_iron_ore") + .output(1f, AllItems.CRUSHED_IRON.get(), 2) + .output(0.25f, AllItems.CRUSHED_IRON.get()) + .output(0.75f, AllItems.EXP_NUGGET.get()) + .output(0.125f, Mods.UG, "depthrock", 1) + .whenModLoaded(Mods.UG.getId())), + + UG_IRON_S = create(Mods.UG.recipeId("shiverstone_iron_ore"), b -> b.duration(350) + .require(Mods.UG, "shiverstone_iron_ore") + .output(1f, AllItems.CRUSHED_IRON.get(), 2) + .output(0.25f, AllItems.CRUSHED_IRON.get()) + .output(0.75f, AllItems.EXP_NUGGET.get()) + .output(0.125f, Mods.UG, "shiverstone", 1) + .whenModLoaded(Mods.UG.getId())), + + UG_GOLD = create(Mods.UG.recipeId("depthrock_gold_ore"), b -> b.duration(350) + .require(Mods.UG, "depthrock_gold_ore") + .output(1f, AllItems.CRUSHED_GOLD.get(), 2) + .output(0.25f, AllItems.CRUSHED_GOLD.get()) + .output(0.75f, AllItems.EXP_NUGGET.get(), 2) + .output(0.125f, Mods.UG, "depthrock", 1) + .whenModLoaded(Mods.UG.getId())), + + UG_DIAMOND_D = create(Mods.UG.recipeId("depthrock_diamond_ore"), b -> b.duration(450) + .require(Mods.UG, "depthrock_diamond_ore") + .output(1f, Items.DIAMOND, 2) + .output(0.25f, Items.DIAMOND) + .output(0.75f, AllItems.EXP_NUGGET.get()) + .output(0.125f, Mods.UG, "depthrock", 1) + .whenModLoaded(Mods.UG.getId())), + + UG_DIAMOND_S = create(Mods.UG.recipeId("shiverstone_diamond_ore"), b -> b.duration(450) + .require(Mods.UG, "shiverstone_diamond_ore") + .output(1f, Items.DIAMOND, 2) + .output(0.25f, Items.DIAMOND) + .output(0.75f, AllItems.EXP_NUGGET.get()) + .output(0.125f, Mods.UG, "shiverstone", 1) + .whenModLoaded(Mods.UG.getId())), + + UG_CLOGGRUM_D = create(Mods.UG.recipeId("depthrock_cloggrum_ore"), b -> b.duration(350) + .require(Mods.UG, "depthrock_cloggrum_ore") + .output(1f, Mods.UG, "raw_cloggrum", 2) + .output(0.25f, Mods.UG, "raw_cloggrum", 1) + .output(0.75f, AllItems.EXP_NUGGET.get()) + .output(0.125f, Mods.UG, "depthrock", 1) + .whenModLoaded(Mods.UG.getId())), + + UG_CLOGGRUM_S = create(Mods.UG.recipeId("shiverstone_cloggrum_ore"), b -> b.duration(350) + .require(Mods.UG, "shiverstone_cloggrum_ore") + .output(1f, Mods.UG, "raw_cloggrum", 2) + .output(0.25f, Mods.UG, "raw_cloggrum", 1) + .output(0.75f, AllItems.EXP_NUGGET.get()) + .output(0.125f, Mods.UG, "shiverstone", 1) + .whenModLoaded(Mods.UG.getId())), + + UG_FROSTSTEEL = create(Mods.UG.recipeId("shiverstone_froststeel_ore"), b -> b.duration(350) + .require(Mods.UG, "shiverstone_froststeel_ore") + .output(1f, Mods.UG, "raw_froststeel", 2) + .output(0.25f, Mods.UG, "raw_froststeel", 1) + .output(0.75f, AllItems.EXP_NUGGET.get()) + .output(0.125f, Mods.UG, "shiverstone", 1) + .whenModLoaded(Mods.UG.getId())), + + UG_UTHERIUM_D = create(Mods.UG.recipeId("depthrock_utherium_ore"), b -> b.duration(450) + .require(Mods.UG, "depthrock_utherium_ore") + .output(1f, Mods.UG, "utherium_crystal", 2) + .output(0.25f, Mods.UG, "utherium_crystal", 1) + .output(0.75f, AllItems.EXP_NUGGET.get()) + .output(0.125f, Mods.UG, "depthrock", 1) + .whenModLoaded(Mods.UG.getId())), + + UG_UTHERIUM_S = create(Mods.UG.recipeId("shiverstone_utherium_ore"), b -> b.duration(450) + .require(Mods.UG, "shiverstone_utherium_ore") + .output(1f, Mods.UG, "utherium_crystal", 2) + .output(0.25f, Mods.UG, "utherium_crystal", 1) + .output(0.75f, AllItems.EXP_NUGGET.get()) + .output(0.125f, Mods.UG, "shiverstone", 1) + .whenModLoaded(Mods.UG.getId())), + + UG_REGALIUM_D = create(Mods.UG.recipeId("depthrock_regalium_ore"), b -> b.duration(450) + .require(Mods.UG, "depthrock_regalium_ore") + .output(1f, Mods.UG, "regalium_crystal", 2) + .output(0.25f, Mods.UG, "regalium_crystal", 1) + .output(0.75f, AllItems.EXP_NUGGET.get(), 2) + .output(0.125f, Mods.UG, "depthrock", 1) + .whenModLoaded(Mods.UG.getId())), + + UG_REGALIUM_S = create(Mods.UG.recipeId("shiverstone_regalium_ore"), b -> b.duration(450) + .require(Mods.UG, "shiverstone_regalium_ore") + .output(1f, Mods.UG, "regalium_crystal", 2) + .output(0.25f, Mods.UG, "regalium_crystal", 1) + .output(0.75f, AllItems.EXP_NUGGET.get(), 2) + .output(0.125f, Mods.UG, "shiverstone", 1) + .whenModLoaded(Mods.UG.getId())) ; diff --git a/src/main/java/com/simibubi/create/foundation/data/recipe/CuttingRecipeGen.java b/src/main/java/com/simibubi/create/foundation/data/recipe/CuttingRecipeGen.java index d469f59474..f493bc5db6 100644 --- a/src/main/java/com/simibubi/create/foundation/data/recipe/CuttingRecipeGen.java +++ b/src/main/java/com/simibubi/create/foundation/data/recipe/CuttingRecipeGen.java @@ -32,10 +32,9 @@ public class CuttingRecipeGen extends ProcessingRecipeGen { // Regions Unexplored RU_14 = stripOnlyDiffModId(Mods.RU, "silver_birch_log", Mods.MC, "stripped_birch_log"), RU_15 = stripOnlyDiffModId(Mods.RU, "silver_birch_wood", Mods.MC, "stripped_birch_wood"), - + // IE - IE_WIRES = ieWires("copper", "electrum", "aluminum", "steel", "lead") - ; + IE_WIRES = ieWires("copper", "electrum", "aluminum", "steel", "lead"); GeneratedRecipe stripAndMakePlanks(Block wood, Block stripped, Block planks) { return stripAndMakePlanks(wood, stripped, planks, 6); diff --git a/src/main/java/com/simibubi/create/foundation/data/recipe/EmptyingRecipeGen.java b/src/main/java/com/simibubi/create/foundation/data/recipe/EmptyingRecipeGen.java index b499a606fc..b7864a1591 100644 --- a/src/main/java/com/simibubi/create/foundation/data/recipe/EmptyingRecipeGen.java +++ b/src/main/java/com/simibubi/create/foundation/data/recipe/EmptyingRecipeGen.java @@ -38,7 +38,12 @@ public class EmptyingRecipeGen extends ProcessingRecipeGen { NEO_MILK = create(Mods.NEA.recipeId("milk_bottle"), b -> b.require(Mods.FD, "milk_bottle") .output(ForgeMod.MILK.get(), 250) .output(Items.GLASS_BOTTLE) - .whenModLoaded(Mods.NEA.getId())) + .whenModLoaded(Mods.NEA.getId())), + + UG_VIRULENT_MIX = create(Mods.UG.recipeId("virulent_mix_bucket"), b -> b.require(Mods.UG, "virulent_mix_bucket") + .output(Mods.UG, "virulent_mix_source", 1000) + .output(Items.BUCKET) + .whenModLoaded(Mods.UG.getId())) ; diff --git a/src/main/java/com/simibubi/create/foundation/data/recipe/FillingRecipeGen.java b/src/main/java/com/simibubi/create/foundation/data/recipe/FillingRecipeGen.java index 4e76c97f9f..de3a0345d4 100644 --- a/src/main/java/com/simibubi/create/foundation/data/recipe/FillingRecipeGen.java +++ b/src/main/java/com/simibubi/create/foundation/data/recipe/FillingRecipeGen.java @@ -62,6 +62,7 @@ public class FillingRecipeGen extends ProcessingRecipeGen { .require(AllItems.CINDER_FLOUR.get()) .output(Items.GLOWSTONE_DUST)), + // Compat AM_LAVA = create(Mods.AM.recipeId("lava_bottle"), b -> b.require(Fluids.LAVA, 250) .require(Items.GLASS_BOTTLE) @@ -90,16 +91,19 @@ public class FillingRecipeGen extends ProcessingRecipeGen { .require(Mods.VMP, "cursed_earth") .output(Mods.VMP, "cursed_grass") .whenModLoaded(Mods.VMP.getId())), - + // IE IE_TREATED_WOOD = create(Mods.IE.recipeId("treated_wood_in_spout"), b -> b.require(AllTags.forgeFluidTag("creosote"), 125) .require(I.planks()) .output(Mods.IE, "treated_wood_horizontal") - .whenModLoaded(Mods.IE.getId())); + .whenModLoaded(Mods.IE.getId())), - ; + UG_DEEPTURF = create(Mods.UG.recipeId("deepturf"), b -> b.require(Fluids.WATER, 500) + .require(Mods.UG, "deepsoil") + .output(Mods.UG, "deepturf_block") + .whenModLoaded(Mods.UG.getId())); public GeneratedRecipe moddedGrass(Mods mod, String name) { String grass = name + "_grass_block"; diff --git a/src/main/java/com/simibubi/create/foundation/data/recipe/MillingRecipeGen.java b/src/main/java/com/simibubi/create/foundation/data/recipe/MillingRecipeGen.java index 7e6319d22b..940a008bab 100644 --- a/src/main/java/com/simibubi/create/foundation/data/recipe/MillingRecipeGen.java +++ b/src/main/java/com/simibubi/create/foundation/data/recipe/MillingRecipeGen.java @@ -718,7 +718,74 @@ public class MillingRecipeGen extends ProcessingRecipeGen { List.of(Items.YELLOW_DYE), List.of(2)), RU_YELLOW_SNOWBELLE = ruFlower("yellow_snowbelle", List.of(1f), - List.of(Items.YELLOW_DYE), List.of(2)) + List.of(Items.YELLOW_DYE), List.of(2)), + + // Gardens of the Dead + + GOTD_BLISTERCROWN = modFlower(Mods.GOTD, "blistercrown", List.of(1f, 0.1f), List.of(Items.ORANGE_DYE, Items.RED_DYE), List.of(2, 1)), + + GOTD_TALL_BLISTERCROWN = modFlower(Mods.GOTD, "tall_blistercrown", List.of(1f, 0.25f, 0.1f), + List.of(Items.ORANGE_DYE, Items.RED_DYE, Items.ORANGE_DYE), List.of(3, 2, 2)), + + GOTD_GLOWING_SOUL_SPORE = modFlower(Mods.GOTD, "glowing_soul_spore", List.of(1f, 0.1f), List.of(Items.LIGHT_BLUE_DYE, Items.BROWN_DYE), List.of(2, 1)), + + // Unusual End + + UUE_WARPED_SPROUTS = modFlower(Mods.UUE, "warped_sprouts", List.of(1f), List.of(Items.CYAN_DYE), List.of(2)), + + UUE_SMALL_WARPED_ALGAE = modFlower(Mods.UUE, "small_warped_algae", List.of(1f), List.of(Items.BLUE_DYE), List.of(2)), + + UUE_WARPED_ALGAE = modFlower(Mods.UUE, "warped_algae", List.of(1f, 0.1f), List.of(Items.BLUE_DYE, Items.BLUE_DYE), List.of(2, 1)), + + UUE_CHORUS_ROOTS = modFlower(Mods.UUE, "chorus_roots", List.of(1f, 0.1f), List.of(Items.MAGENTA_DYE, Items.PURPLE_DYE), List.of(2, 1)), + + UUE_ENDSTONE_SPROUTS = modFlower(Mods.UUE, "endstone_sprouts", List.of(1f), List.of(Items.PINK_DYE), List.of(2)), + + UUE_CHORUS_GRASS = modFlower(Mods.UUE, "purper_grass", List.of(1f, 0.1f), List.of(Items.PINK_DYE, Items.PINK_DYE), List.of(2, 1)), + + UUE_FLOWERING_CHORUS_ROOTS = modFlower(Mods.UUE, "flowering_purpr_grass", List.of(1f, 0.1f), List.of(Items.PINK_DYE, Items.PINK_DYE), List.of(2, 1)), + + UUE_GLOOPY_TENDRILS = modFlower(Mods.UUE, "gloopy_tendrils", List.of(1f), List.of(Items.MAGENTA_DYE), List.of(2)), + + UUE_GLOOPY_BUSH = modFlower(Mods.UUE, "gloopy_bush", List.of(1f, 0.1f), List.of(Items.PURPLE_DYE, Items.PURPLE_DYE), List.of(2, 1)), + + UUE_FLOWERING_GLOOPY_PILE = modFlower(Mods.UUE, "flowering_gloopy_pile", List.of(1f, 0.25f, 0.1f), List.of(Items.PURPLE_DYE, Items.MAGENTA_DYE, Items.PURPLE_DYE), List.of(3, 2, 2)), + + UUE_SHINY_SPIREA = modFlower(Mods.UUE, "shiny_spirea", List.of(1f, 0.1f), List.of(Items.MAGENTA_DYE, Items.PURPLE_DYE), List.of(2, 1)), + + // Undergarden + + UG_DEPTHROCK = create(Mods.UG.recipeId("depthrock"), b -> b.duration(200) + .require(Mods.UG, "depthrock") + .output(1f, Mods.UG, "depthrock_pebble", 3) + .output(0.5f, Mods.UG, "depthrock_pebble", 3) + .output(0.25f, Mods.UG, "depthrock_pebble", 3) + .whenModLoaded(Mods.UG.getId())), + + UG_AMOROUS_BRISTLE = modFlower(Mods.UG, "amorous_bristle", List.of(1f, 0.5f), List.of(Items.PINK_DYE, Items.PINK_DYE), List.of(2, 1)), + + UG_MISERABELL = modFlower(Mods.UG, "miserabell", List.of(1f, 0.1f), List.of(Items.LIGHT_BLUE_DYE, Items.LIGHT_BLUE_DYE), List.of(2, 1)), + + UG_BUTTERBUNCH = modFlower(Mods.UG, "butterbunch", List.of(1f, 0.1f), List.of(Items.YELLOW_DYE, Items.YELLOW_DYE), List.of(2, 1)), + + UG_SHIMMERWEED = modFlower(Mods.UG, "shimmerweed", List.of(1f, 0.1f), List.of(Items.WHITE_DYE, Items.WHITE_DYE), List.of(2, 1)), + + UG_TALL_SHIMMERWEED = modFlower(Mods.UG, "tall_shimmerweed", List.of(1f, 0.25f, 0.1f), List.of( + Items.WHITE_DYE, Items.GREEN_DYE, Items.WHITE_DYE), List.of(3, 2, 1)), + + // Deeper and Darker + + DD_SCULK_GRIME = create(Mods.DD.recipeId("sculk_grime"), b -> b.duration(50) + .require(Mods.DD, "sculk_grime") + .output(1, Mods.DD, "grime_ball", 3) + .output(.5f, Mods.DD, "grime_ball", 1)), + + DD_GLOOMY_CACTUS = modFlower(Mods.DD, "gloomy_cactus", List.of(1f, 0.1f), List.of(Items.ORANGE_DYE, Items.ORANGE_DYE), List.of(2, 1)), + + DD_GLOWING_FLOWERS = modFlower(Mods.DD, "glowing_flowers", List.of(1f, 0.1f), List.of(Items.LIGHT_BLUE_DYE, Items.ORANGE_DYE), List.of(2, 1)), + + DD_LILY_FLOWER = modFlower(Mods.DD, "lily_flower", List.of(1f, 0.1f), List.of(Items.LIGHT_BLUE_DYE, Items.ORANGE_DYE), List.of(2, 1)) + ; protected GeneratedRecipe metalOre(String name, ItemEntry crushed, int duration) { diff --git a/src/main/java/com/simibubi/create/infrastructure/data/CreateRegistrateTags.java b/src/main/java/com/simibubi/create/infrastructure/data/CreateRegistrateTags.java index 80be64cd20..25660db940 100644 --- a/src/main/java/com/simibubi/create/infrastructure/data/CreateRegistrateTags.java +++ b/src/main/java/com/simibubi/create/infrastructure/data/CreateRegistrateTags.java @@ -153,6 +153,15 @@ public class CreateRegistrateTags { TagGen.addOptional(prov.tag(AllBlockTags.ROOTS.tag), Mods.TF, List.of("root", "liveroot_block", "mangrove_root")); + TagGen.addOptional(prov.tag(AllBlockTags.FAN_TRANSPARENT.tag), Mods.Q, + List.of("gold_bars", "grate")); + + TagGen.addOptional(prov.tag(AllBlockTags.FAN_TRANSPARENT.tag), Mods.UG, + List.of("cloggrum_bars")); + + TagGen.addOptional(prov.tag(AllBlockTags.TREE_ATTACHMENTS.tag), Mods.UG, + List.of("hanging_grongle_leaves", "gronglet")); + // VALIDATE for (AllBlockTags tag : AllBlockTags.values()) { @@ -228,6 +237,11 @@ public class CreateRegistrateTags { "finger_coral", "star_coral", "moss_coral", "petal_coral", "branch_coral", "rock_coral", "pillow_coral", "chrome_coral", "silk_coral")); + TagGen.addOptional(prov.tag(AllItemTags.UPRIGHT_ON_BELT.tag), Mods.UG, List.of("virulent_mix_bucket")); + + TagGen.addOptional(prov.tag(AllItemTags.UPRIGHT_ON_BELT.tag), Mods.UUE, List.of( + "warped_potion", "warped_infusion", "chorus_juice", "chorus_tea")); + // VALIDATE for (AllItemTags tag : AllItemTags.values()) { @@ -283,6 +297,7 @@ public class CreateRegistrateTags { helper.add(Mods.BMK, "blighted_balsa", "willow", "swamp_cypress", "ancient_oak"); helper.add(Mods.RU, "alpha", "ashen", "baobab", "blackwood", "brimwood", "cobalt", "cypress", "dead", "eucalyptus", "joshua", "kapok", "larch", "magnolia", "maple", "mauve", "palm", "pine", "redwood", "socotra", "willow"); + helper.add(Mods.UG, "smogstem", "wigglewood", "grongle"); TagGen.addOptional(logAppender, Mods.AUTUM, "maple"); @@ -300,6 +315,10 @@ public class CreateRegistrateTags { TagGen.addOptional(logAppender, Mods.RU, "stripped_yellow_bioshroom_stem"); TagGen.addOptional(woodAppender, Mods.RU, "stripped_yellow_bioshroom_hyphae"); TagGen.addOptional(logAppender, Mods.RU, "brimwood_log_magma"); + + TagGen.addOptional(logAppender, Mods.GOTD, "stripped_soulblight_stem"); + TagGen.addOptional(woodAppender, Mods.GOTD, "stripped_soulblight_hyphae"); + TagGen.addOptional(logAppender, Mods.UUE, "stripped_chorus_cane_block"); } private static void genFluidTags(RegistrateTagsProvider provIn) {