77 lines
3.6 KiB
JavaScript
77 lines
3.6 KiB
JavaScript
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMod 10.
|
|
// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
|
|
|
RecipeViewerEvents.removeEntriesCompletely('item', allthemods => {
|
|
allthemods.remove('quarryplus:adv_quarry')
|
|
allthemods.remove('allthetweaks:greg_star')
|
|
allthemods.remove('allthetweaks:greg_star_block')
|
|
|
|
for (let i = 1; i < 10; i++) {
|
|
allthemods.remove(`allthecompressed:greg_star_block_${i}x`)
|
|
}
|
|
|
|
allthemods.remove('relics:researching_table')
|
|
// allthemods.remove("extradisks:infinite_chemical_storage_block")
|
|
// allthemods.remove("extradisks:infinite_chemical_storage_disk")
|
|
// allthemods.remove("extradisks:infinite_chemical_storage_part")
|
|
// allthemods.remove("extradisks:infinite_fluid_storage_block")
|
|
// allthemods.remove("extradisks:infinite_fluid_storage_disk")
|
|
// allthemods.remove("extradisks:infinite_fluid_storage_part")
|
|
// allthemods.remove("extradisks:infinite_item_storage_block")
|
|
// allthemods.remove("extradisks:infinite_item_storage_disk")
|
|
// allthemods.remove("extradisks:infinite_item_storage_part")
|
|
|
|
let $DyeColor = Java.loadClass("net.minecraft.world.item.DyeColor")
|
|
for (let color of $DyeColor.values()) {
|
|
allthemods.remove(`/refinedstorage:${color}_.*/`)
|
|
}
|
|
|
|
allthemods.remove('mekmm:scrap')
|
|
allthemods.remove('mekmm:scrap_box')
|
|
allthemods.remove('mekmm:empty_crystal')
|
|
allthemods.remove('mekmm:uu_matter')
|
|
allthemods.remove('mekmm:ambient_gas_collector')
|
|
allthemods.remove(/mekmm:.*replicat.*/)
|
|
allthemods.remove(/mekmm:.*recycl.*/)
|
|
allthemods.remove(/mekmm:.*planting.*/)
|
|
allthemods.remove('mekmm:cnc_lathe')
|
|
allthemods.remove(/mekmm:.*lathing.*/)
|
|
allthemods.remove(/mekmm:.*rolling_mill.*/)
|
|
|
|
allthemods.remove("supplementaries:faucet")
|
|
})
|
|
|
|
// RecipeViewerEvents.removeEntriesCompletely('mekanism:chemical', allthemods => {
|
|
//
|
|
// allthemods.remove('mekmm:uu_matter')
|
|
// allthemods.remove('mekmm:unstable_dimensional_gas')
|
|
// })
|
|
|
|
RecipeViewerEvents.removeRecipes(event => {
|
|
event.remove(["xycraft_machines:extractor/enderio/grains_of_infinity"])
|
|
})
|
|
|
|
RecipeViewerEvents.addInformation('item', allthemods => {
|
|
allthemods.add('justdirethings:polymorphic_catalyst', [
|
|
'§8Drop a §cPolymorphic Catalyst§8 into §1Water§8 to get Polymorphic Fluid'
|
|
])
|
|
allthemods.add('justdirethings:portal_fluid_catalyst', [
|
|
'§8Drop a §dPortal Fluid Catalyst§8 into Polymorphic Fluid§8 in t§dThe End§8 to get §5Unstable Portal Fluid'
|
|
])
|
|
})
|
|
|
|
RecipeViewerEvents.addInformation('fluid', allthemods => {
|
|
allthemods.add("advanced_ae:quantum_infusion_source", [
|
|
'§8In the Reaction Chamber: §e4000mb of Water§8 + §e1x Quantum Infused Dust§8 = §b1000mb of Quantum Infusion'
|
|
])
|
|
allthemods.add("justdirethings:polymorphic_fluid_source", [
|
|
'§8Drop a §cPolymorphic Catalyst§8 into §bWater§8 to get Polymorphic Fluid'
|
|
])
|
|
allthemods.add("justdirethings:unstable_portal_fluid_source", [
|
|
'§8Drop a §dPortal Fluid Catalyst§8 into §dPolymorphic Fluid§8 in §5The End§8 to get §5Unstable Portal Fluid'
|
|
])
|
|
})
|
|
|
|
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10.
|
|
// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|