aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/loaders/oreprocessing
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gregtech/loaders/oreprocessing')
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingArrows.java12
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingBeans.java4
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingBlock.java30
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingCell.java20
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingCrafting.java106
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingCrate.java20
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingCrop.java36
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingCrushedOre.java18
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingCrystallized.java8
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingDirty.java20
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingDust.java92
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingDye.java6
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingFoil.java4
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingFood.java24
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingGear.java6
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingGem.java98
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingIngot.java42
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingLens.java14
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingLog.java72
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingNugget.java15
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingOre.java22
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingOrePoor.java8
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingOreSmelting.java33
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingPipe.java8
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingPlank.java30
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingPlate.java68
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingPure.java8
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingRecycling.java4
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingRotor.java16
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingRound.java4
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingSand.java4
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingSaplings.java12
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingScrew.java4
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingShaping.java133
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingSlab.java4
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingStick.java20
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingStickLong.java12
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingStone.java76
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingStoneCobble.java4
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingToolHead.java46
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingTransforming.java24
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingWax.java2
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingWire.java68
43 files changed, 617 insertions, 640 deletions
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingArrows.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingArrows.java
index bb32333429..11d1b1e1b8 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingArrows.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingArrows.java
@@ -1,6 +1,6 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sChemicalBathRecipes;
+import static gregtech.api.recipe.RecipeMaps.chemicalBathRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import net.minecraft.enchantment.Enchantment;
@@ -40,7 +40,7 @@ public class ProcessingArrows implements gregtech.api.interfaces.IOreRecipeRegis
.fluidInputs(Materials.HolyWater.getFluid(25L))
.duration(5 * SECONDS)
.eut(2)
- .addTo(sChemicalBathRecipes);
+ .addTo(chemicalBathRecipes);
tOutput = GT_Utility.copyAmount(1, aStack);
GT_Utility.updateItemStack(tOutput);
@@ -55,7 +55,7 @@ public class ProcessingArrows implements gregtech.api.interfaces.IOreRecipeRegis
.fluidInputs(Materials.FierySteel.getFluid(25L))
.duration(5 * SECONDS)
.eut(2)
- .addTo(sChemicalBathRecipes);
+ .addTo(chemicalBathRecipes);
tOutput = GT_Utility.copyAmount(1, aStack);
GT_Utility.updateItemStack(tOutput);
@@ -70,7 +70,7 @@ public class ProcessingArrows implements gregtech.api.interfaces.IOreRecipeRegis
.fluidInputs(Materials.Blaze.getMolten(18L))
.duration(5 * SECONDS)
.eut(2)
- .addTo(sChemicalBathRecipes);
+ .addTo(chemicalBathRecipes);
tOutput = GT_Utility.copyAmount(1, aStack);
GT_Utility.updateItemStack(tOutput);
@@ -85,7 +85,7 @@ public class ProcessingArrows implements gregtech.api.interfaces.IOreRecipeRegis
.fluidInputs(Materials.Rubber.getMolten(18L))
.duration(5 * SECONDS)
.eut(2)
- .addTo(sChemicalBathRecipes);
+ .addTo(chemicalBathRecipes);
tOutput = GT_Utility.copyAmount(1, aStack);
GT_Utility.updateItemStack(tOutput);
@@ -101,7 +101,7 @@ public class ProcessingArrows implements gregtech.api.interfaces.IOreRecipeRegis
.fluidInputs(Materials.Mercury.getFluid(25L))
.duration(5 * SECONDS)
.eut(2)
- .addTo(sChemicalBathRecipes);
+ .addTo(chemicalBathRecipes);
if (!aMaterial.mUnificatable) {
return;
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingBeans.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingBeans.java
index 9aed3d19af..2fb200216e 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingBeans.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingBeans.java
@@ -1,6 +1,6 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sMaceratorRecipes;
+import static gregtech.api.recipe.RecipeMaps.maceratorRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import net.minecraft.item.ItemStack;
@@ -30,6 +30,6 @@ public class ProcessingBeans implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Cocoa, 1L))
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingBlock.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingBlock.java
index e424f1c606..b948f251f0 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingBlock.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingBlock.java
@@ -1,10 +1,10 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sAssemblerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sCompressorRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sCutterRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sFluidSolidficationRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sHammerRecipes;
+import static gregtech.api.recipe.RecipeMaps.assemblerRecipes;
+import static gregtech.api.recipe.RecipeMaps.compressorRecipes;
+import static gregtech.api.recipe.RecipeMaps.cutterRecipes;
+import static gregtech.api.recipe.RecipeMaps.fluidSolidifierRecipes;
+import static gregtech.api.recipe.RecipeMaps.hammerRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
import static gregtech.api.util.GT_Utility.calculateRecipeEU;
@@ -49,7 +49,7 @@ public class ProcessingBlock implements gregtech.api.interfaces.IOreRecipeRegist
Math.min(1000, ((int) Math.max(aMaterial.getMass() * 10L, 1L)) * TICKS * 30 / 320))))
.duration(2 * ((int) Math.max(aMaterial.getMass() * 10L, 1L)) * TICKS)
.eut(TierEU.RECIPE_LV)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack), GT_Utility.getIntegratedCircuit(3))
@@ -61,7 +61,7 @@ public class ProcessingBlock implements gregtech.api.interfaces.IOreRecipeRegist
Math.min(750, ((int) Math.max(aMaterial.getMass() * 10L, 1L)) * TICKS * 30 / 426))))
.duration(2 * ((int) Math.max(aMaterial.getMass() * 10L, 1L)) * TICKS)
.eut(TierEU.RECIPE_LV)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack), GT_Utility.getIntegratedCircuit(3))
@@ -73,7 +73,7 @@ public class ProcessingBlock implements gregtech.api.interfaces.IOreRecipeRegist
Math.min(250, ((int) Math.max(aMaterial.getMass() * 10L, 1L)) * TICKS * 30 / 1280))))
.duration(((int) Math.max(aMaterial.getMass() * 10L, 1L)) * TICKS)
.eut(TierEU.RECIPE_LV)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
}
@@ -89,7 +89,7 @@ public class ProcessingBlock implements gregtech.api.interfaces.IOreRecipeRegist
Math.min(1000, ((int) Math.max(aMaterial.getMass() * 10L, 1L)) * TICKS * 30 / 320))))
.duration(2 * ((int) Math.max(aMaterial.getMass() * 10L, 1L)) * TICKS)
.eut(TierEU.RECIPE_LV)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -101,7 +101,7 @@ public class ProcessingBlock implements gregtech.api.interfaces.IOreRecipeRegist
Math.min(750, ((int) Math.max(aMaterial.getMass() * 10L, 1L)) * TICKS * 30 / 426))))
.duration(2 * ((int) Math.max(aMaterial.getMass() * 10L, 1L)) * TICKS)
.eut(TierEU.RECIPE_LV)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -113,7 +113,7 @@ public class ProcessingBlock implements gregtech.api.interfaces.IOreRecipeRegist
Math.min(250, ((int) Math.max(aMaterial.getMass() * 10L, 1L)) * TICKS * 30 / 1280))))
.duration(((int) Math.max(aMaterial.getMass() * 10L, 1L)) * TICKS)
.eut(TierEU.RECIPE_LV)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
}
}
@@ -142,7 +142,7 @@ public class ProcessingBlock implements gregtech.api.interfaces.IOreRecipeRegist
.fluidInputs(aMaterial.getMolten(1296L))
.duration(14 * SECONDS + 8 * TICKS)
.eut(8)
- .addTo(sFluidSolidficationRecipes);
+ .addTo(fluidSolidifierRecipes);
}
}
}
@@ -173,7 +173,7 @@ public class ProcessingBlock implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(tStack2)
.duration(5 * SECONDS)
.eut(24)
- .addTo(sHammerRecipes);
+ .addTo(hammerRecipes);
}
if (GregTech_API.sRecipeFile.get(
@@ -196,7 +196,7 @@ public class ProcessingBlock implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.block, aMaterial, 1L))
.duration(15 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 2))
- .addTo(sCompressorRecipes);
+ .addTo(compressorRecipes);
}
switch (aMaterial.mName) {
@@ -207,7 +207,7 @@ public class ProcessingBlock implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(ItemList.IC2_Compressed_Coal_Chunk.get(1L))
.duration(20 * SECONDS)
.eut(4)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingCell.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingCell.java
index c99894caab..d681df1b5a 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingCell.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingCell.java
@@ -1,8 +1,8 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sCentrifugeRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sElectrolyzerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sVacuumRecipes;
+import static gregtech.api.recipe.RecipeMaps.centrifugeRecipes;
+import static gregtech.api.recipe.RecipeMaps.electrolyzerRecipes;
+import static gregtech.api.recipe.RecipeMaps.vacuumFreezerRecipes;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
import static gregtech.api.util.GT_RecipeConstants.FUEL_TYPE;
import static gregtech.api.util.GT_RecipeConstants.FUEL_VALUE;
@@ -51,8 +51,6 @@ public class ProcessingCell implements IOreRecipeRegistrator {
}
recipeBuilder.metadata(FUEL_VALUE, aMaterial.mFuelPower)
.metadata(FUEL_TYPE, aMaterial.mFuelType)
- .duration(0)
- .eut(0)
.addTo(GT_RecipeConstants.Fuel);
}
if (!((aMaterial.mMaterialList.size() > 0) && ((aMaterial.mExtraData & 0x3) != 0))) {
@@ -139,7 +137,7 @@ public class ProcessingCell implements IOreRecipeRegistrator {
recipeBuilder.itemOutputs(outputsArray)
.duration(Math.max(1L, Math.abs(aMaterial.getProtons() * 2L * tItemAmount)))
.eut(Math.min(4, tList.size()) * 30)
- .addTo(sElectrolyzerRecipes);
+ .addTo(electrolyzerRecipes);
} else {
long tCellBalance = tCapsuleCount + tItemAmount - 1;
GT_RecipeBuilder recipeBuilder = GT_Values.RA.stdBuilder();
@@ -155,7 +153,7 @@ public class ProcessingCell implements IOreRecipeRegistrator {
recipeBuilder.itemOutputs(outputsArray)
.duration(Math.max(1L, Math.abs(aMaterial.getProtons() * 8L * tItemAmount)))
.eut(Math.min(4, tList.size()) * 30)
- .addTo(sElectrolyzerRecipes);
+ .addTo(electrolyzerRecipes);
}
}
if ((aMaterial.mExtraData & 0x2) != 0) {
@@ -174,7 +172,7 @@ public class ProcessingCell implements IOreRecipeRegistrator {
recipeBuilder.itemOutputs(outputsArray)
.duration(Math.max(1L, Math.abs(aMaterial.getMass() * 2L * tItemAmount)))
.eut(5)
- .addTo(sCentrifugeRecipes);
+ .addTo(centrifugeRecipes);
}
}
}
@@ -194,14 +192,10 @@ public class ProcessingCell implements IOreRecipeRegistrator {
case "Tin":
recipeBuilder.metadata(FUEL_VALUE, 150_000)
.metadata(FUEL_TYPE, 4)
- .duration(0)
- .eut(0)
.addTo(GT_RecipeConstants.Fuel);
default:
recipeBuilder.metadata(FUEL_VALUE, (int) Math.max(1024L, 1024L * aMaterial.getMass()))
.metadata(FUEL_TYPE, 4)
- .duration(0)
- .eut(0)
.addTo(GT_RecipeConstants.Fuel);
}
if (GT_OreDictUnificator.get(OrePrefixes.cell, aMaterial, 1L) != null) {
@@ -210,7 +204,7 @@ public class ProcessingCell implements IOreRecipeRegistrator {
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.cell, aMaterial, 1L))
.duration(((int) Math.max(aMaterial.getMass() * 2L, 1L)) * TICKS)
.eut(TierEU.RECIPE_MV)
- .addTo(sVacuumRecipes);
+ .addTo(vacuumFreezerRecipes);
}
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrafting.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrafting.java
index 5c2f74a9cd..438da254a2 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrafting.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrafting.java
@@ -3,8 +3,8 @@ package gregtech.loaders.oreprocessing;
import static gregtech.api.enums.Mods.AppliedEnergistics2;
import static gregtech.api.enums.Mods.BuildCraftSilicon;
import static gregtech.api.enums.Mods.NewHorizonsCoreMod;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sAssemblerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sLaserEngraverRecipes;
+import static gregtech.api.recipe.RecipeMaps.assemblerRecipes;
+import static gregtech.api.recipe.RecipeMaps.laserEngraverRecipes;
import static gregtech.api.util.GT_RecipeBuilder.MINUTES;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
@@ -39,7 +39,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.fluidInputs(Materials.Concrete.getMolten(144L))
.duration(2 * SECONDS)
.eut(20)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
case "craftingLensBlue" -> {
@@ -50,7 +50,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.itemOutputs(GT_ModHandler.getModItem(AppliedEnergistics2.ID, "item.ItemMultiMaterial", 1L, 13))
.duration(1 * MINUTES + 40 * SECONDS)
.eut(TierEU.RECIPE_EV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
@@ -59,7 +59,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.itemOutputs(GT_ModHandler.getModItem(AppliedEnergistics2.ID, "item.ItemMultiMaterial", 1L, 13))
.duration(1 * MINUTES + 40 * SECONDS)
.eut(TierEU.RECIPE_EV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.IC2_LapotronCrystal.getWildcard(1L), GT_Utility.copyAmount(0, aStack))
@@ -67,7 +67,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(45 * SECONDS)
.eut(TierEU.RECIPE_HV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Chip_CrystalCPU.get(1L), GT_Utility.copyAmount(0, aStack))
@@ -75,7 +75,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(30 * SECONDS)
.eut(40000)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer2.get(1), GT_Utility.copyAmount(0, aStack))
@@ -83,7 +83,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(60 * SECONDS)
.eut(TierEU.RECIPE_HV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer3.get(1), GT_Utility.copyAmount(0, aStack))
@@ -91,7 +91,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(40 * SECONDS)
.eut(TierEU.RECIPE_EV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer5.get(1), GT_Utility.copyAmount(0, aStack))
@@ -99,7 +99,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(2 * MINUTES)
.eut(TierEU.RECIPE_UV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
}
case "craftingLensYellow" -> {
@@ -111,7 +111,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.itemOutputs(GT_ModHandler.getModItem(AppliedEnergistics2.ID, "item.ItemMultiMaterial", 1L, 14))
.duration(1 * MINUTES + 40 * SECONDS)
.eut(TierEU.RECIPE_EV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
@@ -120,14 +120,14 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.itemOutputs(GT_ModHandler.getModItem(AppliedEnergistics2.ID, "item.ItemMultiMaterial", 1L, 14))
.duration(1 * MINUTES + 40 * SECONDS)
.eut(TierEU.RECIPE_EV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer.get(1), GT_Utility.copyAmount(0, aStack))
.itemOutputs(ItemList.Circuit_Wafer_LPIC.get(1))
.duration(40 * SECONDS)
.eut(TierEU.RECIPE_MV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer2.get(1), GT_Utility.copyAmount(0, aStack))
@@ -135,7 +135,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(30 * SECONDS)
.eut(TierEU.RECIPE_HV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer3.get(1), GT_Utility.copyAmount(0, aStack))
@@ -143,7 +143,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(45 * SECONDS)
.eut(TierEU.RECIPE_EV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer4.get(1), GT_Utility.copyAmount(0, aStack))
@@ -151,7 +151,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(30 * SECONDS)
.eut(TierEU.RECIPE_IV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer5.get(1), GT_Utility.copyAmount(0, aStack))
@@ -159,7 +159,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(15 * SECONDS)
.eut(TierEU.RECIPE_LuV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
}
case "craftingLensOrange" -> {
@@ -168,28 +168,28 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.itemOutputs(ItemList.Circuit_Wafer_Simple_SoC.get(1))
.duration(15 * SECONDS)
.eut(64)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer2.get(1), GT_Utility.copyAmount(0, aStack))
.itemOutputs(ItemList.Circuit_Wafer_Simple_SoC.get(4))
.duration(15 * SECONDS)
.eut(256)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer3.get(1), GT_Utility.copyAmount(0, aStack))
.itemOutputs(ItemList.Circuit_Wafer_Simple_SoC.get(16))
.duration(15 * SECONDS)
.eut(1024)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer4.get(1), GT_Utility.copyAmount(0, aStack))
.itemOutputs(ItemList.Circuit_Wafer_Simple_SoC.get(64))
.duration(15 * SECONDS)
.eut(4096)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
}
case "craftingLensCyan" -> {
@@ -201,7 +201,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.itemOutputs(GT_ModHandler.getModItem(AppliedEnergistics2.ID, "item.ItemMultiMaterial", 1L, 15))
.duration(1 * MINUTES + 40 * SECONDS)
.eut(TierEU.RECIPE_EV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
@@ -210,14 +210,14 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.itemOutputs(GT_ModHandler.getModItem(AppliedEnergistics2.ID, "item.ItemMultiMaterial", 1L, 15))
.duration(1 * MINUTES + 40 * SECONDS)
.eut(TierEU.RECIPE_EV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer.get(1), GT_Utility.copyAmount(0, aStack))
.itemOutputs(ItemList.Circuit_Wafer_Ram.get(1))
.duration(60 * SECONDS)
.eut(TierEU.RECIPE_MV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer2.get(1), GT_Utility.copyAmount(0, aStack))
@@ -225,7 +225,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(45 * SECONDS)
.eut(TierEU.RECIPE_HV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer3.get(1), GT_Utility.copyAmount(0, aStack))
@@ -233,7 +233,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(30 * SECONDS)
.eut(TierEU.RECIPE_EV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer4.get(1), GT_Utility.copyAmount(0, aStack))
@@ -241,7 +241,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(15 * SECONDS)
.eut(TierEU.RECIPE_IV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer5.get(1), GT_Utility.copyAmount(0, aStack))
@@ -249,7 +249,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(7 * SECONDS + 10 * TICKS)
.eut(TierEU.RECIPE_LuV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
}
case "craftingLensRed" -> {
@@ -261,7 +261,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.itemOutputs(GT_ModHandler.getModItem(BuildCraftSilicon.ID, "redstoneChipset", 1L, 0))
.duration(2 * SECONDS + 10 * TICKS)
.eut(TierEU.RECIPE_MV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
@@ -270,14 +270,14 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.itemOutputs(GT_ModHandler.getModItem(NewHorizonsCoreMod.ID, "item.EtchedLowVoltageWiring", 1L, 0))
.duration(10 * SECONDS)
.eut(16)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer.get(1), GT_Utility.copyAmount(0, aStack))
.itemOutputs(ItemList.Circuit_Wafer_ILC.get(1))
.duration(60 * SECONDS)
.eut(TierEU.RECIPE_MV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer2.get(1), GT_Utility.copyAmount(0, aStack))
@@ -285,7 +285,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(45 * SECONDS)
.eut(TierEU.RECIPE_HV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer3.get(1), GT_Utility.copyAmount(0, aStack))
@@ -293,7 +293,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(30 * SECONDS)
.eut(TierEU.RECIPE_EV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer4.get(1), GT_Utility.copyAmount(0, aStack))
@@ -301,7 +301,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(1 * MINUTES + 30 * SECONDS)
.eut(TierEU.RECIPE_LuV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer5.get(1), GT_Utility.copyAmount(0, aStack))
@@ -309,7 +309,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(1 * MINUTES + 15 * SECONDS)
.eut(TierEU.RECIPE_ZPM)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
}
case "craftingLensGreen" -> {
@@ -320,7 +320,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(30 * SECONDS)
.eut(10000)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Chip_CrystalSoC.get(1L), GT_Utility.copyAmount(0, aStack))
@@ -328,21 +328,21 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(60 * SECONDS)
.eut(80000)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer.get(1), GT_Utility.copyAmount(0, aStack))
.itemOutputs(ItemList.Circuit_Wafer_ULPIC.get(2))
.duration(30 * SECONDS)
.eut(30)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer2.get(1), GT_Utility.copyAmount(0, aStack))
.itemOutputs(ItemList.Circuit_Wafer_ULPIC.get(8))
.duration(30 * SECONDS)
.eut(TierEU.RECIPE_MV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer3.get(1), GT_Utility.copyAmount(0, aStack))
@@ -350,7 +350,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(1 * MINUTES + 30 * SECONDS)
.eut(TierEU.RECIPE_EV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer4.get(1), GT_Utility.copyAmount(0, aStack))
@@ -358,7 +358,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(1 * MINUTES + 15 * SECONDS)
.eut(TierEU.RECIPE_IV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer5.get(1), GT_Utility.copyAmount(0, aStack))
@@ -366,7 +366,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(60 * SECONDS)
.eut(TierEU.RECIPE_LuV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
}
case "craftingLensWhite" -> {
@@ -377,7 +377,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.itemOutputs(GT_ModHandler.getModItem(AppliedEnergistics2.ID, "item.ItemMultiMaterial", 1L, 19))
.duration(1 * MINUTES + 40 * SECONDS)
.eut(TierEU.RECIPE_EV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
@@ -386,28 +386,28 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.itemOutputs(GT_ModHandler.getModItem(AppliedEnergistics2.ID, "item.ItemMultiMaterial", 1L, 19))
.duration(1 * MINUTES + 40 * SECONDS)
.eut(TierEU.RECIPE_EV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Blocks.sandstone, 1, 2), GT_Utility.copyAmount(0, aStack))
.itemOutputs(new ItemStack(Blocks.sandstone, 1, 1))
.duration(2 * SECONDS + 10 * TICKS)
.eut(16)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Blocks.stone, 1, 0), GT_Utility.copyAmount(0, aStack))
.itemOutputs(new ItemStack(Blocks.stonebrick, 1, 3))
.duration(2 * SECONDS + 10 * TICKS)
.eut(16)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Blocks.quartz_block, 1, 0), GT_Utility.copyAmount(0, aStack))
.itemOutputs(new ItemStack(Blocks.quartz_block, 1, 1))
.duration(2 * SECONDS + 10 * TICKS)
.eut(16)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
@@ -416,7 +416,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.itemOutputs(GT_ModHandler.getModItem(AppliedEnergistics2.ID, "tile.BlockQuartzChiseled", 1L))
.duration(2 * SECONDS + 10 * TICKS)
.eut(16)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer.get(1), GT_Utility.copyAmount(0, aStack))
@@ -424,7 +424,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(60 * SECONDS)
.eut(TierEU.RECIPE_MV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer2.get(1), GT_Utility.copyAmount(0, aStack))
@@ -432,7 +432,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(45 * SECONDS)
.eut(TierEU.RECIPE_HV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer3.get(1), GT_Utility.copyAmount(0, aStack))
@@ -440,7 +440,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(30 * SECONDS)
.eut(TierEU.RECIPE_EV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer4.get(1), GT_Utility.copyAmount(0, aStack))
@@ -448,7 +448,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(15 * SECONDS)
.eut(TierEU.RECIPE_IV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.Circuit_Silicon_Wafer5.get(1), GT_Utility.copyAmount(0, aStack))
@@ -456,7 +456,7 @@ public class ProcessingCrafting implements gregtech.api.interfaces.IOreRecipeReg
.requiresCleanRoom()
.duration(7 * SECONDS + 10 * TICKS)
.eut(TierEU.RECIPE_LuV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrate.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrate.java
index 6c20061f19..105b5c8f13 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrate.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrate.java
@@ -1,7 +1,7 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sBoxinatorRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sUnboxinatorRecipes;
+import static gregtech.api.recipe.RecipeMaps.packagerRecipes;
+import static gregtech.api.recipe.RecipeMaps.unpackagerRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import net.minecraft.item.ItemStack;
@@ -39,7 +39,7 @@ public class ProcessingCrate implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.crateGtDust, aMaterial, 1L))
.duration(5 * SECONDS)
.eut(8)
- .addTo(sBoxinatorRecipes);
+ .addTo(packagerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.crateGtDust, aMaterial, 1L))
.itemOutputs(
@@ -47,7 +47,7 @@ public class ProcessingCrate implements gregtech.api.interfaces.IOreRecipeRegist
ItemList.Crate_Empty.get(1L))
.duration(40 * SECONDS)
.eut(1)
- .addTo(sUnboxinatorRecipes);
+ .addTo(unpackagerRecipes);
}
if (aSpecialRecipeReq2) GT_ModHandler.addCraftingRecipe(
GT_OreDictUnificator.get(OrePrefixes.dust, aMaterial, 16L),
@@ -63,7 +63,7 @@ public class ProcessingCrate implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.crateGtIngot, aMaterial, 1L))
.duration(5 * SECONDS)
.eut(8)
- .addTo(sBoxinatorRecipes);
+ .addTo(packagerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.crateGtIngot, aMaterial, 1L))
.itemOutputs(
@@ -71,7 +71,7 @@ public class ProcessingCrate implements gregtech.api.interfaces.IOreRecipeRegist
ItemList.Crate_Empty.get(1L))
.duration(40 * SECONDS)
.eut(1)
- .addTo(sUnboxinatorRecipes);
+ .addTo(unpackagerRecipes);
}
if (aSpecialRecipeReq2) GT_ModHandler.addCraftingRecipe(
GT_OreDictUnificator.get(OrePrefixes.ingot, aMaterial, 16L),
@@ -87,7 +87,7 @@ public class ProcessingCrate implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.crateGtGem, aMaterial, 1L))
.duration(5 * SECONDS)
.eut(8)
- .addTo(sBoxinatorRecipes);
+ .addTo(packagerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.crateGtGem, aMaterial, 1L))
.itemOutputs(
@@ -95,7 +95,7 @@ public class ProcessingCrate implements gregtech.api.interfaces.IOreRecipeRegist
ItemList.Crate_Empty.get(1L))
.duration(40 * SECONDS)
.eut(1)
- .addTo(sUnboxinatorRecipes);
+ .addTo(unpackagerRecipes);
}
if (aSpecialRecipeReq2) GT_ModHandler.addCraftingRecipe(
GT_OreDictUnificator.get(OrePrefixes.gem, aMaterial, 16L),
@@ -111,7 +111,7 @@ public class ProcessingCrate implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.crateGtPlate, aMaterial, 1L))
.duration(5 * SECONDS)
.eut(8)
- .addTo(sBoxinatorRecipes);
+ .addTo(packagerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.crateGtPlate, aMaterial, 1L))
.itemOutputs(
@@ -119,7 +119,7 @@ public class ProcessingCrate implements gregtech.api.interfaces.IOreRecipeRegist
ItemList.Crate_Empty.get(1L))
.duration(40 * SECONDS)
.eut(1)
- .addTo(sUnboxinatorRecipes);
+ .addTo(unpackagerRecipes);
}
if (aSpecialRecipeReq2) GT_ModHandler.addCraftingRecipe(
GT_OreDictUnificator.get(OrePrefixes.plate, aMaterial, 16L),
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrop.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrop.java
index a7e6b1529c..92b5ae9cda 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrop.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrop.java
@@ -1,10 +1,10 @@
package gregtech.loaders.oreprocessing;
import static gregtech.api.enums.Mods.IndustrialCraft2;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sBrewingRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sCompressorRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sMaceratorRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sSlicerRecipes;
+import static gregtech.api.recipe.RecipeMaps.brewingRecipes;
+import static gregtech.api.recipe.RecipeMaps.compressorRecipes;
+import static gregtech.api.recipe.RecipeMaps.maceratorRecipes;
+import static gregtech.api.recipe.RecipeMaps.slicerRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
@@ -34,7 +34,7 @@ public class ProcessingCrop implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(ItemList.IC2_PlantballCompressed.get(1L))
.duration(15 * SECONDS)
.eut(2)
- .addTo(sCompressorRecipes);
+ .addTo(compressorRecipes);
Fluid[] waterArray;
@@ -54,7 +54,7 @@ public class ProcessingCrop implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidOutputs(new FluidStack(FluidRegistry.getFluid("potion.tea"), 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
}
}
case "cropGrape" -> {
@@ -65,7 +65,7 @@ public class ProcessingCrop implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidOutputs(new FluidStack(FluidRegistry.getFluid("potion.grapejuice"), 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
}
}
case "cropChilipepper" -> GT_Values.RA.stdBuilder()
@@ -73,27 +73,27 @@ public class ProcessingCrop implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Chili, 1L))
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
case "cropCoffee" -> GT_Values.RA.stdBuilder()
.itemInputs(aStack)
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Coffee, 1L))
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
case "cropPotato" -> {
GT_Values.RA.stdBuilder()
.itemInputs(aStack, ItemList.Shape_Slicer_Flat.get(0))
.itemOutputs(ItemList.Food_Raw_PotatoChips.get(1L))
.duration(3 * SECONDS + 4 * TICKS)
.eut(4)
- .addTo(sSlicerRecipes);
+ .addTo(slicerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(aStack, ItemList.Shape_Slicer_Stripes.get(0L))
.itemOutputs(ItemList.Food_Raw_Fries.get(1L))
.duration(3 * SECONDS + 4 * TICKS)
.eut(4)
- .addTo(sSlicerRecipes);
+ .addTo(slicerRecipes);
for (Fluid tFluid : waterArray) {
GT_Values.RA.stdBuilder()
@@ -102,7 +102,7 @@ public class ProcessingCrop implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidOutputs(new FluidStack(FluidRegistry.getFluid("potion.potatojuice"), 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
}
}
case "cropLemon" -> {
@@ -111,7 +111,7 @@ public class ProcessingCrop implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(ItemList.Food_Sliced_Lemon.get(4L))
.duration(3 * SECONDS + 4 * TICKS)
.eut(4)
- .addTo(sSlicerRecipes);
+ .addTo(slicerRecipes);
for (Fluid tFluid : waterArray) {
GT_Values.RA.stdBuilder()
@@ -120,7 +120,7 @@ public class ProcessingCrop implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidOutputs(new FluidStack(FluidRegistry.getFluid("potion.lemonjuice"), 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
}
GT_Values.RA.stdBuilder()
@@ -129,26 +129,26 @@ public class ProcessingCrop implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidOutputs(new FluidStack(FluidRegistry.getFluid("potion.leninade"), 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
}
case "cropTomato" -> GT_Values.RA.stdBuilder()
.itemInputs(aStack, ItemList.Shape_Slicer_Flat.get(0))
.itemOutputs(ItemList.Food_Sliced_Tomato.get(4L))
.duration(3 * SECONDS + 4 * TICKS)
.eut(4)
- .addTo(sSlicerRecipes);
+ .addTo(slicerRecipes);
case "cropCucumber" -> GT_Values.RA.stdBuilder()
.itemInputs(aStack, ItemList.Shape_Slicer_Flat.get(0))
.itemOutputs(ItemList.Food_Sliced_Cucumber.get(4L))
.duration(3 * SECONDS + 4 * TICKS)
.eut(4)
- .addTo(sSlicerRecipes);
+ .addTo(slicerRecipes);
case "cropOnion" -> GT_Values.RA.stdBuilder()
.itemInputs(aStack, ItemList.Shape_Slicer_Flat.get(0))
.itemOutputs(ItemList.Food_Sliced_Onion.get(4L))
.duration(3 * SECONDS + 4 * TICKS)
.eut(4)
- .addTo(sSlicerRecipes);
+ .addTo(slicerRecipes);
}
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrushedOre.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrushedOre.java
index 2fd74622c4..a730a1849b 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrushedOre.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrushedOre.java
@@ -1,9 +1,9 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sHammerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sMaceratorRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sSifterRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sThermalCentrifugeRecipes;
+import static gregtech.api.recipe.RecipeMaps.hammerRecipes;
+import static gregtech.api.recipe.RecipeMaps.maceratorRecipes;
+import static gregtech.api.recipe.RecipeMaps.sifterRecipes;
+import static gregtech.api.recipe.RecipeMaps.thermalCentrifugeRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
@@ -32,7 +32,7 @@ public class ProcessingCrushedOre implements gregtech.api.interfaces.IOreRecipeR
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.dust, aMaterial.mMacerateInto, 1L))
.duration(10 * TICKS)
.eut(16)
- .addTo(sHammerRecipes);
+ .addTo(hammerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -45,7 +45,7 @@ public class ProcessingCrushedOre implements gregtech.api.interfaces.IOreRecipeR
.outputChances(10000, 1000)
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
}
case crushedPurified -> {
GT_Values.RA.stdBuilder()
@@ -63,7 +63,7 @@ public class ProcessingCrushedOre implements gregtech.api.interfaces.IOreRecipeR
.outputChances(10000, 1111)
.duration(25 * SECONDS)
.eut(48)
- .addTo(sThermalCentrifugeRecipes);
+ .addTo(thermalCentrifugeRecipes);
ItemStack tGem = GT_OreDictUnificator.get(OrePrefixes.gem, aMaterial, 1L);
if (tGem == null) {
@@ -84,7 +84,7 @@ public class ProcessingCrushedOre implements gregtech.api.interfaces.IOreRecipeR
.outputChances(300, 1200, 4500, 1400, 2800, 3500)
.duration(40 * SECONDS)
.eut(16)
- .addTo(sSifterRecipes);
+ .addTo(sifterRecipes);
default -> GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
.itemOutputs(
@@ -97,7 +97,7 @@ public class ProcessingCrushedOre implements gregtech.api.interfaces.IOreRecipeR
.outputChances(100, 400, 1500, 2000, 4000, 5000)
.duration(40 * SECONDS)
.eut(16)
- .addTo(sSifterRecipes);
+ .addTo(sifterRecipes);
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrystallized.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrystallized.java
index cd9e3eb597..ec8fd12a74 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrystallized.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingCrystallized.java
@@ -1,7 +1,7 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sHammerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sMaceratorRecipes;
+import static gregtech.api.recipe.RecipeMaps.hammerRecipes;
+import static gregtech.api.recipe.RecipeMaps.maceratorRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
@@ -36,14 +36,14 @@ public class ProcessingCrystallized implements gregtech.api.interfaces.IOreRecip
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.dust, aMaterial.mMacerateInto, 1L))
.duration(10 * TICKS)
.eut(16)
- .addTo(sHammerRecipes);
+ .addTo(hammerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.dust, aMaterial.mMacerateInto, 1L))
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingDirty.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingDirty.java
index b407cb9c9b..b3aad4e25c 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingDirty.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingDirty.java
@@ -1,9 +1,9 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sChemicalBathRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sHammerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sMaceratorRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sThermalCentrifugeRecipes;
+import static gregtech.api.recipe.RecipeMaps.chemicalBathRecipes;
+import static gregtech.api.recipe.RecipeMaps.hammerRecipes;
+import static gregtech.api.recipe.RecipeMaps.maceratorRecipes;
+import static gregtech.api.recipe.RecipeMaps.thermalCentrifugeRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import net.minecraft.item.ItemStack;
@@ -33,7 +33,7 @@ public class ProcessingDirty implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.dustImpure, aMaterial.mMacerateInto, 1L))
.duration(10)
.eut(16)
- .addTo(sHammerRecipes);
+ .addTo(hammerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -50,7 +50,7 @@ public class ProcessingDirty implements gregtech.api.interfaces.IOreRecipeRegist
.outputChances(10000, 1000)
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
GT_ModHandler.addOreWasherRecipe(
GT_Utility.copyAmount(1, aStack),
@@ -80,7 +80,7 @@ public class ProcessingDirty implements gregtech.api.interfaces.IOreRecipeRegist
.outputChances(10000, 1111, 10000)
.duration(25 * SECONDS)
.eut(48)
- .addTo(sThermalCentrifugeRecipes);
+ .addTo(thermalCentrifugeRecipes);
addChemicalBathRecipes(aMaterial, aMaterial, aStack, aPrefix);
@@ -104,7 +104,7 @@ public class ProcessingDirty implements gregtech.api.interfaces.IOreRecipeRegist
.fluidInputs(Materials.Mercury.getFluid(1000L))
.duration(40 * SECONDS)
.eut(8)
- .addTo(sChemicalBathRecipes);
+ .addTo(chemicalBathRecipes);
}
if (byproduct.contains(SubTag.WASHING_MERCURY_99_PERCENT)) {
GT_Values.RA.stdBuilder()
@@ -117,7 +117,7 @@ public class ProcessingDirty implements gregtech.api.interfaces.IOreRecipeRegist
.fluidInputs(Materials.Mercury.getFluid(1000L))
.duration(40 * SECONDS)
.eut(8)
- .addTo(sChemicalBathRecipes);
+ .addTo(chemicalBathRecipes);
}
if (byproduct.contains(SubTag.WASHING_SODIUMPERSULFATE)) {
GT_Values.RA.stdBuilder()
@@ -130,7 +130,7 @@ public class ProcessingDirty implements gregtech.api.interfaces.IOreRecipeRegist
.fluidInputs(Materials.SodiumPersulfate.getFluid(100L))
.duration(40 * SECONDS)
.eut(8)
- .addTo(sChemicalBathRecipes);
+ .addTo(chemicalBathRecipes);
}
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingDust.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingDust.java
index 2aa2d42ac1..f0f8aef8ba 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingDust.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingDust.java
@@ -1,14 +1,14 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sAutoclaveRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sBlastRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sBoxinatorRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sCannerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sCentrifugeRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sCompressorRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sElectroMagneticSeparatorRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sElectrolyzerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sImplosionRecipes;
+import static gregtech.api.recipe.RecipeMaps.autoclaveRecipes;
+import static gregtech.api.recipe.RecipeMaps.blastFurnaceRecipes;
+import static gregtech.api.recipe.RecipeMaps.cannerRecipes;
+import static gregtech.api.recipe.RecipeMaps.centrifugeRecipes;
+import static gregtech.api.recipe.RecipeMaps.compressorRecipes;
+import static gregtech.api.recipe.RecipeMaps.electroMagneticSeparatorRecipes;
+import static gregtech.api.recipe.RecipeMaps.electrolyzerRecipes;
+import static gregtech.api.recipe.RecipeMaps.implosionRecipes;
+import static gregtech.api.recipe.RecipeMaps.packagerRecipes;
import static gregtech.api.util.GT_RecipeBuilder.MINUTES;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
@@ -58,8 +58,6 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
.itemInputs(GT_Utility.copyAmount(1, aStack))
.metadata(FUEL_VALUE, aMaterial.mFuelPower)
.metadata(FUEL_TYPE, aMaterial.mFuelType)
- .duration(0)
- .eut(0)
.addTo(GT_RecipeConstants.Fuel);
}
if ((GT_Utility.getFluidForFilledItem(GT_OreDictUnificator.get(OrePrefixes.cell, aMaterial, 1L), true)
@@ -69,7 +67,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.cell, aMaterial, 1L))
.duration(5 * SECONDS)
.eut(1)
- .addTo(sCannerRecipes);
+ .addTo(cannerRecipes);
}
if (!aMaterial.mBlastFurnaceRequired) {
GT_RecipeRegistrator.registerReverseFluidSmelting(aStack, aMaterial, aPrefix.mMaterialAmount, null);
@@ -104,7 +102,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
(Math.max(aMaterial.getMass() / 40L, 1L) * aMaterial.mBlastFurnaceTemp) * TICKS)
.eut(TierEU.RECIPE_MV)
.metadata(COIL_HEAT, (int) aMaterial.mBlastFurnaceTemp)
- .addTo(sBlastRecipes);
+ .addTo(blastFurnaceRecipes);
}
} else {
GT_ModHandler.addSmeltingRecipe(aStack, tDustStack);
@@ -119,7 +117,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.block, aMaterial, 1L))
.duration(15 * SECONDS)
.eut(2)
- .addTo(sCompressorRecipes);
+ .addTo(compressorRecipes);
}
// This is so disgustingly bad.
if (((OrePrefixes.block.isIgnored(aMaterial))
@@ -142,7 +140,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plate, aMaterial, 1L))
.duration(15 * SECONDS)
.eut(2)
- .addTo(sCompressorRecipes);
+ .addTo(compressorRecipes);
}
}
}
@@ -219,7 +217,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
recipeBuilder
.duration(Math.max(1L, Math.abs(aMaterial.getProtons() * 2L * tItemAmount)))
.eut(Math.min(4, tList.size()) * 30)
- .addTo(sElectrolyzerRecipes);
+ .addTo(electrolyzerRecipes);
}
}
if ((aMaterial.mExtraData & 0x2) != 0) {
@@ -241,7 +239,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
}
recipeBuilder.duration(Math.max(1L, Math.abs(aMaterial.getMass() * 4L * tItemAmount)))
.eut(Math.min(4, tList.size()) * 5)
- .addTo(sCentrifugeRecipes);
+ .addTo(centrifugeRecipes);
}
}
}
@@ -255,7 +253,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(Materials.Water.getFluid(200L))
.duration(1 * MINUTES + 40 * SECONDS)
.eut(24)
- .addTo(sAutoclaveRecipes);
+ .addTo(autoclaveRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack), GT_Utility.getIntegratedCircuit(2))
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.gem, aMaterial, 1L))
@@ -263,7 +261,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(GT_ModHandler.getDistilledWater(100L))
.duration(1 * MINUTES + 15 * SECONDS)
.eut(24)
- .addTo(sAutoclaveRecipes);
+ .addTo(autoclaveRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack), GT_Utility.getIntegratedCircuit(3))
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.gem, aMaterial, 1L))
@@ -271,7 +269,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(Materials.Void.getMolten(36L))
.duration(1 * MINUTES)
.eut(24)
- .addTo(sAutoclaveRecipes);
+ .addTo(autoclaveRecipes);
}
switch (aMaterial.mName) {
case "NULL", "Mercury", "Coal":
@@ -295,7 +293,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
GT_OreDictUnificator.get(OrePrefixes.dust, Materials.MeatCooked, 1L));
break;
case "Oilsands":
- sCentrifugeRecipes.addRecipe(
+ centrifugeRecipes.addRecipe(
true,
new ItemStack[] { GT_Utility.copyAmount(1, aStack) },
null,
@@ -319,7 +317,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 16L))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
GT_Utility.copyAmount(4, aStack),
@@ -329,7 +327,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 16L))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(4, aStack), new ItemStack(Blocks.tnt, 32))
.itemOutputs(
@@ -337,7 +335,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 16L))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(4, aStack), GT_ModHandler.getIC2Item("industrialTnt", 8))
.itemOutputs(
@@ -345,7 +343,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 16L))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
}
break;
case "Opal":
@@ -365,7 +363,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 12L))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
GT_Utility.copyAmount(4, aStack),
@@ -375,7 +373,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 12L))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(4, aStack), new ItemStack(Blocks.tnt, 24))
.itemOutputs(
@@ -383,7 +381,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 12L))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(4, aStack), GT_ModHandler.getIC2Item("industrialTnt", 6))
.itemOutputs(
@@ -391,7 +389,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 12L))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
}
break;
case "FoolsRuby":
@@ -410,7 +408,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 8L))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(4, aStack), GT_ModHandler.getIC2Item("dynamite", 8, null))
.itemOutputs(
@@ -418,7 +416,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 8L))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(4, aStack), new ItemStack(Blocks.tnt, 16))
.itemOutputs(
@@ -426,7 +424,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 8L))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(4, aStack), GT_ModHandler.getIC2Item("industrialTnt", 4))
.itemOutputs(
@@ -434,7 +432,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 8L))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
}
}
}
@@ -454,7 +452,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
.outputChances(10000, 4000, 2000)
.duration(20 * SECONDS)
.eut(24)
- .addTo(sElectroMagneticSeparatorRecipes);
+ .addTo(electroMagneticSeparatorRecipes);
}
if (aMaterial.contains(SubTag.ELECTROMAGNETIC_SEPERATION_IRON)) {
GT_Values.RA.stdBuilder()
@@ -466,7 +464,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
.outputChances(10000, 4000, 2000)
.duration(20 * SECONDS)
.eut(24)
- .addTo(sElectroMagneticSeparatorRecipes);
+ .addTo(electroMagneticSeparatorRecipes);
}
if (aMaterial.contains(SubTag.ELECTROMAGNETIC_SEPERATION_NEODYMIUM)) {
GT_Values.RA.stdBuilder()
@@ -478,7 +476,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
.outputChances(10000, 4000, 2000)
.duration(20 * SECONDS)
.eut(24)
- .addTo(sElectroMagneticSeparatorRecipes);
+ .addTo(electroMagneticSeparatorRecipes);
}
}
if (aMaterial.contains(SubTag.CRYSTALLISABLE)
@@ -490,7 +488,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(Materials.Water.getFluid(200L))
.duration(1 * MINUTES + 40 * SECONDS)
.eut(24)
- .addTo(sAutoclaveRecipes);
+ .addTo(autoclaveRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack), GT_Utility.getIntegratedCircuit(2))
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.gem, aMaterial, 1L))
@@ -498,7 +496,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(GT_ModHandler.getDistilledWater(100L))
.duration(1 * MINUTES + 15 * SECONDS)
.eut(24)
- .addTo(sAutoclaveRecipes);
+ .addTo(autoclaveRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack), GT_Utility.getIntegratedCircuit(3))
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.gem, aMaterial, 1L))
@@ -506,7 +504,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(Materials.Void.getMolten(36L))
.duration(1 * MINUTES)
.eut(24)
- .addTo(sAutoclaveRecipes);
+ .addTo(autoclaveRecipes);
}
ItemStack tImpureStack = GT_OreDictUnificator.get(
OrePrefixes.dustTiny,
@@ -529,7 +527,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.dust, aMaterial, 1L))
.duration(Math.max(1L, aMaterial.getMass()))
.eut(5)
- .addTo(sCentrifugeRecipes);
+ .addTo(centrifugeRecipes);
} else {
FluidStack tFluid = GT_Utility.getFluidForFilledItem(tImpureStack, true);
if (tFluid == null) {
@@ -540,7 +538,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
tImpureStack)
.duration(Math.max(1L, aMaterial.getMass() * 72L))
.eut(5)
- .addTo(sCentrifugeRecipes);
+ .addTo(centrifugeRecipes);
} else {
tFluid.amount /= 10;
GT_Values.RA.stdBuilder()
@@ -549,7 +547,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidOutputs(tFluid)
.duration(Math.max(1L, aMaterial.getMass() * 8L))
.eut(5)
- .addTo(sCentrifugeRecipes);
+ .addTo(centrifugeRecipes);
}
}
} else {
@@ -558,7 +556,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.dust, aMaterial, 9L), tImpureStack)
.duration(Math.max(1L, aMaterial.getMass() * 72L))
.eut(5)
- .addTo(sCentrifugeRecipes);
+ .addTo(centrifugeRecipes);
}
} else {
GT_Values.RA.stdBuilder()
@@ -566,7 +564,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.dust, aMaterial, 2L), tImpureStack)
.duration(Math.max(1L, aMaterial.getMass() * 16L))
.eut(5)
- .addTo(sCentrifugeRecipes);
+ .addTo(centrifugeRecipes);
}
} else {
GT_Values.RA.stdBuilder()
@@ -581,7 +579,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
.outputChances(10000, 1111)
.duration(Math.max(1L, aMaterial.getMass() * 8L))
.eut(5)
- .addTo(sCentrifugeRecipes);
+ .addTo(centrifugeRecipes);
}
}
case dustSmall -> {
@@ -590,7 +588,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.dust, aMaterial, 1L))
.duration(1 * SECONDS)
.eut(4)
- .addTo(sBoxinatorRecipes);
+ .addTo(packagerRecipes);
if (!aMaterial.mBlastFurnaceRequired) {
GT_RecipeRegistrator.registerReverseFluidSmelting(aStack, aMaterial, aPrefix.mMaterialAmount, null);
if (aMaterial.mSmeltInto.mArcSmeltInto != aMaterial) {
@@ -610,7 +608,7 @@ public class ProcessingDust implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.dust, aMaterial, 1L))
.duration(1 * SECONDS)
.eut(4)
- .addTo(sBoxinatorRecipes);
+ .addTo(packagerRecipes);
if (!aMaterial.mBlastFurnaceRequired) {
GT_RecipeRegistrator.registerReverseFluidSmelting(aStack, aMaterial, aPrefix.mMaterialAmount, null);
if (aMaterial.mSmeltInto.mArcSmeltInto != aMaterial) {
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingDye.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingDye.java
index 36c0a891a6..f3e82c0b0e 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingDye.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingDye.java
@@ -1,6 +1,6 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sMixerRecipes;
+import static gregtech.api.recipe.RecipeMaps.mixerRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
import static gregtech.api.util.GT_RecipeConstants.UniversalChemical;
@@ -47,7 +47,7 @@ public class ProcessingDye implements IOreRecipeRegistrator {
.fluidOutputs(FluidRegistry.getFluidStack(fluidName, 192))
.duration(16 * TICKS)
.eut(4)
- .addTo(sMixerRecipes);
+ .addTo(mixerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, stack), GT_Utility.getIntegratedCircuit(1))
@@ -55,7 +55,7 @@ public class ProcessingDye implements IOreRecipeRegistrator {
.fluidOutputs(FluidRegistry.getFluidStack(fluidName, 216))
.duration(16 * TICKS)
.eut(4)
- .addTo(sMixerRecipes);
+ .addTo(mixerRecipes);
}
public void registerAlloySmelter(ItemStack stack, Dyes dye) {
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingFoil.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingFoil.java
index 58bef8b0ed..9b46710b71 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingFoil.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingFoil.java
@@ -1,6 +1,6 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sBenderRecipes;
+import static gregtech.api.recipe.RecipeMaps.benderRecipes;
import static gregtech.api.util.GT_Utility.calculateRecipeEU;
import net.minecraft.item.ItemStack;
@@ -35,7 +35,7 @@ public class ProcessingFoil implements IOreRecipeRegistrator {
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.foil, material, 4L))
.duration((int) Math.max(material.getMass(), 1L))
.eut(calculateRecipeEU(material, 24))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
private void registerCover(ItemStack stack, Materials material) {
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingFood.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingFood.java
index a16286fdf9..e7fc25038f 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingFood.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingFood.java
@@ -1,9 +1,9 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sBenderRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sMixerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sPressRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sSlicerRecipes;
+import static gregtech.api.recipe.RecipeMaps.benderRecipes;
+import static gregtech.api.recipe.RecipeMaps.formingPressRecipes;
+import static gregtech.api.recipe.RecipeMaps.mixerRecipes;
+import static gregtech.api.recipe.RecipeMaps.slicerRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
@@ -46,7 +46,7 @@ public class ProcessingFood implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(ItemList.Food_Sliced_Cheese.get(4L))
.duration(3 * SECONDS + 4 * TICKS)
.eut(4)
- .addTo(sSlicerRecipes);
+ .addTo(slicerRecipes);
}
private void registerBenderRecipes(ItemStack stack) {
@@ -55,7 +55,7 @@ public class ProcessingFood implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(ItemList.Food_Flat_Dough.get(1L))
.duration(16 * TICKS)
.eut(4)
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
private void registerMixerRecipes(ItemStack stack) {
@@ -64,21 +64,21 @@ public class ProcessingFood implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(ItemList.Food_Dough_Sugar.get(2L))
.duration(1 * SECONDS + 12 * TICKS)
.eut(8)
- .addTo(sMixerRecipes);
+ .addTo(mixerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(stack, GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Cocoa, 1L))
.itemOutputs(ItemList.Food_Dough_Chocolate.get(2L))
.duration(1 * SECONDS + 12 * TICKS)
.eut(8)
- .addTo(sMixerRecipes);
+ .addTo(mixerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(stack, GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Chocolate, 1L))
.itemOutputs(ItemList.Food_Dough_Chocolate.get(2L))
.duration(1 * SECONDS + 12 * TICKS)
.eut(8)
- .addTo(sMixerRecipes);
+ .addTo(mixerRecipes);
}
private void registerFormingPressRecipes(ItemStack stack) {
@@ -88,20 +88,20 @@ public class ProcessingFood implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(ItemList.Food_Raw_Bun.get(1L))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sPressRecipes);
+ .addTo(formingPressRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(2, stack), ItemList.Shape_Mold_Bread.get(0L))
.itemOutputs(ItemList.Food_Raw_Bread.get(1L))
.duration(12 * SECONDS + 16 * TICKS)
.eut(4)
- .addTo(sPressRecipes);
+ .addTo(formingPressRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(3, stack), ItemList.Shape_Mold_Baguette.get(0L))
.itemOutputs(ItemList.Food_Raw_Baguette.get(1L))
.duration(19 * SECONDS + 4 * TICKS)
.eut(4)
- .addTo(sPressRecipes);
+ .addTo(formingPressRecipes);
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingGear.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingGear.java
index 1dbcd05b13..aa973cddfe 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingGear.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingGear.java
@@ -1,6 +1,6 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sFluidSolidficationRecipes;
+import static gregtech.api.recipe.RecipeMaps.fluidSolidifierRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
import static gregtech.api.util.GT_Utility.calculateRecipeEU;
@@ -40,7 +40,7 @@ public class ProcessingGear implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(aMaterial.getMolten(576L))
.duration(6 * SECONDS + 8 * TICKS)
.eut(calculateRecipeEU(aMaterial, 8))
- .addTo(sFluidSolidficationRecipes);
+ .addTo(fluidSolidifierRecipes);
}
}
if (aMaterial.mUnificatable && (aMaterial.mMaterialInto == aMaterial)
@@ -77,7 +77,7 @@ public class ProcessingGear implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(aMaterial.getMolten(144L))
.duration(16 * TICKS)
.eut(calculateRecipeEU(aMaterial, 8))
- .addTo(sFluidSolidficationRecipes);
+ .addTo(fluidSolidifierRecipes);
}
}
if (aMaterial.mUnificatable && (aMaterial.mMaterialInto == aMaterial)
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingGem.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingGem.java
index 531196f661..0efa58a3c7 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingGem.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingGem.java
@@ -1,13 +1,13 @@
package gregtech.loaders.oreprocessing;
import static gregtech.api.enums.Mods.AppliedEnergistics2;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sBenderRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sCompressorRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sElectrolyzerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sHammerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sImplosionRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sLaserEngraverRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sLatheRecipes;
+import static gregtech.api.recipe.RecipeMaps.benderRecipes;
+import static gregtech.api.recipe.RecipeMaps.compressorRecipes;
+import static gregtech.api.recipe.RecipeMaps.electrolyzerRecipes;
+import static gregtech.api.recipe.RecipeMaps.hammerRecipes;
+import static gregtech.api.recipe.RecipeMaps.implosionRecipes;
+import static gregtech.api.recipe.RecipeMaps.laserEngraverRecipes;
+import static gregtech.api.recipe.RecipeMaps.latheRecipes;
import static gregtech.api.util.GT_RecipeBuilder.MINUTES;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
@@ -63,8 +63,6 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
.itemInputs(GT_Utility.copyAmount(1, aStack))
.metadata(FUEL_VALUE, aMaterial.mFuelPower * 2)
.metadata(FUEL_TYPE, aMaterial.mFuelType)
- .duration(0)
- .eut(0)
.addTo(GT_RecipeConstants.Fuel);
}
@@ -78,7 +76,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.block, aMaterial, 1L))
.duration(15 * SECONDS)
.eut(2)
- .addTo(sCompressorRecipes);
+ .addTo(compressorRecipes);
}
}
@@ -98,7 +96,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.gemFlawed, aMaterial, 2L))
.duration(3 * SECONDS + 4 * TICKS)
.eut(16)
- .addTo(sHammerRecipes);
+ .addTo(hammerRecipes);
}
}
} else {
@@ -112,7 +110,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plate, aMaterial, 1L))
.duration(Math.max(aMaterialMass, 1L))
.eut(calculateRecipeEU(aMaterial, 16))
- .addTo(sHammerRecipes);
+ .addTo(hammerRecipes);
}
}
@@ -125,7 +123,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plate, aMaterial, 1L))
.duration((int) Math.max(aMaterialMass * 2L, 1L))
.eut(calculateRecipeEU(aMaterial, 24))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.plateDouble, aMaterial, 1L) != null) {
@@ -135,7 +133,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plateDouble, aMaterial, 1L))
.duration(Math.max(aMaterialMass * 2L, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.plateTriple, aMaterial, 1L) != null) {
@@ -145,7 +143,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plateTriple, aMaterial, 1L))
.duration(Math.max(aMaterialMass * 3L, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.plateQuadruple, aMaterial, 1L) != null) {
@@ -155,7 +153,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plateQuadruple, aMaterial, 1L))
.duration(Math.max(aMaterialMass * 4L, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.plateQuintuple, aMaterial, 1L) != null) {
@@ -165,7 +163,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plateQuintuple, aMaterial, 1L))
.duration(Math.max(aMaterialMass * 5L, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.plateDense, aMaterial, 1L) != null) {
@@ -175,7 +173,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plateDense, aMaterial, 1L))
.duration(Math.max(aMaterialMass * 9L, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
}
}
@@ -191,7 +189,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
GT_OreDictUnificator.get(OrePrefixes.dustSmall, aMaterial, 2L))
.duration(((int) Math.max(aMaterialMass, 1L)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 16))
- .addTo(sLatheRecipes);
+ .addTo(latheRecipes);
}
}
} else {
@@ -206,7 +204,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 2))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
GT_Utility.copyAmount(3, aStack),
@@ -216,7 +214,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 2))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(3, aStack), new ItemStack(Blocks.tnt, 8))
.itemOutputs(
@@ -224,7 +222,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 2))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
GT_Utility.copyAmount(3, aStack),
@@ -234,7 +232,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 2))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
}
}
@@ -284,7 +282,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
GT_ModHandler.getModItem(AppliedEnergistics2.ID, "item.ItemMultiMaterial", 1L, 1))
.duration(100 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sElectrolyzerRecipes);
+ .addTo(electrolyzerRecipes);
}
}
@@ -300,7 +298,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.gemFlawless, aMaterial, 1L))
.duration(60 * SECONDS)
.eut(TierEU.RECIPE_HV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
}
}
@@ -313,8 +311,6 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
.itemInputs(GT_Utility.copyAmount(1, aStack))
.metadata(FUEL_VALUE, aMaterial.mFuelPower / 2)
.metadata(FUEL_TYPE, aMaterial.mFuelType)
- .duration(0)
- .eut(0)
.addTo(GT_RecipeConstants.Fuel);
}
@@ -329,7 +325,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
GT_OreDictUnificator.get(OrePrefixes.dustTiny, aMaterial, 1L))
.duration(((int) Math.max(aMaterialMass, 1L)) * TICKS)
.eut(8)
- .addTo(sLatheRecipes);
+ .addTo(latheRecipes);
}
if (aMaterial.mUnificatable && (aMaterial.mMaterialInto == aMaterial)) {
@@ -343,7 +339,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 2))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
GT_Utility.copyAmount(3, aStack),
@@ -353,7 +349,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 2))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(3, aStack), new ItemStack(Blocks.tnt, 8))
.itemOutputs(
@@ -361,7 +357,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 2))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
GT_Utility.copyAmount(3, aStack),
@@ -371,7 +367,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 2))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
}
}
@@ -398,7 +394,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.gemFlawed, aMaterial, 1L))
.duration(30 * SECONDS)
.eut(30)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
}
}
@@ -409,8 +405,6 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
.itemInputs(GT_Utility.copyAmount(1, aStack))
.metadata(FUEL_VALUE, aMaterial.mFuelPower * 8)
.metadata(FUEL_TYPE, aMaterial.mFuelType)
- .duration(0)
- .eut(0)
.addTo(GT_RecipeConstants.Fuel);
}
@@ -435,7 +429,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.gemFlawless, aMaterial, 2L))
.duration(3 * SECONDS + 4 * TICKS)
.eut(16)
- .addTo(sHammerRecipes);
+ .addTo(hammerRecipes);
}
}
case gemFlawed -> {
@@ -445,8 +439,6 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
.itemInputs(GT_Utility.copyAmount(1, aStack))
.metadata(FUEL_VALUE, aMaterial.mFuelPower)
.metadata(FUEL_TYPE, aMaterial.mFuelType)
- .duration(0)
- .eut(0)
.addTo(GT_RecipeConstants.Fuel);
}
@@ -461,7 +453,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
GT_OreDictUnificator.get(OrePrefixes.dustSmall, aMaterial, 1L))
.duration(((int) Math.max(aMaterialMass, 1L)) * TICKS)
.eut(12)
- .addTo(sLatheRecipes);
+ .addTo(latheRecipes);
}
if (aMaterial.mUnificatable && (aMaterial.mMaterialInto == aMaterial)) {
@@ -475,7 +467,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 2))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
GT_Utility.copyAmount(3, aStack),
@@ -485,7 +477,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 2))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(3, aStack), new ItemStack(Blocks.tnt, 8))
.itemOutputs(
@@ -493,7 +485,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 2))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
GT_Utility.copyAmount(3, aStack),
@@ -503,7 +495,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 2))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
}
}
@@ -527,7 +519,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.gemChipped, aMaterial, 2L))
.duration(3 * SECONDS + 4 * TICKS)
.eut(16)
- .addTo(sHammerRecipes);
+ .addTo(hammerRecipes);
for (ItemStack is : OreDictionary.getOres("craftingLens" + aMaterial.mColor.mName.replace(" ", ""))) { // Engraver
@@ -538,7 +530,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.gem, aMaterial, 1L))
.duration(30 * SECONDS)
.eut(TierEU.RECIPE_MV)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
}
}
@@ -550,8 +542,6 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
.itemInputs(GT_Utility.copyAmount(1, aStack))
.metadata(FUEL_VALUE, aMaterial.mFuelPower * 4)
.metadata(FUEL_TYPE, aMaterial.mFuelType)
- .duration(0)
- .eut(0)
.addTo(GT_RecipeConstants.Fuel);
}
@@ -568,7 +558,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
aPrefix.mMaterialAmount - OrePrefixes.stickLong.mMaterialAmount))
.duration(((int) Math.max(aMaterialMass * 5L, 1L)) * TICKS)
.eut(16)
- .addTo(sLatheRecipes);
+ .addTo(latheRecipes);
}
if (aMaterial.mUnificatable && (aMaterial.mMaterialInto == aMaterial)) {
@@ -582,7 +572,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 2))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
GT_Utility.copyAmount(3, aStack),
@@ -592,7 +582,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 2))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(3, aStack), new ItemStack(Blocks.tnt, 8))
.itemOutputs(
@@ -600,7 +590,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 2))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
GT_Utility.copyAmount(3, aStack),
@@ -610,7 +600,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 2))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
}
}
@@ -634,7 +624,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.gem, aMaterial, 2L))
.duration(3 * SECONDS + 4 * TICKS)
.eut(16)
- .addTo(sHammerRecipes);
+ .addTo(hammerRecipes);
for (ItemStack is : OreDictionary.getOres("craftingLens" + aMaterial.mColor.mName.replace(" ", ""))) { // Engraver
@@ -644,7 +634,7 @@ public class ProcessingGem implements gregtech.api.interfaces.IOreRecipeRegistra
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.gemExquisite, aMaterial, 1L))
.duration(2 * MINUTES)
.eut(2000)
- .addTo(sLaserEngraverRecipes);
+ .addTo(laserEngraverRecipes);
}
}
default -> {}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingIngot.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingIngot.java
index 3c54792eb5..3f7c442001 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingIngot.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingIngot.java
@@ -1,9 +1,9 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sBenderRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sFluidSolidficationRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sHammerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sVacuumRecipes;
+import static gregtech.api.recipe.RecipeMaps.benderRecipes;
+import static gregtech.api.recipe.RecipeMaps.fluidSolidifierRecipes;
+import static gregtech.api.recipe.RecipeMaps.hammerRecipes;
+import static gregtech.api.recipe.RecipeMaps.vacuumFreezerRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
import static gregtech.api.util.GT_RecipeConstants.FUEL_TYPE;
@@ -57,8 +57,6 @@ public class ProcessingIngot implements gregtech.api.interfaces.IOreRecipeRegist
.itemInputs(GT_Utility.copyAmount(1, aStack))
.metadata(FUEL_VALUE, aMaterial.mFuelPower)
.metadata(FUEL_TYPE, aMaterial.mFuelType)
- .duration(0)
- .eut(0)
.addTo(GT_RecipeConstants.Fuel);
}
if (aMaterial.mStandardMoltenFluid != null
@@ -71,7 +69,7 @@ public class ProcessingIngot implements gregtech.api.interfaces.IOreRecipeRegist
.fluidInputs(aMaterial.getMolten(144L))
.duration(1 * SECONDS + 12 * TICKS)
.eut(calculateRecipeEU(aMaterial, 8))
- .addTo(sFluidSolidficationRecipes);
+ .addTo(fluidSolidifierRecipes);
}
// Reverse recipes
{
@@ -111,7 +109,7 @@ public class ProcessingIngot implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plate, aMaterial, 2L))
.duration(Math.max(aMaterialMass, 1L))
.eut(calculateRecipeEU(aMaterial, 16))
- .addTo(sHammerRecipes);
+ .addTo(hammerRecipes);
}
// Bender recipes
@@ -122,7 +120,7 @@ public class ProcessingIngot implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plate, aMaterial, 1L))
.duration(Math.max(aMaterialMass, 1L))
.eut(calculateRecipeEU(aMaterial, 24))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.plateDouble, aMaterial, 1L) != null) {
@@ -131,7 +129,7 @@ public class ProcessingIngot implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plateDouble, aMaterial, 1L))
.duration(Math.max(aMaterialMass * 2L, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.plateTriple, aMaterial, 1L) != null) {
@@ -140,7 +138,7 @@ public class ProcessingIngot implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plateTriple, aMaterial, 1L))
.duration(Math.max(aMaterialMass * 3L, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.plateQuadruple, aMaterial, 1L) != null) {
@@ -149,7 +147,7 @@ public class ProcessingIngot implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plateQuadruple, aMaterial, 1L))
.duration(Math.max(aMaterialMass * 4L, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.plateQuintuple, aMaterial, 1L) != null) {
@@ -158,7 +156,7 @@ public class ProcessingIngot implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plateQuintuple, aMaterial, 1L))
.duration(Math.max(aMaterialMass * 5L, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.plateDense, aMaterial, 1L) != null) {
@@ -167,7 +165,7 @@ public class ProcessingIngot implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plateDense, aMaterial, 1L))
.duration(Math.max(aMaterialMass * 9L, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.foil, aMaterial, 1L) != null) {
@@ -176,7 +174,7 @@ public class ProcessingIngot implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.foil, aMaterial, 4L))
.duration(Math.max(aMaterialMass * 2L, 1L))
.eut(calculateRecipeEU(aMaterial, 24))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
}
}
@@ -190,14 +188,14 @@ public class ProcessingIngot implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plateDouble, aMaterial, 1L))
.duration(Math.max(aMaterialMass, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(2, aStack), GT_Utility.getIntegratedCircuit(2))
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plateQuadruple, aMaterial, 1L))
.duration(Math.max(aMaterialMass * 2L, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
// Enable crafting with hammer if tier is < IV.
@@ -220,14 +218,14 @@ public class ProcessingIngot implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plateTriple, aMaterial, 1L))
.duration(Math.max(aMaterialMass, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(3, aStack), GT_Utility.getIntegratedCircuit(3))
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plateDense, aMaterial, 1L))
.duration(Math.max(aMaterialMass * 3L, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
if (aMaterial.getProcessingMaterialTierEU() < TierEU.IV && aSpecialRecipeReq
@@ -250,7 +248,7 @@ public class ProcessingIngot implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plateQuadruple, aMaterial, 1L))
.duration(Math.max(aMaterialMass, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
// If tier < IV add manual crafting.
@@ -274,7 +272,7 @@ public class ProcessingIngot implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plateQuintuple, aMaterial, 1L))
.duration(Math.max(aMaterialMass, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
// Crafting recipes
@@ -298,7 +296,7 @@ public class ProcessingIngot implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.ingot, aMaterial, 1L))
.duration(((int) Math.max(aMaterialMass * 3L, 1L)) * TICKS)
.eut(TierEU.RECIPE_MV)
- .addTo(sVacuumRecipes);
+ .addTo(vacuumFreezerRecipes);
}
}
default -> {}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingLens.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingLens.java
index 6b8d1cd67d..c3f73f7966 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingLens.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingLens.java
@@ -1,7 +1,7 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sCompressorRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sLatheRecipes;
+import static gregtech.api.recipe.RecipeMaps.compressorRecipes;
+import static gregtech.api.recipe.RecipeMaps.latheRecipes;
import static gregtech.api.util.GT_RecipeBuilder.MINUTES;
import net.minecraft.item.ItemStack;
@@ -36,7 +36,7 @@ public class ProcessingLens implements gregtech.api.interfaces.IOreRecipeRegistr
GT_OreDictUnificator.get(OrePrefixes.dustSmall, aMaterial, 1L))
.duration(1 * MINUTES)
.eut(TierEU.RECIPE_LV)
- .addTo(sLatheRecipes);
+ .addTo(latheRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.gemExquisite, aMaterial, 1L))
@@ -45,7 +45,7 @@ public class ProcessingLens implements gregtech.api.interfaces.IOreRecipeRegistr
GT_OreDictUnificator.get(OrePrefixes.dust, aMaterial, 1L))
.duration(2 * MINUTES)
.eut(16)
- .addTo(sLatheRecipes);
+ .addTo(latheRecipes);
}
case "ChromaticGlass" -> {
GT_Values.RA.stdBuilder()
@@ -53,7 +53,7 @@ public class ProcessingLens implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.lens, aMaterial, 1L))
.duration(10 * MINUTES)
.eut(TierEU.RECIPE_UHV)
- .addTo(sCompressorRecipes);
+ .addTo(compressorRecipes);
}
default -> {
if (GT_OreDictUnificator.get(OrePrefixes.plate, aMaterial, 1L) != null) {
@@ -68,7 +68,7 @@ public class ProcessingLens implements gregtech.api.interfaces.IOreRecipeRegistr
}
recipeBuilder.duration(1 * MINUTES)
.eut(TierEU.RECIPE_MV)
- .addTo(sLatheRecipes);
+ .addTo(latheRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.gemExquisite, aMaterial, 1L) != null) {
GT_RecipeBuilder recipeBuilder = GT_Values.RA.stdBuilder();
@@ -82,7 +82,7 @@ public class ProcessingLens implements gregtech.api.interfaces.IOreRecipeRegistr
}
recipeBuilder.duration(2 * MINUTES)
.eut(TierEU.RECIPE_LV)
- .addTo(sLatheRecipes);
+ .addTo(latheRecipes);
}
final ITexture lensCoverTexture = TextureFactory
.of(Textures.BlockIcons.OVERLAY_LENS, aMaterial.mRGBa, false);
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingLog.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingLog.java
index 2010a39f7c..7d36af7de3 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingLog.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingLog.java
@@ -1,14 +1,14 @@
package gregtech.loaders.oreprocessing;
import static gregtech.api.enums.Mods.Railcraft;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sAssemblerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sCentrifugeRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sChemicalBathRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sCutterRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sExtractorRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sLatheRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sMaceratorRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sPyrolyseRecipes;
+import static gregtech.api.recipe.RecipeMaps.assemblerRecipes;
+import static gregtech.api.recipe.RecipeMaps.centrifugeRecipes;
+import static gregtech.api.recipe.RecipeMaps.chemicalBathRecipes;
+import static gregtech.api.recipe.RecipeMaps.cutterRecipes;
+import static gregtech.api.recipe.RecipeMaps.extractorRecipes;
+import static gregtech.api.recipe.RecipeMaps.latheRecipes;
+import static gregtech.api.recipe.RecipeMaps.maceratorRecipes;
+import static gregtech.api.recipe.RecipeMaps.pyrolyseRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
@@ -48,14 +48,14 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.fluidOutputs(Materials.Methane.getGas(60L))
.duration(10 * SECONDS)
.eut(20)
- .addTo(sCentrifugeRecipes);
+ .addTo(centrifugeRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.RawRubber, 1L))
.duration(15 * SECONDS)
.eut(2)
- .addTo(sExtractorRecipes);
+ .addTo(extractorRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -63,14 +63,14 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.outputChances(10000, 3300)
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
} else {
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack), GT_Utility.getIntegratedCircuit(1))
.fluidOutputs(Materials.Methane.getGas(60L))
.duration(10 * SECONDS)
.eut(20)
- .addTo(sCentrifugeRecipes);
+ .addTo(centrifugeRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -80,7 +80,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.outputChances(10000, 8000)
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
}
GT_ModHandler.addCraftingRecipe(
@@ -96,7 +96,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Wood, 2L))
.duration(8 * SECONDS)
.eut(7)
- .addTo(sLatheRecipes);
+ .addTo(latheRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack), GT_Utility.getIntegratedCircuit(2))
@@ -104,7 +104,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.fluidInputs(Materials.SeedOil.getFluid(50L))
.duration(16 * TICKS)
.eut(7)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(8, aStack), GT_Utility.getIntegratedCircuit(8))
@@ -112,7 +112,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.fluidInputs(Materials.SeedOil.getFluid(250L))
.duration(3 * SECONDS + 4 * TICKS)
.eut(16)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -120,7 +120,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.fluidInputs(Materials.Creosote.getFluid(750L))
.duration(16 * TICKS)
.eut(TierEU.ULV)
- .addTo(sChemicalBathRecipes);
+ .addTo(chemicalBathRecipes);
short aMeta = (short) aStack.getItemDamage();
@@ -161,7 +161,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.fluidInputs(Materials.Lubricant.getFluid(1L))
.duration(10 * SECONDS)
.eut(8)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(aStack.getItem(), 1, i))
.itemOutputs(
@@ -172,7 +172,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.fluidInputs(Materials.Water.getFluid(Math.min(1000, 200 * 8 / 320)))
.duration(20 * SECONDS)
.eut(8)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(aStack.getItem(), 1, i))
.itemOutputs(
@@ -183,7 +183,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.fluidInputs(GT_ModHandler.getDistilledWater(3))
.duration(20 * SECONDS)
.eut(8)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(aStack.getItem(), 1, i))
.itemOutputs(
@@ -194,7 +194,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.fluidInputs(Materials.Lubricant.getFluid(1))
.duration(10 * SECONDS)
.eut(8)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_ModHandler.addSawmillRecipe(
new ItemStack(aStack.getItem(), 1, i),
tPlanks,
@@ -237,7 +237,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.fluidInputs(Materials.Lubricant.getFluid(1L))
.duration(10 * SECONDS)
.eut(8)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
.itemOutputs(
@@ -248,7 +248,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.fluidInputs(Materials.Water.getFluid(Math.min(1000, 200 * 8 / 320)))
.duration(20 * SECONDS)
.eut(8)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
.itemOutputs(
@@ -259,7 +259,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.fluidInputs(GT_ModHandler.getDistilledWater(3))
.duration(20 * SECONDS)
.eut(8)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
.itemOutputs(
@@ -270,7 +270,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.fluidInputs(Materials.Lubricant.getFluid(1))
.duration(10 * SECONDS)
.eut(8)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_ModHandler.addSawmillRecipe(
GT_Utility.copyAmount(1, aStack),
tPlanks,
@@ -306,7 +306,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.duration(32 * SECONDS)
.eut(64)
.noOptimize()
- .addTo(sPyrolyseRecipes);
+ .addTo(pyrolyseRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(16, logStack), GT_Utility.getIntegratedCircuit(2))
.itemOutputs(Materials.Charcoal.getGems(20))
@@ -315,7 +315,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.duration(16 * SECONDS)
.eut(96)
.noOptimize()
- .addTo(sPyrolyseRecipes);
+ .addTo(pyrolyseRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(16, logStack), GT_Utility.getIntegratedCircuit(3))
.itemOutputs(Materials.Charcoal.getGems(20))
@@ -323,7 +323,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.duration(32 * SECONDS)
.eut(64)
.noOptimize()
- .addTo(sPyrolyseRecipes);
+ .addTo(pyrolyseRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(16, logStack), GT_Utility.getIntegratedCircuit(4))
.itemOutputs(Materials.Charcoal.getGems(20))
@@ -332,7 +332,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.duration(16 * SECONDS)
.eut(96)
.noOptimize()
- .addTo(sPyrolyseRecipes);
+ .addTo(pyrolyseRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(16, logStack), GT_Utility.getIntegratedCircuit(5))
.itemOutputs(Materials.Charcoal.getGems(20))
@@ -340,7 +340,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.duration(32 * SECONDS)
.eut(64)
.noOptimize()
- .addTo(sPyrolyseRecipes);
+ .addTo(pyrolyseRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(16, logStack), GT_Utility.getIntegratedCircuit(6))
.itemOutputs(Materials.Charcoal.getGems(20))
@@ -349,7 +349,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.duration(16 * SECONDS)
.eut(96)
.noOptimize()
- .addTo(sPyrolyseRecipes);
+ .addTo(pyrolyseRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(16, logStack), GT_Utility.getIntegratedCircuit(7))
.itemOutputs(Materials.Charcoal.getGems(20))
@@ -357,7 +357,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.duration(32 * SECONDS)
.eut(64)
.noOptimize()
- .addTo(sPyrolyseRecipes);
+ .addTo(pyrolyseRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(16, logStack), GT_Utility.getIntegratedCircuit(8))
.itemOutputs(Materials.Charcoal.getGems(20))
@@ -366,7 +366,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.duration(16 * SECONDS)
.eut(96)
.noOptimize()
- .addTo(sPyrolyseRecipes);
+ .addTo(pyrolyseRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(16, logStack), GT_Utility.getIntegratedCircuit(9))
.itemOutputs(Materials.Charcoal.getGems(20))
@@ -374,7 +374,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.duration(32 * SECONDS)
.eut(64)
.noOptimize()
- .addTo(sPyrolyseRecipes);
+ .addTo(pyrolyseRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(16, logStack), GT_Utility.getIntegratedCircuit(10))
.itemOutputs(Materials.Charcoal.getGems(20))
@@ -383,7 +383,7 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.duration(16 * SECONDS)
.eut(96)
.noOptimize()
- .addTo(sPyrolyseRecipes);
+ .addTo(pyrolyseRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(16, logStack), GT_Utility.getIntegratedCircuit(11))
.itemOutputs(Materials.Ash.getDust(4))
@@ -391,6 +391,6 @@ public class ProcessingLog implements gregtech.api.interfaces.IOreRecipeRegistra
.duration(16 * SECONDS)
.eut(192)
.noOptimize()
- .addTo(sPyrolyseRecipes);
+ .addTo(pyrolyseRecipes);
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingNugget.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingNugget.java
index 59559d3554..380d42f360 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingNugget.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingNugget.java
@@ -1,7 +1,7 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sAlloySmelterRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sFluidSolidficationRecipes;
+import static gregtech.api.recipe.RecipeMaps.alloySmelterRecipes;
+import static gregtech.api.recipe.RecipeMaps.fluidSolidifierRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
import static gregtech.api.util.GT_Utility.calculateRecipeEU;
@@ -14,6 +14,7 @@ import gregtech.api.enums.Materials;
import gregtech.api.enums.OrePrefixes;
import gregtech.api.enums.SubTag;
import gregtech.api.enums.TierEU;
+import gregtech.api.recipe.RecipeCategories;
import gregtech.api.util.GT_ModHandler;
import gregtech.api.util.GT_OreDictUnificator;
import gregtech.api.util.GT_RecipeRegistrator;
@@ -36,7 +37,7 @@ public class ProcessingNugget implements gregtech.api.interfaces.IOreRecipeRegis
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.gem, aMaterial.mSmeltInto, 1L))
.duration(10 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 2))
- .addTo(sAlloySmelterRecipes);
+ .addTo(alloySmelterRecipes);
}
if ((!aMaterial.contains(SubTag.SMELTING_TO_GEM))
@@ -46,7 +47,8 @@ public class ProcessingNugget implements gregtech.api.interfaces.IOreRecipeRegis
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.ingot, aMaterial.mSmeltInto, 1L))
.duration(10 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 2))
- .addTo(sAlloySmelterRecipes);
+ .recipeCategory(RecipeCategories.alloySmelterMolding)
+ .addTo(alloySmelterRecipes);
}
if (aMaterial.mStandardMoltenFluid != null) {
@@ -57,7 +59,7 @@ public class ProcessingNugget implements gregtech.api.interfaces.IOreRecipeRegis
.fluidInputs(aMaterial.getMolten(16L))
.duration(16 * TICKS)
.eut(calculateRecipeEU(aMaterial, 4))
- .addTo(sFluidSolidficationRecipes);
+ .addTo(fluidSolidifierRecipes);
}
}
@@ -73,7 +75,8 @@ public class ProcessingNugget implements gregtech.api.interfaces.IOreRecipeRegis
.itemOutputs(GT_Utility.copyAmount(9, aStack))
.duration(5 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 1))
- .addTo(sAlloySmelterRecipes);
+ .recipeCategory(RecipeCategories.alloySmelterMolding)
+ .addTo(alloySmelterRecipes);
if (aMaterial.getProcessingMaterialTierEU() < TierEU.IV) {
GT_ModHandler.addCraftingRecipe(
GT_OreDictUnificator.get(OrePrefixes.nugget, aMaterial, 8L),
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingOre.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingOre.java
index ee715d7f91..40bfc41223 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingOre.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingOre.java
@@ -1,9 +1,9 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sBlastRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sCentrifugeRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sHammerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sMaceratorRecipes;
+import static gregtech.api.recipe.RecipeMaps.blastFurnaceRecipes;
+import static gregtech.api.recipe.RecipeMaps.centrifugeRecipes;
+import static gregtech.api.recipe.RecipeMaps.hammerRecipes;
+import static gregtech.api.recipe.RecipeMaps.maceratorRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeConstants.COIL_HEAT;
@@ -49,7 +49,7 @@ public class ProcessingOre implements gregtech.api.interfaces.IOreRecipeRegistra
.fluidOutputs(Materials.OilHeavy.getFluid(tIsRich ? 4000L : 2000L))
.duration(tIsRich ? 30 * SECONDS : 15 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sCentrifugeRecipes);
+ .addTo(centrifugeRecipes);
} else {
registerStandardOreRecipes(
aPrefix,
@@ -149,7 +149,7 @@ public class ProcessingOre implements gregtech.api.interfaces.IOreRecipeRegistra
.duration(tSmeltInto.stackSize * 25 * SECONDS)
.eut(TierEU.RECIPE_MV)
.metadata(COIL_HEAT, 1500)
- .addTo(sBlastRecipes);
+ .addTo(blastFurnaceRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
aOreStack,
@@ -160,7 +160,7 @@ public class ProcessingOre implements gregtech.api.interfaces.IOreRecipeRegistra
.duration(tSmeltInto.stackSize * 25 * SECONDS)
.eut(TierEU.RECIPE_MV)
.metadata(COIL_HEAT, 1500)
- .addTo(sBlastRecipes);
+ .addTo(blastFurnaceRecipes);
}
} else if (aMaterial.contains(SubTag.BLASTFURNACE_CALCITE_DOUBLE)) {
if (aMaterial.mAutoGenerateBlastFurnaceRecipes) {
@@ -174,7 +174,7 @@ public class ProcessingOre implements gregtech.api.interfaces.IOreRecipeRegistra
.duration(tSmeltInto.stackSize * 25 * SECONDS)
.eut(TierEU.RECIPE_MV)
.metadata(COIL_HEAT, 1500)
- .addTo(sBlastRecipes);
+ .addTo(blastFurnaceRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
aOreStack,
@@ -185,7 +185,7 @@ public class ProcessingOre implements gregtech.api.interfaces.IOreRecipeRegistra
.duration(tSmeltInto.stackSize * 25 * SECONDS)
.eut(TierEU.RECIPE_MV)
.metadata(COIL_HEAT, 1500)
- .addTo(sBlastRecipes);
+ .addTo(blastFurnaceRecipes);
}
}
}
@@ -205,7 +205,7 @@ public class ProcessingOre implements gregtech.api.interfaces.IOreRecipeRegistra
.itemOutputs(GT_Utility.copy(GT_Utility.copyAmount(tCrushed.stackSize, tGem), tCrushed))
.duration(10)
.eut(16)
- .addTo(sHammerRecipes);
+ .addTo(hammerRecipes);
int chanceOre2 = tPrimaryByProduct == null ? 0
: tPrimaryByProduct.stackSize * 10 * aMultiplier * aMaterial.mByProductMultiplier;
@@ -226,7 +226,7 @@ public class ProcessingOre implements gregtech.api.interfaces.IOreRecipeRegistra
.outputChances(10000, chanceOre2, 5000)
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
}
return true;
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingOrePoor.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingOrePoor.java
index 20ceb97e5e..ac9106d31b 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingOrePoor.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingOrePoor.java
@@ -1,7 +1,7 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sHammerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sMaceratorRecipes;
+import static gregtech.api.recipe.RecipeMaps.hammerRecipes;
+import static gregtech.api.recipe.RecipeMaps.maceratorRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import net.minecraft.item.ItemStack;
@@ -48,7 +48,7 @@ public class ProcessingOrePoor implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.dustTiny, aMaterial, aMultiplier))
.duration(10)
.eut(16)
- .addTo(sHammerRecipes);
+ .addTo(hammerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -62,7 +62,7 @@ public class ProcessingOrePoor implements gregtech.api.interfaces.IOreRecipeRegi
.outputChances(10000, 100 * 5 * aMultiplier, 10000)
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
if (aMaterial.contains(SubTag.NO_SMELTING)) GT_ModHandler.addSmeltingRecipe(
GT_Utility.copyAmount(1, aStack),
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingOreSmelting.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingOreSmelting.java
index 1697bdd462..93458ee467 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingOreSmelting.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingOreSmelting.java
@@ -1,7 +1,7 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sBlastRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sPrimitiveBlastRecipes;
+import static gregtech.api.recipe.RecipeMaps.blastFurnaceRecipes;
+import static gregtech.api.recipe.RecipeMaps.primitiveBlastRecipes;
import static gregtech.api.util.GT_RecipeBuilder.MINUTES;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
import static gregtech.api.util.GT_RecipeConstants.ADDITIVE_AMOUNT;
@@ -57,7 +57,7 @@ public class ProcessingOreSmelting implements gregtech.api.interfaces.IOreRecipe
.duration(Math.max(aMaterial.getMass() / 4L, 1L) * aMaterial.mBlastFurnaceTemp * TICKS)
.eut(TierEU.RECIPE_MV)
.metadata(COIL_HEAT, (int) aMaterial.mBlastFurnaceTemp)
- .addTo(sBlastRecipes);
+ .addTo(blastFurnaceRecipes);
}
} else {
OrePrefixes outputPrefix;
@@ -88,9 +88,8 @@ public class ProcessingOreSmelting implements gregtech.api.interfaces.IOreRecipe
.itemInputs(GT_Utility.copyAmount(2, aStack))
.itemOutputs(aMaterial.mDirectSmelting.getIngots(outputAmount))
.duration(2 * MINUTES)
- .eut(0)
.metadata(ADDITIVE_AMOUNT, 2)
- .addTo(sPrimitiveBlastRecipes);
+ .addTo(primitiveBlastRecipes);
} else if (aMaterial == Materials.Chalcopyrite) {
GT_Values.RA.stdBuilder()
.itemInputs(aMaterial.getDust(2), new ItemStack(Blocks.sand, 2))
@@ -98,54 +97,48 @@ public class ProcessingOreSmelting implements gregtech.api.interfaces.IOreRecipe
aMaterial.mDirectSmelting.getIngots(outputAmount),
Materials.Ferrosilite.getDustSmall(2 * outputAmount))
.duration(2 * MINUTES)
- .eut(0)
.metadata(ADDITIVE_AMOUNT, 2)
- .addTo(sPrimitiveBlastRecipes);
+ .addTo(primitiveBlastRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(aMaterial.getDust(2), Materials.Glass.getDust(2))
.itemOutputs(
aMaterial.mDirectSmelting.getIngots(outputAmount),
Materials.Ferrosilite.getDustSmall(7 * outputAmount))
.duration(2 * MINUTES)
- .eut(0)
.metadata(ADDITIVE_AMOUNT, 2)
- .addTo(sPrimitiveBlastRecipes);
+ .addTo(primitiveBlastRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(aMaterial.getDust(2), Materials.SiliconDioxide.getDust(2))
.itemOutputs(
aMaterial.mDirectSmelting.getIngots(outputAmount),
Materials.Ferrosilite.getDustSmall(outputAmount))
.duration(2 * MINUTES)
- .eut(0)
.metadata(ADDITIVE_AMOUNT, 2)
- .addTo(sPrimitiveBlastRecipes);
+ .addTo(primitiveBlastRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(aMaterial.getDust(2), Materials.Quartzite.getDust(4))
.itemOutputs(
aMaterial.mDirectSmelting.getIngots(outputAmount),
Materials.Ferrosilite.getDustSmall(outputAmount))
.duration(2 * MINUTES)
- .eut(0)
.metadata(ADDITIVE_AMOUNT, 2)
- .addTo(sPrimitiveBlastRecipes);
+ .addTo(primitiveBlastRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(aMaterial.getDust(2), Materials.NetherQuartz.getDust(2))
.itemOutputs(
aMaterial.mDirectSmelting.getIngots(outputAmount),
Materials.Ferrosilite.getDustSmall(outputAmount))
.duration(2 * MINUTES)
- .eut(0)
.metadata(ADDITIVE_AMOUNT, 2)
- .addTo(sPrimitiveBlastRecipes);
+ .addTo(primitiveBlastRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(aMaterial.getDust(2), Materials.CertusQuartz.getDust(2))
.itemOutputs(
aMaterial.mDirectSmelting.getIngots(outputAmount),
Materials.Ferrosilite.getDustSmall(outputAmount))
.duration(2 * MINUTES)
- .eut(0)
.metadata(ADDITIVE_AMOUNT, 2)
- .addTo(sPrimitiveBlastRecipes);
+ .addTo(primitiveBlastRecipes);
} else if (aMaterial == Materials.Tetrahedrite) {
GT_Values.RA.stdBuilder()
.itemInputs(aMaterial.getDust(2))
@@ -153,9 +146,8 @@ public class ProcessingOreSmelting implements gregtech.api.interfaces.IOreRecipe
aMaterial.mDirectSmelting.getIngots(outputAmount),
Materials.Antimony.getNuggets(3 * outputAmount))
.duration(2 * MINUTES)
- .eut(0)
.metadata(ADDITIVE_AMOUNT, 2)
- .addTo(sPrimitiveBlastRecipes);
+ .addTo(primitiveBlastRecipes);
} else if (aMaterial == Materials.Galena) {
GT_Values.RA.stdBuilder()
.itemInputs(aMaterial.getDust(2))
@@ -163,9 +155,8 @@ public class ProcessingOreSmelting implements gregtech.api.interfaces.IOreRecipe
aMaterial.mDirectSmelting.getIngots(outputAmount),
Materials.Silver.getNuggets(3 * outputAmount))
.duration(2 * MINUTES)
- .eut(0)
.metadata(ADDITIVE_AMOUNT, 2)
- .addTo(sPrimitiveBlastRecipes);
+ .addTo(primitiveBlastRecipes);
}
}
case dustImpure:
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingPipe.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingPipe.java
index b49f701698..1f97e1e32a 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingPipe.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingPipe.java
@@ -1,6 +1,6 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sAssemblerRecipes;
+import static gregtech.api.recipe.RecipeMaps.assemblerRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
import static gregtech.api.util.GT_Utility.calculateRecipeEU;
@@ -97,7 +97,7 @@ public class ProcessingPipe implements gregtech.api.interfaces.IOreRecipeRegistr
.duration(
((int) (aPrefix.mSecondaryMaterial.mAmount * 400L / OrePrefixes.ring.mMaterialAmount)) * TICKS)
.eut(4)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
case pipeQuadruple -> {
if (aMaterial.getProcessingMaterialTierEU() < TierEU.IV) {
@@ -115,7 +115,7 @@ public class ProcessingPipe implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.pipeQuadruple, aMaterial, 1))
.duration(3 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 4))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
case pipeNonuple -> {
if (aMaterial.getProcessingMaterialTierEU() < TierEU.IV) {
@@ -133,7 +133,7 @@ public class ProcessingPipe implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.pipeNonuple, aMaterial, 1))
.duration(3 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 8))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
default -> {}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingPlank.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingPlank.java
index 7e28e64674..b28b997a93 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingPlank.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingPlank.java
@@ -1,8 +1,8 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sAssemblerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sCutterRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sLatheRecipes;
+import static gregtech.api.recipe.RecipeMaps.assemblerRecipes;
+import static gregtech.api.recipe.RecipeMaps.cutterRecipes;
+import static gregtech.api.recipe.RecipeMaps.latheRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
@@ -33,7 +33,7 @@ public class ProcessingPlank implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.stick, Materials.Wood, 2L))
.duration(10 * TICKS)
.eut(8)
- .addTo(sLatheRecipes);
+ .addTo(latheRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
GT_Utility.copyAmount(1, aStack),
@@ -41,7 +41,7 @@ public class ProcessingPlank implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(ItemList.Crate_Empty.get(1L))
.duration(10 * SECONDS)
.eut(1)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
GT_Utility.copyAmount(1, aStack),
@@ -49,7 +49,7 @@ public class ProcessingPlank implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(ItemList.Crate_Empty.get(1L))
.duration(10 * SECONDS)
.eut(1)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
GT_Utility.copyAmount(1, aStack),
@@ -57,19 +57,19 @@ public class ProcessingPlank implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(ItemList.Crate_Empty.get(1L))
.duration(10 * SECONDS)
.eut(1)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(8, aStack), GT_Utility.getIntegratedCircuit(8))
.itemOutputs(new ItemStack(Blocks.chest, 1))
.duration(40 * SECONDS)
.eut(4)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(6, aStack), new ItemStack(Items.book, 3))
.itemOutputs(new ItemStack(Blocks.bookshelf, 1))
.duration(20 * SECONDS)
.eut(4)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
if (aStack.getItemDamage() == 32767) {
for (byte i = 0; i < 64; i = (byte) (i + 1)) {
@@ -83,21 +83,21 @@ public class ProcessingPlank implements gregtech.api.interfaces.IOreRecipeRegist
.fluidInputs(Materials.Water.getFluid(4))
.duration(2 * 25 * TICKS)
.eut(4)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, tStack))
.itemOutputs(GT_Utility.copyAmount(tOutput.stackSize / 3, tOutput))
.fluidInputs(GT_ModHandler.getDistilledWater(3))
.duration(2 * 25 * TICKS)
.eut(4)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, tStack))
.itemOutputs(GT_Utility.copyAmount(tOutput.stackSize / 3, tOutput))
.fluidInputs(Materials.Lubricant.getFluid(1))
.duration(25 * TICKS)
.eut(4)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_ModHandler.removeRecipeDelayed(tStack, tStack, tStack);
GT_ModHandler.addCraftingRecipe(
GT_Utility.copyAmount(tOutput.stackSize / 3, tOutput),
@@ -117,21 +117,21 @@ public class ProcessingPlank implements gregtech.api.interfaces.IOreRecipeRegist
.fluidInputs(Materials.Water.getFluid(4))
.duration(2 * 25)
.eut(4)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
.itemOutputs(GT_Utility.copyAmount(tOutput.stackSize / 3, tOutput))
.fluidInputs(GT_ModHandler.getDistilledWater(3))
.duration(2 * 25)
.eut(4)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
.itemOutputs(GT_Utility.copyAmount(tOutput.stackSize / 3, tOutput))
.fluidInputs(Materials.Lubricant.getFluid(1))
.duration(25)
.eut(4)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_ModHandler.removeRecipeDelayed(aStack, aStack, aStack);
GT_ModHandler.addCraftingRecipe(
GT_Utility.copyAmount(tOutput.stackSize / 3, tOutput),
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingPlate.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingPlate.java
index d80e3b1c1e..88f39309cf 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingPlate.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingPlate.java
@@ -4,15 +4,15 @@ import static gregtech.api.enums.ConfigCategories.Recipes.harderrecipes;
import static gregtech.api.enums.GT_Values.L;
import static gregtech.api.enums.GT_Values.NI;
import static gregtech.api.enums.GT_Values.W;
+import static gregtech.api.recipe.RecipeMaps.alloySmelterRecipes;
+import static gregtech.api.recipe.RecipeMaps.assemblerRecipes;
+import static gregtech.api.recipe.RecipeMaps.benderRecipes;
+import static gregtech.api.recipe.RecipeMaps.cutterRecipes;
+import static gregtech.api.recipe.RecipeMaps.extruderRecipes;
+import static gregtech.api.recipe.RecipeMaps.fluidSolidifierRecipes;
+import static gregtech.api.recipe.RecipeMaps.implosionRecipes;
import static gregtech.api.util.GT_ModHandler.RecipeBits.BUFFERED;
import static gregtech.api.util.GT_ModHandler.RecipeBits.DO_NOT_CHECK_FOR_COLLISIONS;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sAlloySmelterRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sAssemblerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sBenderRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sCutterRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sExtruderRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sFluidSolidficationRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sImplosionRecipes;
import static gregtech.api.util.GT_RecipeBuilder.MINUTES;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
@@ -36,6 +36,7 @@ import gregtech.api.enums.SubTag;
import gregtech.api.enums.TextureSet;
import gregtech.api.enums.TierEU;
import gregtech.api.enums.ToolDictNames;
+import gregtech.api.recipe.RecipeCategories;
import gregtech.api.render.TextureFactory;
import gregtech.api.util.GT_ModHandler;
import gregtech.api.util.GT_OreDictUnificator;
@@ -104,8 +105,6 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
.itemInputs(GT_Utility.copyAmount(1, aStack))
.metadata(FUEL_VALUE, aMaterial.mFuelPower)
.metadata(FUEL_TYPE, aMaterial.mFuelType)
- .duration(0)
- .eut(0)
.addTo(GT_RecipeConstants.Fuel);
}
@@ -117,7 +116,7 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
.fluidInputs(aMaterial.getMolten(L))
.duration(1 * SECONDS + 12 * TICKS)
.eut(calculateRecipeEU(aMaterial, 8))
- .addTo(sFluidSolidficationRecipes);
+ .addTo(fluidSolidifierRecipes);
}
GT_ModHandler.addCraftingRecipe(
@@ -195,7 +194,7 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plateQuadruple, aMaterial, 1L))
.duration(Math.max(aMaterialMass * 2L, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
// 2 plates -> 1 double plate
GT_Values.RA.stdBuilder()
@@ -205,7 +204,7 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_Utility.copyAmount(1, aStack))
.duration(Math.max(aMaterialMass * 2L, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
} else {
GT_Values.RA.stdBuilder()
.itemInputs(
@@ -215,7 +214,7 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
.fluidInputs(Materials.Glue.getFluid(10L))
.duration(3 * SECONDS + 4 * TICKS)
.eut(8)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
if (!aNoSmashing) {
@@ -253,7 +252,7 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plateDense, aMaterial, 1L))
.duration(Math.max(aMaterialMass * 3L, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
GT_Values.RA.stdBuilder()
@@ -263,7 +262,7 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_Utility.copyAmount(1, aStack))
.duration(Math.max(aMaterialMass * 3L, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
} else {
GT_Values.RA.stdBuilder()
.itemInputs(
@@ -273,7 +272,7 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
.fluidInputs(Materials.Glue.getFluid(20L))
.duration(4 * SECONDS + 16 * TICKS)
.eut(8)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
if (!aNoSmashing) {
@@ -310,7 +309,7 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 1L))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack), GT_ModHandler.getIC2Item("dynamite", 1, null))
.itemOutputs(
@@ -318,7 +317,7 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 1L))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack), new ItemStack(Blocks.tnt, 2))
.itemOutputs(
@@ -326,7 +325,7 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 1L))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack), GT_ModHandler.getIC2Item("industrialTnt", 1))
.itemOutputs(
@@ -334,7 +333,7 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 1L))
.duration(1 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sImplosionRecipes);
+ .addTo(implosionRecipes);
}
}
@@ -354,7 +353,7 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_Utility.copyAmount(1, aStack))
.duration(Math.max(aMaterialMass * 4L, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
} else {
GT_Values.RA.stdBuilder()
.itemInputs(
@@ -364,7 +363,7 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
.fluidInputs(Materials.Glue.getFluid(30L))
.duration(6 * SECONDS + 8 * TICKS)
.eut(8)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
if (!aNoSmashing) {
if (GregTech_API.sRecipeFile.get(
@@ -408,7 +407,7 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_Utility.copyAmount(1, aStack))
.duration(Math.max(aMaterialMass * 5L, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
} else {
GT_Values.RA.stdBuilder()
.itemInputs(
@@ -418,7 +417,7 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
.fluidInputs(Materials.Glue.getFluid(40L))
.duration(8 * SECONDS)
.eut(8)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
if (!aNoSmashing) {
if (GregTech_API.sRecipeFile.get(
@@ -462,7 +461,7 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_Utility.copyAmount(1, aStack))
.duration(Math.max(aMaterialMass * 9L, 1L))
.eut(calculateRecipeEU(aMaterial, 96))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
}
@@ -478,7 +477,7 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
.fluidInputs(aMaterial.getMolten(L / 2))
.duration(16 * TICKS)
.eut(calculateRecipeEU(aMaterial, 8))
- .addTo(sFluidSolidficationRecipes);
+ .addTo(fluidSolidifierRecipes);
}
if (aMaterial.mUnificatable && aMaterial.mMaterialInto == aMaterial
@@ -508,7 +507,8 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_Utility.copyAmount(3, aStack))
.duration(6 * SECONDS + 8 * TICKS)
.eut(calculateRecipeEU(aMaterial, 15))
- .addTo(sAlloySmelterRecipes);
+ .recipeCategory(RecipeCategories.alloySmelterMolding)
+ .addTo(alloySmelterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
@@ -517,7 +517,7 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.itemCasing, aMaterial, 2L))
.duration(((int) Math.max(aMaterial.getMass(), 1L)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 45))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.plate, aMaterial, 1L) != null) {
@@ -533,7 +533,7 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
((int) Math.max(aMaterial.getMass(), 1L)) * (calculateRecipeEU(aMaterial, 16)) / 320))))
.duration(2 * ((int) Math.max(aMaterial.getMass(), 1L)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 16))
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.plate, aMaterial, 1L))
@@ -547,7 +547,7 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
((int) Math.max(aMaterial.getMass(), 1L)) * (calculateRecipeEU(aMaterial, 16)) / 426))))
.duration(2 * ((int) Math.max(aMaterial.getMass(), 1L)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 16))
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.plate, aMaterial, 1L))
@@ -562,7 +562,7 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
/ 1280))))
.duration(((int) Math.max(aMaterial.getMass(), 1L)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 16))
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
}
GT_RecipeRegistrator.registerReverseFluidSmelting(aStack, aMaterial, aPrefix.mMaterialAmount, null);
}
@@ -576,20 +576,20 @@ public class ProcessingPlate implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_ModHandler.getIC2Item("windMill", 1L))
.duration(5 * MINUTES + 20 * SECONDS)
.eut(8)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack), new ItemStack(Blocks.glass, 3, W))
.itemOutputs(GT_ModHandler.getIC2Item("reinforcedGlass", 4L))
.duration(20 * SECONDS)
.eut(4)
- .addTo(sAlloySmelterRecipes);
+ .addTo(alloySmelterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack), Materials.Glass.getDust(3))
.itemOutputs(GT_ModHandler.getIC2Item("reinforcedGlass", 4L))
.duration(20 * SECONDS)
.eut(4)
- .addTo(sAlloySmelterRecipes);
+ .addTo(alloySmelterRecipes);
}
case "plateAlloyAdvanced" -> {
GT_ModHandler.addAlloySmelterRecipe(
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingPure.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingPure.java
index bafc7402b5..01262d32f4 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingPure.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingPure.java
@@ -1,7 +1,7 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sHammerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sMaceratorRecipes;
+import static gregtech.api.recipe.RecipeMaps.hammerRecipes;
+import static gregtech.api.recipe.RecipeMaps.maceratorRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import net.minecraft.item.ItemStack;
@@ -28,7 +28,7 @@ public class ProcessingPure implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.dustPure, aMaterial.mMacerateInto, 1L))
.duration(10)
.eut(16)
- .addTo(sHammerRecipes);
+ .addTo(hammerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -45,6 +45,6 @@ public class ProcessingPure implements gregtech.api.interfaces.IOreRecipeRegistr
.outputChances(10000, 1000)
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingRecycling.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingRecycling.java
index 153011c639..bfa580b4c4 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingRecycling.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingRecycling.java
@@ -1,6 +1,6 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sCannerRecipes;
+import static gregtech.api.recipe.RecipeMaps.cannerRecipes;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
import net.minecraft.item.ItemStack;
@@ -39,7 +39,7 @@ public class ProcessingRecycling implements gregtech.api.interfaces.IOreRecipeRe
}
recipeBuilder.duration(((int) Math.max(aMaterial.getMass() / 2L, 1L)) * TICKS)
.eut(2)
- .addTo(sCannerRecipes);
+ .addTo(cannerRecipes);
}
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingRotor.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingRotor.java
index b004a68515..3548bd437b 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingRotor.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingRotor.java
@@ -1,8 +1,8 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sAssemblerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sExtruderRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sFluidSolidficationRecipes;
+import static gregtech.api.recipe.RecipeMaps.assemblerRecipes;
+import static gregtech.api.recipe.RecipeMaps.extruderRecipes;
+import static gregtech.api.recipe.RecipeMaps.fluidSolidifierRecipes;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
import static gregtech.api.util.GT_Utility.calculateRecipeEU;
@@ -51,7 +51,7 @@ public class ProcessingRotor implements gregtech.api.interfaces.IOreRecipeRegist
.fluidInputs(Materials.Tin.getMolten(32))
.duration(((int) Math.max(aMaterial.getMass(), 1L)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 24))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(tPlate.copy(), tRing.copy(), GT_Utility.getIntegratedCircuit(4))
@@ -59,7 +59,7 @@ public class ProcessingRotor implements gregtech.api.interfaces.IOreRecipeRegist
.fluidInputs(Materials.Lead.getMolten(48))
.duration(((int) Math.max(aMaterial.getMass(), 1L)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 24))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(tPlate.copy(), tRing.copy(), GT_Utility.getIntegratedCircuit(4))
@@ -67,7 +67,7 @@ public class ProcessingRotor implements gregtech.api.interfaces.IOreRecipeRegist
.fluidInputs(Materials.SolderingAlloy.getMolten(16))
.duration(((int) Math.max(aMaterial.getMass(), 1L)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 24))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.ingot, aMaterial, 1L) != null) {
@@ -78,7 +78,7 @@ public class ProcessingRotor implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.rotor, aMaterial, 1L))
.duration(((int) Math.max(aMaterial.getMass(), 1L)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 24))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (aMaterial.mStandardMoltenFluid != null) {
if (!(aMaterial == Materials.AnnealedCopper || aMaterial == Materials.WroughtIron)) {
@@ -89,7 +89,7 @@ public class ProcessingRotor implements gregtech.api.interfaces.IOreRecipeRegist
.fluidInputs(aMaterial.getMolten(612L))
.duration(((int) Math.max(aMaterial.getMass(), 1L)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 24))
- .addTo(sFluidSolidficationRecipes);
+ .addTo(fluidSolidifierRecipes);
}
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingRound.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingRound.java
index 390894b3af..0eb2cb3dd0 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingRound.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingRound.java
@@ -1,6 +1,6 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sLatheRecipes;
+import static gregtech.api.recipe.RecipeMaps.latheRecipes;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
import net.minecraft.item.ItemStack;
@@ -31,7 +31,7 @@ public class ProcessingRound implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_Utility.copyAmount(1, aStack))
.duration(((int) Math.max(aMaterial.getMass() / 4L, 1L)) * TICKS)
.eut(8)
- .addTo(sLatheRecipes);
+ .addTo(latheRecipes);
}
if ((aMaterial.mUnificatable) && (aMaterial.mMaterialInto == aMaterial)) {
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingSand.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingSand.java
index 6ceec81e96..b1996d067f 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingSand.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingSand.java
@@ -1,6 +1,6 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sCentrifugeRecipes;
+import static gregtech.api.recipe.RecipeMaps.centrifugeRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import net.minecraft.init.Blocks;
@@ -30,7 +30,7 @@ public class ProcessingSand implements gregtech.api.interfaces.IOreRecipeRegistr
new ItemStack(Blocks.sand, 1, 0))
.duration(50 * SECONDS)
.eut(5)
- .addTo(sCentrifugeRecipes);
+ .addTo(centrifugeRecipes);
}
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingSaplings.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingSaplings.java
index 4205b25fa0..f13c2aa9b5 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingSaplings.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingSaplings.java
@@ -1,8 +1,8 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sCompressorRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sLatheRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sMaceratorRecipes;
+import static gregtech.api.recipe.RecipeMaps.compressorRecipes;
+import static gregtech.api.recipe.RecipeMaps.latheRecipes;
+import static gregtech.api.recipe.RecipeMaps.maceratorRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
@@ -29,14 +29,14 @@ public class ProcessingSaplings implements gregtech.api.interfaces.IOreRecipeReg
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.dustSmall, Materials.Wood, 2L))
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(8, aStack))
.itemOutputs(ItemList.IC2_Plantball.get(1L))
.duration(15 * SECONDS)
.eut(2)
- .addTo(sCompressorRecipes);
+ .addTo(compressorRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -45,6 +45,6 @@ public class ProcessingSaplings implements gregtech.api.interfaces.IOreRecipeReg
GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.Wood, 1L))
.duration(16 * TICKS)
.eut(8)
- .addTo(sLatheRecipes);
+ .addTo(latheRecipes);
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingScrew.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingScrew.java
index 5b8ace9ce1..afafe8525d 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingScrew.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingScrew.java
@@ -1,6 +1,6 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sLatheRecipes;
+import static gregtech.api.recipe.RecipeMaps.latheRecipes;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
import static gregtech.api.util.GT_Utility.calculateRecipeEU;
@@ -32,7 +32,7 @@ public class ProcessingScrew implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_Utility.copyAmount(1, aStack))
.duration(((int) Math.max(aMaterial.getMass() / 8L, 1L)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 4))
- .addTo(sLatheRecipes);
+ .addTo(latheRecipes);
}
if ((aMaterial.mUnificatable) && (aMaterial.mMaterialInto == aMaterial))
if (aMaterial.getProcessingMaterialTierEU() < TierEU.IV) {
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingShaping.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingShaping.java
index 06860e0a61..3c25574798 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingShaping.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingShaping.java
@@ -1,8 +1,8 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sAlloySmelterRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sExtruderRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sFluidSolidficationRecipes;
+import static gregtech.api.recipe.RecipeMaps.alloySmelterRecipes;
+import static gregtech.api.recipe.RecipeMaps.extruderRecipes;
+import static gregtech.api.recipe.RecipeMaps.fluidSolidifierRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
import static gregtech.api.util.GT_Utility.calculateRecipeEU;
@@ -17,6 +17,7 @@ import gregtech.api.enums.Materials;
import gregtech.api.enums.OrePrefixes;
import gregtech.api.enums.SubTag;
import gregtech.api.enums.TierEU;
+import gregtech.api.recipe.RecipeCategories;
import gregtech.api.util.GT_ModHandler;
import gregtech.api.util.GT_OreDictUnificator;
import gregtech.api.util.GT_Utility;
@@ -55,7 +56,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.block, aMaterial.mSmeltInto, tAmount))
.duration((10 * tAmount) * TICKS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
// Allow creation of alloy smelter recipes for material recycling if < IV tier.
if (tTrueVoltage < TierEU.IV) {
@@ -64,7 +65,8 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.block, aMaterial.mSmeltInto, tAmount))
.duration((5 * tAmount) * TICKS)
.eut(calculateRecipeEU(aMaterial, 4 * tVoltageMultiplier))
- .addTo(sAlloySmelterRecipes);
+ .recipeCategory(RecipeCategories.alloySmelterMolding)
+ .addTo(alloySmelterRecipes);
}
}
if ((aPrefix != OrePrefixes.ingot || aMaterial != aMaterial.mSmeltInto)
@@ -74,7 +76,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.ingot, aMaterial.mSmeltInto, tAmount))
.duration(10 * TICKS)
.eut(calculateRecipeEU(aMaterial, 4 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.pipeTiny, aMaterial.mSmeltInto, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -82,7 +84,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.pipeTiny, aMaterial.mSmeltInto, tAmount * 2))
.duration((4 * tAmount) * TICKS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.pipeSmall, aMaterial.mSmeltInto, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -90,7 +92,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.pipeSmall, aMaterial.mSmeltInto, tAmount))
.duration((8 * tAmount) * TICKS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.pipeMedium, aMaterial.mSmeltInto, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -98,7 +100,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.pipeMedium, aMaterial.mSmeltInto, tAmount))
.duration((24 * tAmount) * TICKS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.pipeLarge, aMaterial.mSmeltInto, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -106,7 +108,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.pipeLarge, aMaterial.mSmeltInto, tAmount))
.duration((48 * tAmount) * TICKS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.pipeHuge, aMaterial.mSmeltInto, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -114,7 +116,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.pipeHuge, aMaterial.mSmeltInto, tAmount))
.duration((96 * tAmount) * TICKS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.plate, aMaterial.mSmeltInto, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -122,7 +124,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plate, aMaterial.mSmeltInto, tAmount))
.duration(((int) Math.max(aMaterialMass * tAmount, tAmount)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.gearGtSmall, aMaterial.mSmeltInto, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -130,7 +132,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.gearGtSmall, aMaterial.mSmeltInto, tAmount))
.duration(((int) Math.max(aMaterialMass * tAmount, tAmount)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.turbineBlade, aMaterial.mSmeltInto, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -138,7 +140,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.turbineBlade, aMaterial.mSmeltInto, tAmount))
.duration(((int) Math.max(aMaterialMass * tAmount, tAmount)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (!(aMaterial == Materials.AnnealedCopper || aMaterial == Materials.WroughtIron)) {
@@ -150,7 +152,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.fluidInputs(aMaterial.getMolten(36L))
.duration(5 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 4 * tVoltageMultiplier))
- .addTo(sFluidSolidficationRecipes);
+ .addTo(fluidSolidifierRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.screw, aMaterial, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -159,7 +161,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.fluidInputs(aMaterial.getMolten(18L))
.duration(2 * SECONDS + 10 * TICKS)
.eut(calculateRecipeEU(aMaterial, 2 * tVoltageMultiplier))
- .addTo(sFluidSolidficationRecipes);
+ .addTo(fluidSolidifierRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.stick, aMaterial, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -168,7 +170,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.fluidInputs(aMaterial.getMolten(72L))
.duration(7 * SECONDS + 10 * TICKS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sFluidSolidficationRecipes);
+ .addTo(fluidSolidifierRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.bolt, aMaterial, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -177,7 +179,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.fluidInputs(aMaterial.getMolten(18L))
.duration(2 * SECONDS + 10 * TICKS)
.eut(calculateRecipeEU(aMaterial, 2 * tVoltageMultiplier))
- .addTo(sFluidSolidficationRecipes);
+ .addTo(fluidSolidifierRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.round, aMaterial, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -186,7 +188,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.fluidInputs(aMaterial.getMolten(18L))
.duration(2 * SECONDS + 10 * TICKS)
.eut(calculateRecipeEU(aMaterial, 2 * tVoltageMultiplier))
- .addTo(sFluidSolidficationRecipes);
+ .addTo(fluidSolidifierRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.stickLong, aMaterial, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -195,7 +197,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.fluidInputs(aMaterial.getMolten(144L))
.duration(15 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sFluidSolidficationRecipes);
+ .addTo(fluidSolidifierRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.turbineBlade, aMaterial, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -204,7 +206,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.fluidInputs(aMaterial.getMolten(864L))
.duration(20 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sFluidSolidficationRecipes);
+ .addTo(fluidSolidifierRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.pipeTiny, aMaterial, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -213,7 +215,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.fluidInputs(aMaterial.getMolten(72L))
.duration(1 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sFluidSolidficationRecipes);
+ .addTo(fluidSolidifierRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.pipeSmall, aMaterial, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -222,7 +224,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.fluidInputs(aMaterial.getMolten(144L))
.duration(2 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sFluidSolidficationRecipes);
+ .addTo(fluidSolidifierRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.pipeMedium, aMaterial, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -231,7 +233,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.fluidInputs(aMaterial.getMolten(432L))
.duration(4 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sFluidSolidficationRecipes);
+ .addTo(fluidSolidifierRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.pipeLarge, aMaterial, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -240,7 +242,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.fluidInputs(aMaterial.getMolten(864L))
.duration(8 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sFluidSolidficationRecipes);
+ .addTo(fluidSolidifierRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.pipeHuge, aMaterial, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -249,7 +251,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.fluidInputs(aMaterial.getMolten(1728L))
.duration(16 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sFluidSolidficationRecipes);
+ .addTo(fluidSolidifierRecipes);
}
}
}
@@ -262,7 +264,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
GT_OreDictUnificator.get(OrePrefixes.stick, aMaterial.mSmeltInto, tAmount * 2))
.duration(((int) Math.max(aMaterialMass * 2L * tAmount, tAmount)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 6 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
} else {
if (GT_OreDictUnificator.get(OrePrefixes.stick, aMaterial.mSmeltInto, 1L) != null) {
@@ -272,7 +274,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
GT_OreDictUnificator.get(OrePrefixes.stick, aMaterial.mSmeltInto, tAmount * 2))
.duration(10 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 2 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
}
}
@@ -284,7 +286,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
GT_OreDictUnificator.get(OrePrefixes.wireGt01, aMaterial.mSmeltInto, tAmount * 2))
.duration(((int) Math.max(aMaterialMass * 2L * tAmount, tAmount)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 6 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
}
if (tAmount * 8 <= 64) {
@@ -294,7 +296,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.bolt, aMaterial.mSmeltInto, tAmount * 8))
.duration(((int) Math.max(aMaterialMass * 2L * tAmount, tAmount)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
}
if (tAmount * 4 <= 64) {
@@ -304,7 +306,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.ring, aMaterial.mSmeltInto, tAmount * 4))
.duration(((int) Math.max(aMaterialMass * 2L * tAmount, tAmount)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 6 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if ((aMaterial.mUnificatable) && (aMaterial.mMaterialInto == aMaterial)
&& !aMaterial.contains(SubTag.NO_SMASHING)) {
@@ -325,7 +327,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.toolHeadSword, aMaterial.mSmeltInto, tAmount))
.duration(((int) Math.max(aMaterialMass * 2L * tAmount, tAmount)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.toolHeadPickaxe, aMaterial.mSmeltInto, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -334,7 +336,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
GT_OreDictUnificator.get(OrePrefixes.toolHeadPickaxe, aMaterial.mSmeltInto, tAmount))
.duration(((int) Math.max(aMaterialMass * 3L * tAmount, tAmount)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.toolHeadShovel, aMaterial.mSmeltInto, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -343,7 +345,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
GT_OreDictUnificator.get(OrePrefixes.toolHeadShovel, aMaterial.mSmeltInto, tAmount))
.duration(((int) Math.max(aMaterialMass * 1L * tAmount, tAmount)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.toolHeadAxe, aMaterial.mSmeltInto, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -351,7 +353,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.toolHeadAxe, aMaterial.mSmeltInto, tAmount))
.duration(((int) Math.max(aMaterialMass * 3L * tAmount, tAmount)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.toolHeadHoe, aMaterial.mSmeltInto, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -359,7 +361,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.toolHeadHoe, aMaterial.mSmeltInto, tAmount))
.duration(((int) Math.max(aMaterialMass * 2L * tAmount, tAmount)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.toolHeadHammer, aMaterial.mSmeltInto, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -368,7 +370,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
GT_OreDictUnificator.get(OrePrefixes.toolHeadHammer, aMaterial.mSmeltInto, tAmount))
.duration(((int) Math.max(aMaterialMass * 6L * tAmount, tAmount)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.toolHeadFile, aMaterial.mSmeltInto, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -376,7 +378,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.toolHeadFile, aMaterial.mSmeltInto, tAmount))
.duration(((int) Math.max(aMaterialMass * 2L * tAmount, tAmount)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.toolHeadSaw, aMaterial.mSmeltInto, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -384,7 +386,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.toolHeadSaw, aMaterial.mSmeltInto, tAmount))
.duration(((int) Math.max(aMaterialMass * 2L * tAmount, tAmount)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.gearGt, aMaterial.mSmeltInto, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -392,7 +394,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.gearGt, aMaterial.mSmeltInto, tAmount))
.duration(((int) Math.max(aMaterialMass * 5L * tAmount, tAmount)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 8 * tVoltageMultiplier))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (!(aMaterial == Materials.StyreneButadieneRubber || aMaterial == Materials.Silicone)) {
@@ -403,7 +405,8 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plate, aMaterial.mSmeltInto, tAmount))
.duration(((int) Math.max(aMaterialMass * 2L * tAmount, tAmount)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 2 * tVoltageMultiplier))
- .addTo(sAlloySmelterRecipes);
+ .recipeCategory(RecipeCategories.alloySmelterMolding)
+ .addTo(alloySmelterRecipes);
}
}
} else {
@@ -415,7 +418,8 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.plate, aMaterial.mSmeltInto, tAmount))
.duration(((int) Math.max(aMaterialMass * 2L * tAmount, tAmount)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 2 * tVoltageMultiplier))
- .addTo(sAlloySmelterRecipes);
+ .recipeCategory(RecipeCategories.alloySmelterMolding)
+ .addTo(alloySmelterRecipes);
}
}
}
@@ -428,7 +432,8 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.gearGt, aMaterial.mSmeltInto, tAmount))
.duration(((int) Math.max(aMaterialMass * 10L * tAmount, tAmount)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 2 * tVoltageMultiplier))
- .addTo(sAlloySmelterRecipes);
+ .recipeCategory(RecipeCategories.alloySmelterMolding)
+ .addTo(alloySmelterRecipes);
}
}
@@ -439,13 +444,13 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(new ItemStack(Items.glass_bottle, 1))
.duration((tAmount * 32) * TICKS)
.eut(16)
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack), ItemList.Shape_Mold_Bottle.get(0L))
.itemOutputs(new ItemStack(Items.glass_bottle, 1))
.duration((tAmount * 64) * TICKS)
.eut(4)
- .addTo(sAlloySmelterRecipes);
+ .addTo(alloySmelterRecipes);
}
case "Steel" -> {
GT_Values.RA.stdBuilder()
@@ -453,14 +458,14 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(ItemList.Cell_Empty.get(tAmount))
.duration((tAmount * 128) * TICKS)
.eut(TierEU.RECIPE_LV)
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
if (tAmount * 2 <= 64) {
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack), ItemList.Shape_Extruder_Casing.get(0L))
.itemOutputs(GT_ModHandler.getIC2Item("casingadviron", tAmount * 2))
.duration((tAmount * 32) * TICKS)
.eut(3 * tVoltageMultiplier)
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (tAmount * 2 <= 64) {
GT_Values.RA.stdBuilder()
@@ -468,7 +473,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_ModHandler.getIC2Item("casingadviron", tAmount * 3))
.duration((tAmount * 128) * TICKS)
.eut(1 * tVoltageMultiplier)
- .addTo(sAlloySmelterRecipes);
+ .addTo(alloySmelterRecipes);
}
}
case "Iron", "WroughtIron" -> {
@@ -477,14 +482,14 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_ModHandler.getIC2Item("fuelRod", tAmount))
.duration((tAmount * 128) * TICKS)
.eut(TierEU.RECIPE_LV)
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
if (tAmount * 2 <= 64) {
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack), ItemList.Shape_Extruder_Casing.get(0L))
.itemOutputs(GT_ModHandler.getIC2Item("casingiron", tAmount * 2))
.duration((tAmount * 32) * TICKS)
.eut(3 * tVoltageMultiplier)
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (tAmount * 2 <= 64) {
GT_Values.RA.stdBuilder()
@@ -492,7 +497,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_ModHandler.getIC2Item("casingiron", tAmount * 3))
.duration((tAmount * 128) * TICKS)
.eut(1 * tVoltageMultiplier)
- .addTo(sAlloySmelterRecipes);
+ .addTo(alloySmelterRecipes);
}
if (tAmount * 31 <= 64) {
GT_Values.RA.stdBuilder()
@@ -500,7 +505,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(new ItemStack(Blocks.anvil, 1, 0))
.duration((tAmount * 512) * TICKS)
.eut(4 * tVoltageMultiplier)
- .addTo(sAlloySmelterRecipes);
+ .addTo(alloySmelterRecipes);
}
}
case "Tin" -> {
@@ -509,14 +514,14 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(ItemList.Cell_Empty.get(tAmount))
.duration((tAmount * 128) * TICKS)
.eut(TierEU.RECIPE_LV)
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
if (tAmount * 2 <= 64) {
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack), ItemList.Shape_Extruder_Casing.get(0L))
.itemOutputs(GT_ModHandler.getIC2Item("casingtin", tAmount * 2))
.duration((tAmount * 32) * TICKS)
.eut(3 * tVoltageMultiplier)
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (tAmount * 2 <= 64) {
GT_Values.RA.stdBuilder()
@@ -524,7 +529,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_ModHandler.getIC2Item("casingtin", tAmount * 3))
.duration((tAmount * 128) * TICKS)
.eut(1 * tVoltageMultiplier)
- .addTo(sAlloySmelterRecipes);
+ .addTo(alloySmelterRecipes);
}
}
case "Lead" -> {
@@ -534,7 +539,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_ModHandler.getIC2Item("casinglead", tAmount * 2))
.duration((tAmount * 32) * TICKS)
.eut(3 * tVoltageMultiplier)
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (tAmount * 2 <= 64) {
GT_Values.RA.stdBuilder()
@@ -542,7 +547,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_ModHandler.getIC2Item("casinglead", tAmount * 3))
.duration((tAmount * 128) * TICKS)
.eut(1 * tVoltageMultiplier)
- .addTo(sAlloySmelterRecipes);
+ .addTo(alloySmelterRecipes);
}
}
case "Copper", "AnnealedCopper" -> {
@@ -552,7 +557,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_ModHandler.getIC2Item("casingcopper", tAmount * 2))
.duration((tAmount * 32) * TICKS)
.eut(3 * tVoltageMultiplier)
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (tAmount * 2 <= 64) {
GT_Values.RA.stdBuilder()
@@ -560,7 +565,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_ModHandler.getIC2Item("casingcopper", tAmount * 3))
.duration((tAmount * 128) * TICKS)
.eut(1 * tVoltageMultiplier)
- .addTo(sAlloySmelterRecipes);
+ .addTo(alloySmelterRecipes);
}
}
case "Bronze" -> {
@@ -570,7 +575,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_ModHandler.getIC2Item("casingbronze", tAmount * 2))
.duration((tAmount * 32) * TICKS)
.eut(3 * tVoltageMultiplier)
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (tAmount * 2 <= 64) {
GT_Values.RA.stdBuilder()
@@ -578,7 +583,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_ModHandler.getIC2Item("casingbronze", tAmount * 3))
.duration((tAmount * 128) * TICKS)
.eut(1 * tVoltageMultiplier)
- .addTo(sAlloySmelterRecipes);
+ .addTo(alloySmelterRecipes);
}
}
case "Gold" -> {
@@ -588,7 +593,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_ModHandler.getIC2Item("casinggold", tAmount * 2))
.duration((tAmount * 32) * TICKS)
.eut(3 * tVoltageMultiplier)
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
if (tAmount * 2 <= 64) {
GT_Values.RA.stdBuilder()
@@ -596,7 +601,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(GT_ModHandler.getIC2Item("casinggold", tAmount * 3))
.duration((tAmount * 128) * TICKS)
.eut(1 * tVoltageMultiplier)
- .addTo(sAlloySmelterRecipes);
+ .addTo(alloySmelterRecipes);
}
}
case "Polytetrafluoroethylene" -> {
@@ -605,7 +610,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi
.itemOutputs(ItemList.Cell_Empty.get(tAmount * 4))
.duration((tAmount * 128) * TICKS)
.eut(TierEU.RECIPE_LV)
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingSlab.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingSlab.java
index 72a5ccc960..35947755d3 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingSlab.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingSlab.java
@@ -1,7 +1,7 @@
package gregtech.loaders.oreprocessing;
import static gregtech.api.enums.Mods.Railcraft;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sChemicalBathRecipes;
+import static gregtech.api.recipe.RecipeMaps.chemicalBathRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import net.minecraft.item.ItemStack;
@@ -29,7 +29,7 @@ public class ProcessingSlab implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(Materials.Creosote.getFluid(300L))
.duration(10 * SECONDS)
.eut(4)
- .addTo(sChemicalBathRecipes);
+ .addTo(chemicalBathRecipes);
}
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingStick.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingStick.java
index 55a785b9fd..e5aac7bfe7 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingStick.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingStick.java
@@ -1,9 +1,9 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sBenderRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sCutterRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sHammerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sLatheRecipes;
+import static gregtech.api.recipe.RecipeMaps.benderRecipes;
+import static gregtech.api.recipe.RecipeMaps.cutterRecipes;
+import static gregtech.api.recipe.RecipeMaps.hammerRecipes;
+import static gregtech.api.recipe.RecipeMaps.latheRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
import static gregtech.api.util.GT_Utility.calculateRecipeEU;
@@ -49,7 +49,7 @@ public class ProcessingStick implements gregtech.api.interfaces.IOreRecipeRegist
GT_OreDictUnificator.get(OrePrefixes.dustSmall, aMaterial.mMacerateInto, 2L))
.duration(((int) Math.max(aMaterial.getMass() * 5L, 1L)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 16))
- .addTo(sLatheRecipes);
+ .addTo(latheRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.bolt, aMaterial, 1L) != null) {
@@ -68,7 +68,7 @@ public class ProcessingStick implements gregtech.api.interfaces.IOreRecipeRegist
/ 320))))
.duration(2 * ((int) Math.max(aMaterial.getMass() * 2L, 1L)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 4))
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -84,7 +84,7 @@ public class ProcessingStick implements gregtech.api.interfaces.IOreRecipeRegist
/ 426))))
.duration(2 * ((int) Math.max(aMaterial.getMass() * 2L, 1L)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 4))
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -99,7 +99,7 @@ public class ProcessingStick implements gregtech.api.interfaces.IOreRecipeRegist
/ 1280))))
.duration(((int) Math.max(aMaterial.getMass() * 2L, 1L)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 4))
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
}
if ((aMaterial.mUnificatable) && (aMaterial.mMaterialInto == aMaterial)) {
@@ -124,7 +124,7 @@ public class ProcessingStick implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.springSmall, aMaterial, 2L))
.duration(5 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 8))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
}
@@ -134,7 +134,7 @@ public class ProcessingStick implements gregtech.api.interfaces.IOreRecipeRegist
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.stickLong, aMaterial, 1L))
.duration(Math.max(aMaterial.getMass(), 1L))
.eut(calculateRecipeEU(aMaterial, 16))
- .addTo(sHammerRecipes);
+ .addTo(hammerRecipes);
}
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingStickLong.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingStickLong.java
index c318e12ad0..1f00300264 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingStickLong.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingStickLong.java
@@ -1,7 +1,7 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sBenderRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sCutterRecipes;
+import static gregtech.api.recipe.RecipeMaps.benderRecipes;
+import static gregtech.api.recipe.RecipeMaps.cutterRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
import static gregtech.api.util.GT_Utility.calculateRecipeEU;
@@ -49,7 +49,7 @@ public class ProcessingStickLong implements gregtech.api.interfaces.IOreRecipeRe
/ 320))))
.duration(2 * ((int) Math.max(aMaterial.getMass(), 1L)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 4))
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -64,7 +64,7 @@ public class ProcessingStickLong implements gregtech.api.interfaces.IOreRecipeRe
/ 426))))
.duration(2 * ((int) Math.max(aMaterial.getMass(), 1L)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 4))
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -79,7 +79,7 @@ public class ProcessingStickLong implements gregtech.api.interfaces.IOreRecipeRe
/ 1280))))
.duration(((int) Math.max(aMaterial.getMass(), 1L)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 4))
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
}
if (aMaterial.mUnificatable && (aMaterial.mMaterialInto == aMaterial)) {
@@ -104,7 +104,7 @@ public class ProcessingStickLong implements gregtech.api.interfaces.IOreRecipeRe
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.spring, aMaterial, 1L))
.duration(10 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 16))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingStone.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingStone.java
index c423e91308..199feeb08e 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingStone.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingStone.java
@@ -1,9 +1,9 @@
package gregtech.loaders.oreprocessing;
import static gregtech.api.enums.Mods.Railcraft;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sAssemblerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sCutterRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sMaceratorRecipes;
+import static gregtech.api.recipe.RecipeMaps.assemblerRecipes;
+import static gregtech.api.recipe.RecipeMaps.cutterRecipes;
+import static gregtech.api.recipe.RecipeMaps.maceratorRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import net.minecraft.block.Block;
@@ -39,7 +39,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.fluidInputs(Materials.Redstone.getMolten(144L))
.duration(5 * SECONDS)
.eut(48)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
break;
case "Sand":
GT_Values.RA.stdBuilder()
@@ -47,7 +47,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.itemOutputs(new ItemStack(Blocks.sand, 1, 0))
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
break;
case "Endstone":
GT_Values.RA.stdBuilder()
@@ -58,7 +58,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.outputChances(10000, 500)
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
break;
case "Netherrack":
GT_Values.RA.stdBuilder()
@@ -69,7 +69,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.outputChances(10000, 500)
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
break;
case "NetherBrick":
GT_Values.RA.stdBuilder()
@@ -77,7 +77,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.itemOutputs(new ItemStack(Blocks.nether_brick_fence, 1))
.duration(5 * SECONDS)
.eut(4)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
break;
case "Obsidian":
if (aBlock != Blocks.air) aBlock.setResistance(20.0F);
@@ -87,7 +87,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.itemOutputs(ItemList.IC2_Compressed_Coal_Chunk.get(1L))
.duration(20 * SECONDS)
.eut(4)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -97,7 +97,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.outputChances(10000, 1000)
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
break;
case "Concrete":
GT_Values.RA.stdBuilder()
@@ -106,7 +106,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.fluidInputs(Materials.Water.getFluid(Math.max(4, Math.min(1000, 200 * 30 / 320))))
.duration(10 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -114,7 +114,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.fluidInputs(GT_ModHandler.getDistilledWater(Math.max(3, Math.min(750, 200 * 30 / 426))))
.duration(10 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -122,14 +122,14 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.fluidInputs(Materials.Lubricant.getFluid(Math.max(1, Math.min(250, 100 * 30 / 1280))))
.duration(5 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.dust, aMaterial, 1L))
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
break;
case "Rhyolite":
GT_Values.RA.stdBuilder()
@@ -140,7 +140,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.outputChances(10000, 2000)
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
break;
case "Komatiite":
GT_Values.RA.stdBuilder()
@@ -151,7 +151,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.outputChances(10000, 500)
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
break;
case "Dacite":
case "Andesite":
@@ -163,7 +163,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.outputChances(10000, 2000)
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
break;
case "Gabbro":
GT_Values.RA.stdBuilder()
@@ -174,7 +174,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.outputChances(10000, 2000)
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
break;
case "Eclogite":
GT_Values.RA.stdBuilder()
@@ -185,7 +185,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.outputChances(10000, 1000)
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
break;
case "Soapstone":
GT_Values.RA.stdBuilder()
@@ -196,7 +196,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.outputChances(10000, 1000)
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
break;
case "Greenschist":
case "Blueschist":
@@ -208,7 +208,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.outputChances(10000, 1000)
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
break;
case "Gneiss":
case "Migmatite":
@@ -220,7 +220,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.outputChances(10000, 5000)
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
break;
case "Redrock":
case "Marble":
@@ -230,7 +230,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.fluidInputs(Materials.Water.getFluid(Math.max(4, Math.min(1000, 400 * 30 / 320))))
.duration(20 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -238,7 +238,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.fluidInputs(GT_ModHandler.getDistilledWater(Math.max(3, Math.min(750, 400 * 30 / 426))))
.duration(20 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -246,7 +246,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.fluidInputs(Materials.Lubricant.getFluid(Math.max(1, Math.min(250, 200 * 30 / 1280))))
.duration(10 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
case "Basalt":
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack), GT_Utility.getIntegratedCircuit(3))
@@ -254,7 +254,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.fluidInputs(Materials.Water.getFluid(Math.max(4, Math.min(1000, 400 * 30 / 320))))
.duration(20 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack), GT_Utility.getIntegratedCircuit(3))
@@ -262,7 +262,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.fluidInputs(GT_ModHandler.getDistilledWater(Math.max(3, Math.min(750, 400 * 30 / 426))))
.duration(20 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack), GT_Utility.getIntegratedCircuit(3))
@@ -270,7 +270,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.fluidInputs(Materials.Lubricant.getFluid(Math.max(1, Math.min(250, 200 * 30 / 1280))))
.duration(10 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
case "Quartzite":
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -280,7 +280,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.outputChances(10000, 1000)
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
break;
case "Flint":
GT_Values.RA.stdBuilder()
@@ -291,7 +291,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.outputChances(10000, 5000)
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
break;
case "GraniteBlack":
GT_Values.RA.stdBuilder()
@@ -300,7 +300,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.fluidInputs(Materials.Water.getFluid(Math.max(4, Math.min(1000, 400 * 30 / 320))))
.duration(20 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -308,7 +308,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.fluidInputs(GT_ModHandler.getDistilledWater(Math.max(3, Math.min(750, 400 * 30 / 426))))
.duration(20 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -316,7 +316,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.fluidInputs(Materials.Lubricant.getFluid(Math.max(1, Math.min(250, 200 * 30 / 1280))))
.duration(10 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -326,7 +326,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.outputChances(10000, 100)
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
break;
case "GraniteRed":
GT_Values.RA.stdBuilder()
@@ -335,7 +335,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.fluidInputs(Materials.Water.getFluid(Math.max(4, Math.min(1000, 400 * 30 / 320))))
.duration(20 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -343,7 +343,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.fluidInputs(GT_ModHandler.getDistilledWater(Math.max(3, Math.min(750, 400 * 30 / 426))))
.duration(20 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -351,7 +351,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.fluidInputs(Materials.Lubricant.getFluid(Math.max(1, Math.min(250, 200 * 30 / 1280))))
.duration(10 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sCutterRecipes);
+ .addTo(cutterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, aStack))
@@ -361,7 +361,7 @@ public class ProcessingStone implements IOreRecipeRegistrator {
.outputChances(10000, 100)
.duration(20 * SECONDS)
.eut(2)
- .addTo(sMaceratorRecipes);
+ .addTo(maceratorRecipes);
}
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingStoneCobble.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingStoneCobble.java
index 7e6dcb9863..fb9431e8e4 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingStoneCobble.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingStoneCobble.java
@@ -1,6 +1,6 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sAssemblerRecipes;
+import static gregtech.api.recipe.RecipeMaps.assemblerRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import net.minecraft.init.Blocks;
@@ -25,6 +25,6 @@ public class ProcessingStoneCobble implements gregtech.api.interfaces.IOreRecipe
.itemOutputs(new ItemStack(Blocks.furnace, 1))
.duration(20 * SECONDS)
.eut(4)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingToolHead.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingToolHead.java
index 72b409bb86..4b610fea8e 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingToolHead.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingToolHead.java
@@ -1,9 +1,9 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sAssemblerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sExtruderRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sFluidSolidficationRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sPressRecipes;
+import static gregtech.api.recipe.RecipeMaps.assemblerRecipes;
+import static gregtech.api.recipe.RecipeMaps.extruderRecipes;
+import static gregtech.api.recipe.RecipeMaps.fluidSolidifierRecipes;
+import static gregtech.api.recipe.RecipeMaps.formingPressRecipes;
import static gregtech.api.util.GT_RecipeBuilder.MINUTES;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
@@ -67,7 +67,7 @@ public class ProcessingToolHead implements gregtech.api.interfaces.IOreRecipeReg
.fluidInputs(aMaterial.getMolten(36L))
.duration(16 * TICKS)
.eut(8)
- .addTo(sFluidSolidficationRecipes);
+ .addTo(fluidSolidifierRecipes);
}
if (aSpecialRecipeReq2) {
GT_ModHandler.addCraftingRecipe(
@@ -101,7 +101,7 @@ public class ProcessingToolHead implements gregtech.api.interfaces.IOreRecipeReg
null))
.duration(10 * SECONDS)
.eut(TierEU.RECIPE_MV)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
if (aSpecialRecipeReq1) GT_ModHandler.addCraftingRecipe(
GT_OreDictUnificator.get(OrePrefixes.toolHeadAxe, aMaterial, 1L),
@@ -532,7 +532,7 @@ public class ProcessingToolHead implements gregtech.api.interfaces.IOreRecipeReg
.fluidInputs(aMaterial.getMolten(144 * 4))
.duration(5 * SECONDS)
.eut(calculateRecipeEU(aMaterial, (int) TierEU.RECIPE_MV))
- .addTo(sFluidSolidficationRecipes);
+ .addTo(fluidSolidifierRecipes);
}
if (GT_OreDictUnificator.get(OrePrefixes.ingot, aMaterial, 1L) != null) {
GT_Values.RA.stdBuilder()
@@ -542,7 +542,7 @@ public class ProcessingToolHead implements gregtech.api.interfaces.IOreRecipeReg
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.toolHeadDrill, aMaterial, 1L))
.duration(5 * SECONDS)
.eut(calculateRecipeEU(aMaterial, (int) TierEU.RECIPE_MV))
- .addTo(sExtruderRecipes);
+ .addTo(extruderRecipes);
}
}
}
@@ -588,7 +588,7 @@ public class ProcessingToolHead implements gregtech.api.interfaces.IOreRecipeReg
null))
.duration(10 * SECONDS)
.eut(calculateRecipeEU(aMaterial, (int) TierEU.RECIPE_MV))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
}
case toolHeadHoe -> {
@@ -617,7 +617,7 @@ public class ProcessingToolHead implements gregtech.api.interfaces.IOreRecipeReg
null))
.duration(10 * SECONDS)
.eut(calculateRecipeEU(aMaterial, (int) TierEU.RECIPE_MV))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
if (aSpecialRecipeReq1) GT_ModHandler.addCraftingRecipe(
GT_OreDictUnificator.get(OrePrefixes.toolHeadHoe, aMaterial, 1L),
@@ -667,7 +667,7 @@ public class ProcessingToolHead implements gregtech.api.interfaces.IOreRecipeReg
null))
.duration(10 * SECONDS)
.eut(calculateRecipeEU(aMaterial, (int) TierEU.RECIPE_MV))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
}
case toolHeadPlow -> {
@@ -707,7 +707,7 @@ public class ProcessingToolHead implements gregtech.api.interfaces.IOreRecipeReg
null))
.duration(10 * SECONDS)
.eut(calculateRecipeEU(aMaterial, (int) TierEU.RECIPE_MV))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
}
case toolHeadSaw -> {
@@ -748,7 +748,7 @@ public class ProcessingToolHead implements gregtech.api.interfaces.IOreRecipeReg
null))
.duration(10 * SECONDS)
.eut(calculateRecipeEU(aMaterial, (int) TierEU.RECIPE_MV))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
}
case toolHeadSense -> {
@@ -789,7 +789,7 @@ public class ProcessingToolHead implements gregtech.api.interfaces.IOreRecipeReg
null))
.duration(10 * SECONDS)
.eut(calculateRecipeEU(aMaterial, (int) TierEU.RECIPE_MV))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
}
case toolHeadShovel -> {
@@ -816,7 +816,7 @@ public class ProcessingToolHead implements gregtech.api.interfaces.IOreRecipeReg
null))
.duration(10 * SECONDS)
.eut(calculateRecipeEU(aMaterial, (int) TierEU.RECIPE_MV))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
if (aSpecialRecipeReq1) GT_ModHandler.addCraftingRecipe(
GT_OreDictUnificator.get(OrePrefixes.toolHeadShovel, aMaterial, 1L),
@@ -866,7 +866,7 @@ public class ProcessingToolHead implements gregtech.api.interfaces.IOreRecipeReg
null))
.duration(10 * SECONDS)
.eut(calculateRecipeEU(aMaterial, (int) TierEU.RECIPE_MV))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
}
case toolHeadUniversalSpade -> {
@@ -892,7 +892,7 @@ public class ProcessingToolHead implements gregtech.api.interfaces.IOreRecipeReg
null))
.duration(10 * SECONDS)
.eut(calculateRecipeEU(aMaterial, (int) TierEU.RECIPE_MV))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
if (aSpecialRecipeReq2) GT_ModHandler.addCraftingRecipe(
GT_OreDictUnificator.get(OrePrefixes.toolHeadUniversalSpade, aMaterial, 1L),
@@ -1163,7 +1163,7 @@ public class ProcessingToolHead implements gregtech.api.interfaces.IOreRecipeReg
null))
.duration(10 * SECONDS)
.eut(calculateRecipeEU(aMaterial, (int) TierEU.RECIPE_MV))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
if ((aMaterial != Materials.Stone) && (aMaterial != Materials.Flint)) {
GT_ModHandler.addShapelessCraftingRecipe(
@@ -1217,7 +1217,7 @@ public class ProcessingToolHead implements gregtech.api.interfaces.IOreRecipeReg
.itemOutputs(GT_MetaGenerated_Tool_01.INSTANCE.getToolWithStats(170, 1, aMaterial, aMaterial, null))
.duration(8 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 100))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
GT_OreDictUnificator.get(OrePrefixes.turbineBlade, aMaterial, 8L),
@@ -1225,7 +1225,7 @@ public class ProcessingToolHead implements gregtech.api.interfaces.IOreRecipeReg
.itemOutputs(GT_MetaGenerated_Tool_01.INSTANCE.getToolWithStats(172, 1, aMaterial, aMaterial, null))
.duration(16 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 400))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
GT_OreDictUnificator.get(OrePrefixes.turbineBlade, aMaterial, 12L),
@@ -1233,7 +1233,7 @@ public class ProcessingToolHead implements gregtech.api.interfaces.IOreRecipeReg
.itemOutputs(GT_MetaGenerated_Tool_01.INSTANCE.getToolWithStats(174, 1, aMaterial, aMaterial, null))
.duration(32 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 1600))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
GT_OreDictUnificator.get(OrePrefixes.turbineBlade, aMaterial, 16L),
@@ -1241,7 +1241,7 @@ public class ProcessingToolHead implements gregtech.api.interfaces.IOreRecipeReg
.itemOutputs(GT_MetaGenerated_Tool_01.INSTANCE.getToolWithStats(176, 1, aMaterial, aMaterial, null))
.duration(1 * MINUTES + 4 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 6400))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
if (aSpecialRecipeReq2) {
if (aMaterial.getProcessingMaterialTierEU() < TierEU.IV) {
GT_ModHandler.addCraftingRecipe(
@@ -1263,7 +1263,7 @@ public class ProcessingToolHead implements gregtech.api.interfaces.IOreRecipeReg
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.turbineBlade, aMaterial, 1L))
.duration(10 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 60))
- .addTo(sPressRecipes);
+ .addTo(formingPressRecipes);
}
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingTransforming.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingTransforming.java
index 6b8d758a2f..4e3febc469 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingTransforming.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingTransforming.java
@@ -1,7 +1,7 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sChemicalBathRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sPolarizerRecipes;
+import static gregtech.api.recipe.RecipeMaps.chemicalBathRecipes;
+import static gregtech.api.recipe.RecipeMaps.polarizerRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
@@ -44,7 +44,7 @@ public class ProcessingTransforming implements IOreRecipeRegistrator {
.getFluid(GT_Utility.translateMaterialToAmount(aPrefix.mMaterialAmount, 120L, true)))
.duration(5 * SECONDS)
.eut(TierEU.ULV)
- .addTo(sChemicalBathRecipes);
+ .addTo(chemicalBathRecipes);
}
}
@@ -60,7 +60,7 @@ public class ProcessingTransforming implements IOreRecipeRegistrator {
GT_Utility.translateMaterialToAmount(aPrefix.mMaterialAmount, 250L, true)))
.duration(5 * SECONDS)
.eut(TierEU.ULV)
- .addTo(sChemicalBathRecipes);
+ .addTo(chemicalBathRecipes);
}
}
@@ -72,7 +72,7 @@ public class ProcessingTransforming implements IOreRecipeRegistrator {
.itemOutputs(GT_OreDictUnificator.get(aPrefix, Materials.IronMagnetic, 1L))
.duration(((int) Math.max(16L, aPrefix.mMaterialAmount * 128L / GT_Values.M)) * TICKS)
.eut((int) TierEU.LV / 2)
- .addTo(sPolarizerRecipes);
+ .addTo(polarizerRecipes);
}
}
}
@@ -88,7 +88,7 @@ public class ProcessingTransforming implements IOreRecipeRegistrator {
GT_Utility.translateMaterialToAmount(aPrefix.mMaterialAmount, 225L, true)))
.duration(5 * SECONDS)
.eut(TierEU.ULV)
- .addTo(sChemicalBathRecipes);
+ .addTo(chemicalBathRecipes);
}
}
@@ -100,7 +100,7 @@ public class ProcessingTransforming implements IOreRecipeRegistrator {
.itemOutputs(GT_OreDictUnificator.get(aPrefix, Materials.IronMagnetic, 1L))
.duration(((int) Math.max(16L, aPrefix.mMaterialAmount * 128L / GT_Values.M)) * TICKS)
.eut((int) TierEU.LV / 2)
- .addTo(sPolarizerRecipes);
+ .addTo(polarizerRecipes);
}
}
}
@@ -116,7 +116,7 @@ public class ProcessingTransforming implements IOreRecipeRegistrator {
GT_Utility.translateMaterialToAmount(aPrefix.mMaterialAmount, 200L, true)))
.duration(5 * SECONDS)
.eut(TierEU.ULV)
- .addTo(sChemicalBathRecipes);
+ .addTo(chemicalBathRecipes);
}
}
@@ -128,7 +128,7 @@ public class ProcessingTransforming implements IOreRecipeRegistrator {
.itemOutputs(GT_OreDictUnificator.get(aPrefix, Materials.SteelMagnetic, 1L))
.duration(((int) Math.max(16L, aPrefix.mMaterialAmount * 128L / GT_Values.M)) * TICKS)
.eut((int) TierEU.LV / 2)
- .addTo(sPolarizerRecipes);
+ .addTo(polarizerRecipes);
}
}
}
@@ -141,7 +141,7 @@ public class ProcessingTransforming implements IOreRecipeRegistrator {
.itemOutputs(GT_OreDictUnificator.get(aPrefix, Materials.NeodymiumMagnetic, 1L))
.duration(((int) Math.max(16L, aPrefix.mMaterialAmount * 128L / GT_Values.M)) * TICKS)
.eut((int) TierEU.HV / 2)
- .addTo(sPolarizerRecipes);
+ .addTo(polarizerRecipes);
}
}
case "Samarium" ->
@@ -153,7 +153,7 @@ public class ProcessingTransforming implements IOreRecipeRegistrator {
.itemOutputs(GT_OreDictUnificator.get(aPrefix, Materials.SamariumMagnetic, 1L))
.duration(((int) Math.max(16L, aPrefix.mMaterialAmount * 128L / GT_Values.M)) * TICKS)
.eut((int) TierEU.IV / 2)
- .addTo(sPolarizerRecipes);
+ .addTo(polarizerRecipes);
}
}
@@ -166,7 +166,7 @@ public class ProcessingTransforming implements IOreRecipeRegistrator {
.itemOutputs(GT_OreDictUnificator.get(aPrefix, Materials.TengamAttuned, 1L))
.duration(((int) Math.max(16L, aPrefix.mMaterialAmount * 128L / GT_Values.M)) * TICKS)
.eut((int) TierEU.RECIPE_UHV)
- .addTo(sPolarizerRecipes);
+ .addTo(polarizerRecipes);
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingWax.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingWax.java
index 127f7465b9..7635546d23 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingWax.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingWax.java
@@ -25,8 +25,6 @@ public class ProcessingWax implements gregtech.api.interfaces.IOreRecipeRegistra
.itemInputs(GT_Utility.copyAmount(1, aStack))
.metadata(FUEL_VALUE, 6)
.metadata(FUEL_TYPE, 5)
- .duration(0)
- .eut(0)
.addTo(GT_RecipeConstants.Fuel);
}
}
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingWire.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingWire.java
index 95071a3322..1f5bd5f1c2 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingWire.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingWire.java
@@ -1,11 +1,11 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sAlloySmelterRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sAssemblerRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sBenderRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sBoxinatorRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sUnboxinatorRecipes;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sWiremillRecipes;
+import static gregtech.api.recipe.RecipeMaps.alloySmelterRecipes;
+import static gregtech.api.recipe.RecipeMaps.assemblerRecipes;
+import static gregtech.api.recipe.RecipeMaps.benderRecipes;
+import static gregtech.api.recipe.RecipeMaps.packagerRecipes;
+import static gregtech.api.recipe.RecipeMaps.unpackagerRecipes;
+import static gregtech.api.recipe.RecipeMaps.wiremillRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
import static gregtech.api.util.GT_Utility.calculateRecipeEU;
@@ -70,7 +70,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.springSmall, aMaterial, 2L))
.duration(5 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 8))
- .addTo(sBenderRecipes);
+ .addTo(benderRecipes);
}
}
@@ -82,7 +82,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.wireFine, aMaterial, 4L))
.duration(10 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 8))
- .addTo(sWiremillRecipes);
+ .addTo(wiremillRecipes);
}
}
}
@@ -105,31 +105,31 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.wireGt02, aMaterial, 1L))
.duration(7 * SECONDS + 10 * TICKS)
.eut(calculateRecipeEU(aMaterial, 8))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(4, aStack), GT_Utility.getIntegratedCircuit(4))
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.wireGt04, aMaterial, 1L))
.duration(10 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 8))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(8, aStack), GT_Utility.getIntegratedCircuit(8))
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.wireGt08, aMaterial, 1L))
.duration(15 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 8))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(12, aStack), GT_Utility.getIntegratedCircuit(12))
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.wireGt12, aMaterial, 1L))
.duration(20 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 8))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(16, aStack), GT_Utility.getIntegratedCircuit(16))
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.wireGt16, aMaterial, 1L))
.duration(25 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 8))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
}
case wireGt02 -> {
@@ -256,7 +256,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(GT_OreDictUnificator.get(correspondingCable, aMaterial, 1L))
.duration(5 * SECONDS)
.eut(8)
- .addTo(sBoxinatorRecipes);
+ .addTo(packagerRecipes);
}
// alloy smelter recipes
{
@@ -267,7 +267,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.cableGt01, aMaterial, 1L))
.duration(5 * SECONDS)
.eut(8)
- .addTo(sAlloySmelterRecipes);
+ .addTo(alloySmelterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
GT_OreDictUnificator.get(OrePrefixes.ingot, Materials.Rubber, 2L),
@@ -275,7 +275,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.cableGt02, aMaterial, 1L))
.duration(10 * SECONDS)
.eut(16)
- .addTo(sAlloySmelterRecipes);
+ .addTo(alloySmelterRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
GT_OreDictUnificator.get(OrePrefixes.ingot, Materials.Rubber, 4L),
@@ -283,7 +283,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.cableGt04, aMaterial, 1L))
.duration(15 * SECONDS)
.eut(TierEU.RECIPE_LV)
- .addTo(sAlloySmelterRecipes);
+ .addTo(alloySmelterRecipes);
}
// Assembler recipes
{
@@ -294,7 +294,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(Materials.Rubber.getMolten(144L * costMultiplier))
.duration(5 * SECONDS)
.eut(8)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(aStack, GT_Utility.getIntegratedCircuit(24))
@@ -302,7 +302,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(Materials.StyreneButadieneRubber.getMolten(108L * costMultiplier))
.duration(5 * SECONDS)
.eut(8)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(aStack, GT_Utility.getIntegratedCircuit(24))
@@ -310,7 +310,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(Materials.Silicone.getMolten(72L * costMultiplier))
.duration(5 * SECONDS)
.eut(8)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
for (Materials dielectric : dielectrics) {
for (Materials syntheticRubber : syntheticRubbers) {
@@ -321,7 +321,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(syntheticRubber.getMolten(costMultiplier * 144L))
.duration(20 * SECONDS)
.eut(8)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(aStack, dielectric.getDustSmall(costMultiplier))
@@ -329,7 +329,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(syntheticRubber.getMolten(costMultiplier * 36L))
.duration(5 * SECONDS)
.eut(8)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
}
}
@@ -347,7 +347,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(Materials.Rubber.getMolten(144 * costMultiplier))
.duration(5 * SECONDS)
.eut(8)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(aStack, GT_Utility.getIntegratedCircuit(24))
@@ -355,7 +355,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(Materials.StyreneButadieneRubber.getMolten(108 * costMultiplier))
.duration(5 * SECONDS)
.eut(8)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(aStack, GT_Utility.getIntegratedCircuit(24))
@@ -363,7 +363,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(Materials.Silicone.getMolten(72 * costMultiplier))
.duration(5 * SECONDS)
.eut(8)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
for (Materials dielectric : dielectrics) {
for (Materials syntheticRubber : syntheticRubbers) {
@@ -374,7 +374,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(syntheticRubber.getMolten(costMultiplier * 144L))
.duration(20 * SECONDS)
.eut(8)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(aStack, dielectric.getDustSmall(costMultiplier))
@@ -382,7 +382,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(syntheticRubber.getMolten(costMultiplier * 36L))
.duration(5 * SECONDS)
.eut(8)
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
}
}
@@ -402,7 +402,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(Materials.Silicone.getMolten(costMultiplier * 72))
.duration(5 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 8))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
@@ -413,7 +413,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(Materials.Silicone.getMolten(costMultiplier * 72))
.duration(5 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 8))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
for (Materials dielectric : dielectrics) {
for (Materials syntheticRubber : syntheticRubbers) {
@@ -427,7 +427,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(syntheticRubber.getMolten(costMultiplier * 144L))
.duration(20 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 8))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
GT_Utility.copyAmount(4, aStack),
@@ -438,7 +438,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(syntheticRubber.getMolten(costMultiplier * 144L))
.duration(20 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 8))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
aStack,
@@ -448,7 +448,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(syntheticRubber.getMolten(costMultiplier * 36L))
.duration(5 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 8))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
aStack,
@@ -459,7 +459,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.fluidInputs(syntheticRubber.getMolten(costMultiplier * 36L))
.duration(5 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 8))
- .addTo(sAssemblerRecipes);
+ .addTo(assemblerRecipes);
}
}
}
@@ -471,7 +471,7 @@ public class ProcessingWire implements gregtech.api.interfaces.IOreRecipeRegistr
.itemOutputs(GT_Utility.copyAmount(1, aStack))
.duration(5 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 8))
- .addTo(sUnboxinatorRecipes);
+ .addTo(unpackagerRecipes);
}
if (GT_OreDictUnificator.get(correspondingCable, aMaterial, 1L) != null) {