neuralgia/kubejs/server_scripts/create/customRecipes.js
2023-11-11 12:37:05 +07:00

15 lines
No EOL
310 B
JavaScript

const customWelding = (event,[input1,input2],result,tier) => {
event.custom({
type: "tfc:welding",
first_input: {
tag: input1
},
second_input: {
tag: input2
},
result: {
item: result
},
tier: tier,
})
}