Version 1.0.22

This commit is contained in:
2023-07-11 22:00:55 +00:00
parent e3d5caae1e
commit 9c58e91959
104 changed files with 4613 additions and 490 deletions

View File

@@ -19,4 +19,31 @@ ServerEvents.recipes(e => {
// remove combiner recipes for ores
e.remove({ type: 'mekanism:combining', id: /ore/ })
// Nerf ethylene
e.remove({ id: 'mekanism:reaction/substrate/water_hydrogen'})
e.custom({
"type": "mekanism:reaction",
"duration": 100,
"fluidInput": {
"amount": 10,
"tag": "minecraft:water"
},
"gasInput": {
"amount": 100,
"gas": "mekanism:hydrogen"
},
"gasOutput": {
"amount": 50,
"gas": "mekanism:ethene"
},
"itemInput": {
"amount": 2,
"ingredient": {
"tag": "forge:fuels/bio"
}
},
"itemOutput": {
"item": "mekanism:substrate"
}
}).id('kubejs:mek/ethene')
})