Fellies/kubejs/server_scripts/fellies/kubejs/base/recipetypes/mekanism/crushing.js

35 lines
1.0 KiB
JavaScript

events.listen('recipes', function (event) {
var data = {
recipes: [
{
input: '#forge:gems/ender',
output: item.of('emendatusenigmatica:ender_dust')
}
// {
// input: 'byg:pink_sandstone',
// output: item.of('byg:pink_sand', 2)
// },
// {
// input: 'byg:purple_sandstone',
// output: item.of('byg:purple_sand', 2)
// },
// {
// input: 'byg:blue_sandstone',
// output: item.of('byg:blue_sand', 2)
// },
// {
// input: 'byg:white_sandstone',
// output: item.of('byg:white_sand', 2)
// },
// {
// input: 'byg:black_sandstone',
// output: item.of('byg:black_sand', 2)
// }
]
};
data.recipes.forEach((recipe) => {
event.recipes.mekanism.crushing(recipe.output, recipe.input);
});
});