
just want to ask some question
KimYo2 opened this issue ยท 5 comments
is there any way to add more recipes to the circuit slicer. with KubeJs or CraftTweaker?
you can add circuit slicer recipe by datapack like this https://github.com/GlodBlock/ExtendedAE/blob/1.21.1-neoforge/src/generated/resources/data/extendedae/recipe/cutter/concurrent_processor.json
kubejs should supports that https://github.com/AllTheMods/ATM-10/blob/main/kubejs/server_scripts/mods/Applied%20Energistics/Recipes.js
1.20 is like this
{
"type": "expatternprovider:circuit_cutter",
"fluid_input": {
"amount": 100,
"ingredient": {
"fluid": "minecraft:water"
}
},
"item_input": {
"amount": 1,
"ingredient": {
"tag": "forge:storage_blocks/diamond"
}
},
"output": {
"count": 9,
"item": "ae2:printed_engineering_processor"
}
}
// Add recipes for Circuit Cutter
ServerEvents.recipes((event) => {
event
.custom({
type: "expatternprovider:circuit_cutter",
item_input: {
ingredient: {
item: "kubejs:charged_redstone_block",
},
},
fluid_input: {
amount: 100,
ingredient: {
fluid: "minecraft:water",
},
},
output: {
count: 9,
item: "appflux:printed_energy_processor",
},
})
.id("expatternprovider:circuit_cutter/printed_energy_processor");
});
is this right? nothing error in game but nothing show up
i think to should be
ServerEvents.recipes((event) => {
event
.custom({
"type": "expatternprovider:circuit_cutter",
"item_input": {
"ingredient": {
"item": "kubejs:charged_redstone_block",
},
},
"fluid_input": {
"amount": 100,
"ingredient": {
"fluid": "minecraft:water",
},
},
"output": {
"count": 9,
"item": "appflux:printed_energy_processor",
},
})
.id("expatternprovider:circuit_cutter/printed_energy_processor");
});