
This addon enables KubeJS recipe integration for Create: Crafts & Additions, allowing you to create and modify recipes for all CC&A machines through scripts.
Supported Recipes
- Rolling Mill recipes - Fully Supported(Sequenced also).
- Liquid Burner - Fully Supported.
- Charging(Tesla Coil) - Fully Supported(Not yet in sequenced asm. for some reason)
Create custom recipes, modify existing ones, or completely rebalance CC&A machines to fit your modpack or server needs. All recipe types from Create: Crafts & Additions lonely are fully supported.
The mod is in development, if you found bug please write it in comments.
Examples of recipes
Rolling Mill:
ServerEvents.recipes(event => {
event.recipes.createaddition.rolling(
'minecraft:dirt',
'minecraft:iron_ingot')
})
Where "minecraft:dirt" is input and "minecraft:iron_ingot" is output.
Charging(Tesla Coil):
ServerEvents.recipes(event => {
event.recipes.createaddition.charging(
'minecraft:diamond_sword',
'minecraft:iron_sword',
8000, 400)
})
Where "minecraft:diamond_sword" is input, "minecraft:iron_sword" is output, "8000" is Energy and "400" is MaxChargeRate.
Liquid Burning
ServerEvents.recipes(event => {
event.recipes.createaddition.liquid_burning('minecraft:water', 2400)
})
Where "minecraft:water" is input and "2400" is burning time in ticks