#Create Recipe Replacement

6 messages · Page 1 of 1 (latest)

quasi pollen
#

I'm trying to change multiple recipe's input/output to be the same. In this case, replacing all dough (Create, Pam's Harvest) to be Farmer's Delight

I used the following function

    // Create Dough replacement with all recipes to Farmers Delight Dough
    event.replaceInput(
        {input: 'create:dough' },            // Arg 1: the filter
        'create:dough',                      // Arg 2: the item to replace
        'farmersdelight:wheat_dough'         // Arg 3: the item to replace it with
    )

    // Create Dough Output with all recipes to Farmers Delight Dough
    event.replaceOutput(
        { output: 'create:dough' },            // Arg 1: the filter
        'create:dough',                      // Arg 2: the item to replace
        'farmersdelight:wheat_dough'         // Arg 3: the item to replace it with
    )

This fixes all crafting recipes, but not the Create specific ones (splashing, etc).

velvet juncoBOT
#

Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!

zinc bobcat
#

Replave input/output doesn't work with ones from other mods because kubeJS doesn't know what the inputs and outputs are

#

You can replace the recipes that output dough manually

#

Or, you can try make your own recipe schema and that might fix it, but I'm not particularly sure on the best way to go about that

quasi pollen
#

which is a bit sad, per the documentation you'd be able to modify/crreate recipes using the custom function as long as the mod supports datapacks, which create does