1
0
mirror of https://git.fellies.tech/minecraft/fellies.git synced 2021-02-13 10:18:48 +00:00
Files
Fellies/kubejs[e6]/server_scripts/enigmatica/kubejs/base/recipetypes/mekanism/injecting.js
2021-01-31 16:23:02 +01:00

22 lines
683 B
JavaScript

events.listen('recipes', function (event) {
var data = {
recipes: [
{
output: 'buildinggadgets:construction_block_dense',
input: 'buildinggadgets:construction_block_powder',
gas: {gas: 'mekanism:steam', amount: 200}
},
{
output: 'buildinggadgets:construction_block_dense',
input: 'buildinggadgets:construction_block_powder',
gas: {gas: 'mekanism:water_vapor', amount: 200}
}
]
};
data.recipes.forEach((recipe) => {
event.recipes.mekanism.injecting(recipe.output, recipe.input, recipe.gas)
});
});