Remove GT Mana Infused & Hide Thermal Stuff

Removes GT Mana Infused, adds conversion recipes for ingot and dust.

Fixes https://github.com/tracer4b/nomi-ceu/issues/233

Hides all Thermal Hardened Glass.

Hides Mana Infused Ore
This commit is contained in:
IntegerLimit 2023-02-05 21:32:17 +11:00
parent e37fe7a7f7
commit f6d48743ba
3 changed files with 12 additions and 2 deletions

View File

@ -405,6 +405,13 @@ mixer.recipeBuilder()
.inputs([<thermalfoundation:material:1028>, <metaitem:dustTitanium>]) .inputs([<thermalfoundation:material:1028>, <metaitem:dustTitanium>])
.duration(200).EUt(30).buildAndRegister(); .duration(200).EUt(30).buildAndRegister();
// Temporary Conversion recipe between gt and thermal mana infused
recipes.addShapeless(<thermalfoundation:material:136>, [<gregtech:meta_ingot:32021>]);
recipes.addShapeless(<thermalfoundation:material:72>, [<gregtech:meta_dust:32021>]);
// Hide GT Mana infused
scripts.common.removeMaterialSolid(32021);
//Remove Unobtainable Satchel and Void Satchel Recipe //Remove Unobtainable Satchel and Void Satchel Recipe
//Remove Rockwool smelting recipe //Remove Rockwool smelting recipe

View File

@ -2156,6 +2156,9 @@ mods.jei.JEI.removeAndHide(<thermalfoundation:tool.hammer_diamond>);
mods.jei.JEI.removeAndHide(<thermalfoundation:rockwool:*>); mods.jei.JEI.removeAndHide(<thermalfoundation:rockwool:*>);
mods.jei.JEI.removeAndHide(<thermalfoundation:material:864>); mods.jei.JEI.removeAndHide(<thermalfoundation:material:864>);
mods.jei.JEI.removeAndHide(<thermalfoundation:material:865>); mods.jei.JEI.removeAndHide(<thermalfoundation:material:865>);
mods.jei.JEI.removeAndHide(<thermalfoundation:ore:8>);
mods.jei.JEI.removeAndHide(<thermalfoundation:glass:*>);
mods.jei.JEI.removeAndHide(<thermalfoundation:glass_alloy:*>);
//Custom Materials Removals //Custom Materials Removals
@ -2623,7 +2626,7 @@ recipes.addShapeless(<metaitem:ingotRedAlloy>, [<enderio:item_alloy_ingot:3>]);
mods.jei.JEI.removeAndHide(<thermalfoundation:material:193>); mods.jei.JEI.removeAndHide(<thermalfoundation:material:193>);
mods.jei.JEI.removeAndHide(<thermalfoundation:material:194>); mods.jei.JEI.removeAndHide(<thermalfoundation:material:194>);
mods.jei.JEI.removeAndHide(<thermalfoundation:material:195>); mods.jei.JEI.removeAndHide(<thermalfoundation:material:195>);
mods.jei.JEI.removeAndHide(<thermalfoundation:material:200>); //mods.jei.JEI.removeAndHide(<thermalfoundation:material:200>);
mods.jei.JEI.removeAndHide(<thermalfoundation:material:228>); mods.jei.JEI.removeAndHide(<thermalfoundation:material:228>);
mods.jei.JEI.removeAndHide(<extendedcrafting:material:1>); mods.jei.JEI.removeAndHide(<extendedcrafting:material:1>);
mods.jei.JEI.removeAndHide(<libvulpes:productnugget:3>); mods.jei.JEI.removeAndHide(<libvulpes:productnugget:3>);

View File

@ -143,7 +143,7 @@ var electrum_flux = MaterialBuilder(32019, "electrum_flux")
var mithril = MaterialBuilder(32021, "mithril") var mithril = MaterialBuilder(32021, "mithril")
.ingot() .ingot()
.color(0x428fdb).iconSet("dull") .color(0x428fdb).iconSet("dull")
.flags("generate_plate", "generate_gear") .flags("generate_plate", "generate_gear", "no_unification")
.components([<material:titanium> * 1, <material:mana> * 1]) .components([<material:titanium> * 1, <material:mana> * 1])
.build(); .build();