From b96a7b49ed404b8964f2383b07df971a8c350ed4 Mon Sep 17 00:00:00 2001 From: DarkBladeNemo Date: Wed, 24 Sep 2025 15:01:56 +0200 Subject: [PATCH] Add Botany Pots interaction: till rich soil into rich soil farmland --- .../interaction/till_rich_soil_farmland.json | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 common/src/main/resources/data/botanypots/recipe/farmersdelight/interaction/till_rich_soil_farmland.json diff --git a/common/src/main/resources/data/botanypots/recipe/farmersdelight/interaction/till_rich_soil_farmland.json b/common/src/main/resources/data/botanypots/recipe/farmersdelight/interaction/till_rich_soil_farmland.json new file mode 100644 index 00000000..988dfe18 --- /dev/null +++ b/common/src/main/resources/data/botanypots/recipe/farmersdelight/interaction/till_rich_soil_farmland.json @@ -0,0 +1,24 @@ +{ + "bookshelf:load_conditions": [ + { + "type": "bookshelf:block_exists", + "values": [ + "farmersdelight:rich_soil" + ] + } + ], + "type": "botanypots:pot_interaction", + "held_item": { + "tag": "minecraft:hoes" + }, + "soil_item": { + "item": "farmersdelight:rich_soil" + }, + "new_soil": { + "id": "farmersdelight:rich_soil_farmland" + }, + "sound_effect": { + "id": "minecraft:item.hoe.till", + "category": "BLOCKS" + } +}