#How to create Item Application recipes using KubeJS Create Addon?

13 messages · Page 1 of 1 (latest)

signal forge
#

An example of doing it via JSON, how to do this dynamically using KubeJS Create?
{ "type": "create:item_application", "ingredients": [ { "item": "minecraft:stone" }, { "item": "minecraft:iron_ingot" } ], "results": [ { "id": "minecraft:block_of_iron" } ] }

grim axleBOT
#

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

smoky prism
#

just read wiki

fickle pagoda
#
e.recipes.create.item_application('block_of_iron', ['stone', 'iron_ingot'])
safe flax
#
ServerEvents.recipes(event => {
  event.recipes.create.item_application(
    ['minecraft:iron_block'],
    ['minecraft:stone', 'minecraft:iron_ingot']
  )
})
#

(block_of_iron) is not an item in Minecraft

fickle pagoda
#

i just copied the stuff from above, didnt look at IDs

signal forge
signal forge
#

Bruh

signal forge