Botany Pots

Botany Pots

33M Downloads

[QUESTION][1.20.1] Is it possible for datapack pot_interaction to consume the held item

jonatjano opened this issue ยท 1 comments

commented

Question

I'm doing a datapack with the goal to use pot interaction to convert mystical agriculture farmlands from one tier to another using the correct essence,
I couldn't find in the example a case where the held item was consummed, with the current state my datapack allow for essence duplication which is something I'd like to avoid

versions

Minecraft: 1.20.1
NeoForge: 47.1.106
Botany Pots: 13.0.36

commented

for reference, here is the recipe to transform inferium farmland to prudentium

{
    "type": "botanypots:pot_interaction",
    "held_ingredient": {
        "item": "mysticalagriculture:prudentium_essence"
    },
    "soil_ingredient": {
        "item": "mysticalagriculture:inferium_farmland"
    },
    "soil_output": {
        "item": "mysticalagriculture:prudentium_farmland",
        "count": 1
    },
    "sound": {
        "sound": "minecraft:block.sand.break",
        "category": "blocks"
    }
}