remove excluded mods
This commit is contained in:
49
modpack/kubejs/server_scripts/mekanism_recipes.js
Normal file
49
modpack/kubejs/server_scripts/mekanism_recipes.js
Normal file
@@ -0,0 +1,49 @@
|
||||
ServerEvents.recipes(event => {
|
||||
|
||||
event.remove({id: 'mekanismtools:osmium/nugget_from_blasting'})
|
||||
event.remove({id: 'mekanismtools:bronze/nugget_from_blasting'})
|
||||
event.remove({id: 'mekanismtools:refined_glowstone/nugget_from_blasting'})
|
||||
event.remove({id: 'mekanismtools:refined_obsidian/nugget_from_blasting'})
|
||||
event.remove({id: 'mekanismtools:steel/nugget_from_blasting'})
|
||||
event.remove({id: 'mekanismtools:osmium/nugget_from_smelting'})
|
||||
event.remove({id: 'mekanismtools:bronze/nugget_from_smelting'})
|
||||
event.remove({id: 'mekanismtools:refined_glowstone/nugget_from_smelting'})
|
||||
event.remove({id: 'mekanismtools:refined_obsidian/nugget_from_smelting'})
|
||||
event.remove({id: 'mekanismtools:steel/nugget_from_smelting'})
|
||||
|
||||
event.custom({
|
||||
"type": "mekanism:rotary",
|
||||
"fluidInput": {
|
||||
"amount": 1,
|
||||
"fluid": "bloodmagic:life_essence_fluid"
|
||||
},
|
||||
"fluidOutput": {
|
||||
"amount": 1,
|
||||
"fluid": "bloodmagic:life_essence_fluid"
|
||||
},
|
||||
"gasInput": {
|
||||
"amount": 1,
|
||||
"gas": "reclamation:aerated_essence"
|
||||
},
|
||||
"gasOutput": {
|
||||
"amount": 1,
|
||||
"gas": "reclamation:aerated_essence"
|
||||
}
|
||||
})
|
||||
|
||||
event.custom({
|
||||
"type": "mekanism:chemical_infusing",
|
||||
"leftInput": {
|
||||
"amount": 2,
|
||||
"gas": "reclamation:aerated_essence"
|
||||
},
|
||||
"output": {
|
||||
"amount": 1,
|
||||
"gas": "reclamation:essence_boosted_ethylene"
|
||||
},
|
||||
"rightInput": {
|
||||
"amount": 1,
|
||||
"gas": "mekanism:ethene"
|
||||
}
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user