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

KubeJS Recipe additions #197

Open
KingSkel opened this issue Oct 14, 2024 · 1 comment
Open

KubeJS Recipe additions #197

KingSkel opened this issue Oct 14, 2024 · 1 comment
Labels

Comments

@KingSkel
Copy link

KingSkel commented Oct 14, 2024

Good Morning/Evening!
I'm attempting to add some recipes for some custom Quantum Compression recipes. Though it seems while the 3x3, 5x5, 7x7, and 9x9 crafting template works, the Quantum Compressing template from https://blakesmods.com/docs/extendedcrafting/compression-recipes is not working for the versions listed below.

Here is an example, of what I'm trying to do with minecraft:diamond as a placeholder until I can make sure the rest of it works:
ServerEvents.recipes(event => { event.custom( { "type": "extendedcrafting:compressor", "power_cost": 500000, "ingredient": { "item": "#c:ingots/bronze", "count": 100000 }, "catalyst": { "item": "extendedcrafting:ultimate_catalyst" }, "result": { "id": "minecraft:diamond" } } ) })

I know modded materials are having a bug where the singularities are uncraftable, but until you can fix that, I need to add my own recipes. Either way, I still need this recipe to work for singularities you do not have in your mod. ie:allthemodium singularity, titanium singularity, chromium singularity, etc.

Versions:

  • Minecraft: 1.21.1
  • NeoForge: 21.1.61
  • Cucumber: 1.21.1-8.0.6
  • Extended Crafting: 1.21.1-7.0.0
  • KubeJS: 2101.7.0-build.171
@KingSkel KingSkel added the Bug label Oct 14, 2024
@BlakeBr0
Copy link
Owner

Your ingredient is using the wrong syntax. It should be { "item": "<item id here>", "count": 100000 } or since it looks like you want to use a tag it should be { "tag": "c:ingots/bronze", "count": 100000 }

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

No branches or pull requests

2 participants