Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

just want to ask some question #328

Open
KimYo2 opened this issue Jan 18, 2025 · 5 comments
Open

just want to ask some question #328

KimYo2 opened this issue Jan 18, 2025 · 5 comments

Comments

@KimYo2
Copy link

KimYo2 commented Jan 18, 2025

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

@KimYo2
Copy link
Author

KimYo2 commented Jan 18, 2025

for mc 1.20.1 forge

@GlodBlock
Copy link
Owner

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

@KimYo2
Copy link
Author

KimYo2 commented Jan 18, 2025

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

@GlodBlock
Copy link
Owner

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants