Applied Flux

Applied Flux

9M Downloads

just want to ask some question

KimYo2 opened this issue ยท 5 comments

commented

is there any way to add more recipes to the circuit slicer. with KubeJs or CraftTweaker?

commented

for mc 1.20.1 forge

commented

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"
  }
}
commented

// 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

commented

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");
});