Fellies/kubejs/server_scripts/fellies/kubejs/recipes/create/create.js

22 lines
720 B
JavaScript

// priority: 99
/*
* Supported types:
* conversion, crushing, cutting, milling, basin, mixing, compacting,
* pressing, sandpaper_polishing, splashing, filling, emptying, mechanical_crafting
*
* Notes:
* mixing and compacting supports .heated() and .superheated()
* mechanical_crafting correlates to vanilla shaped crafting
*
* Url: https://www.curseforge.com/minecraft/mc-mods/kubejs-create
*/
events.listen('recipes', e => {
const {
conversion, crushing, cutting, milling, basin, mixing, compacting,
pressing, sandpaper_polishing, splashing, filling, emptying, mechanical_crafting
} = e.recipes.create;
pressing(Item.of('#forge:storage_blocks/coal', 9), 'kubejs:graphite_one');
});