blob: 271e29d65441214347a5a23ff1472208b79558dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
package gtPlusPlus.xmod.gregtech.recipes;
import gregtech.api.util.GTPP_Recipe;
import gregtech.api.util.GT_Recipe;
import gtPlusPlus.api.objects.Logger;
import gtPlusPlus.core.material.Material;
import gtPlusPlus.core.material.ORES;
import gtPlusPlus.core.util.minecraft.ItemUtils;
import net.minecraft.item.ItemStack;
import net.minecraftforge.fluids.FluidStack;
public class RecipesToRemove {
public static void go() {
Logger.INFO("Processing Gregtech recipe maps, removing recipes to suit GT++.");
// Remove Rare Earth Centrifuging
// 1 Rare Earth Dust - 25% chance for small piles of: neodymium, yttrium, lanthanum, cerium, cadmium, and
// caesium
// Replaced by advanced sifting recipe.
GT_Recipe aRareEarthCentrifuging = GT_Recipe.GT_Recipe_Map.sCentrifugeRecipes.findRecipe(
null, false, 20, new FluidStack[] {}, new ItemStack[] {
ItemUtils.getItemStackOfAmountFromOreDict("dustRareEarth", 1)
});
if (aRareEarthCentrifuging != null && aRareEarthCentrifuging.mEnabled) {
aRareEarthCentrifuging.mEnabled = false;
aRareEarthCentrifuging.mHidden = true;
GT_Recipe.GT_Recipe_Map.sCentrifugeRecipes.mRecipeList.remove(aRareEarthCentrifuging);
// GTPP_Recipe.GT_Recipe_Map_LargeCentrifuge.sMultiblockCentrifugeRecipes.mRecipeList.remove(aRareEarthCentrifuging);
GTPP_Recipe.GTPP_Recipe_Map.sMultiblockCentrifugeRecipes_GT.mRecipeList.remove(aRareEarthCentrifuging);
Logger.INFO("Removed vanilla GT Rare Earth processing.");
// Set the Chemical Symbol for Rare Earth now that we are giving it custom outputs
// Best not to set this unless the original recipe is removed.
/*Materials.RareEarth.mChemicalFormula = "("
+ELEMENT.getInstance().YTTRIUM.vChemicalSymbol
+ELEMENT.getInstance().NEODYMIUM.vChemicalSymbol
+ELEMENT.getInstance().LANTHANUM.vChemicalSymbol
+ELEMENT.getInstance().CERIUM.vChemicalSymbol
+ELEMENT.getInstance().CADMIUM.vChemicalSymbol
+ELEMENT.getInstance().CAESIUM.vChemicalSymbol
+ELEMENT.getInstance().YTTERBIUM.vChemicalSymbol
+ELEMENT.getInstance().SAMARIUM.vChemicalSymbol
+ELEMENT.getInstance().GADOLINIUM.vChemicalSymbol+
")";*/
Material[] aLowTierOutputMaterials = new Material[] {ORES.GREENOCKITE};
}
}
}
|