aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/items/ItemDrop.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gregtech/common/items/ItemDrop.java')
-rw-r--r--src/main/java/gregtech/common/items/ItemDrop.java35
1 files changed, 19 insertions, 16 deletions
diff --git a/src/main/java/gregtech/common/items/ItemDrop.java b/src/main/java/gregtech/common/items/ItemDrop.java
index 2593945417..6604b887e6 100644
--- a/src/main/java/gregtech/common/items/ItemDrop.java
+++ b/src/main/java/gregtech/common/items/ItemDrop.java
@@ -1,8 +1,11 @@
package gregtech.common.items;
-import static gregtech.api.enums.GT_Values.MOD_ID;
-import static gregtech.api.enums.ModIDs.HardcoreEnderExpansion;
-import static gregtech.api.enums.ModIDs.NewHorizonsCoreMod;
+import static gregtech.api.enums.Mods.ExtraBees;
+import static gregtech.api.enums.Mods.Forestry;
+import static gregtech.api.enums.Mods.GregTech;
+import static gregtech.api.enums.Mods.HardcoreEnderExpansion;
+import static gregtech.api.enums.Mods.MagicBees;
+import static gregtech.api.enums.Mods.NewHorizonsCoreMod;
import java.util.List;
@@ -33,7 +36,7 @@ public class ItemDrop extends Item {
this.setCreativeTab(Tabs.tabApiculture);
this.setHasSubtypes(true);
this.setUnlocalizedName("gt.drop");
- GameRegistry.registerItem(this, "gt.drop", MOD_ID);
+ GameRegistry.registerItem(this, "gt.drop", GregTech.ID);
}
public ItemStack getStackForType(DropType type) {
@@ -102,53 +105,53 @@ public class ItemDrop extends Item {
addProcessLV(
tDrop,
Materials.OilHeavy.getFluid(100L),
- GT_ModHandler.getModItem("Forestry", "propolis", 1L, 0),
+ GT_ModHandler.getModItem(Forestry.ID, "propolis", 1L, 0),
3000,
8);
RecipeManagers.squeezerManager.addRecipe(
40,
new ItemStack[] { tDrop },
Materials.OilHeavy.getFluid(100L),
- GT_ModHandler.getModItem("Forestry", "propolis", 1L, 0),
+ GT_ModHandler.getModItem(Forestry.ID, "propolis", 1L, 0),
30);
tDrop = getStackForType(DropType.COOLANT);
addProcessLV(
tDrop,
new FluidStack(FluidRegistry.getFluid("ic2coolant"), 100),
- GT_ModHandler.getModItem("MagicBees", "propolis", 1L, 0),
+ GT_ModHandler.getModItem(MagicBees.ID, "propolis", 1L, 0),
3000,
8);
RecipeManagers.squeezerManager.addRecipe(
40,
new ItemStack[] { tDrop },
new FluidStack(FluidRegistry.getFluid("ic2coolant"), 100),
- GT_ModHandler.getModItem("MagicBees", "propolis", 1L, 0),
+ GT_ModHandler.getModItem(MagicBees.ID, "propolis", 1L, 0),
30);
tDrop = getStackForType(DropType.HOT_COOLANT);
addProcessLV(
tDrop,
new FluidStack(FluidRegistry.getFluid("ic2hotcoolant"), 100),
- GT_ModHandler.getModItem("MagicBees", "propolis", 1L, 2),
+ GT_ModHandler.getModItem(MagicBees.ID, "propolis", 1L, 2),
3000,
8);
RecipeManagers.squeezerManager.addRecipe(
40,
new ItemStack[] { tDrop },
new FluidStack(FluidRegistry.getFluid("ic2hotcoolant"), 100),
- GT_ModHandler.getModItem("MagicBees", "propolis", 1L, 2),
+ GT_ModHandler.getModItem(MagicBees.ID, "propolis", 1L, 2),
30);
tDrop = getStackForType(DropType.SNOW_QUEEN);
addProcessMV(
tDrop,
Materials.FierySteel.getFluid(200L),
- GT_ModHandler.getModItem(NewHorizonsCoreMod.modID, "SnowQueenBloodDrop", 1L, 0),
+ GT_ModHandler.getModItem(NewHorizonsCoreMod.ID, "SnowQueenBloodDrop", 1L, 0),
1500,
48);
tDrop = getStackForType(DropType.LAPIS);
addProcessLV(
tDrop,
new FluidStack(FluidRegistry.getFluid("ic2coolant"), 200),
- GT_ModHandler.getModItem("MagicBees", "propolis", 1L, 3),
+ GT_ModHandler.getModItem(MagicBees.ID, "propolis", 1L, 3),
5000,
1200,
2);
@@ -156,20 +159,20 @@ public class ItemDrop extends Item {
400,
new ItemStack[] { tDrop },
new FluidStack(FluidRegistry.getFluid("ic2coolant"), 100),
- GT_ModHandler.getModItem("MagicBees", "propolis", 1L, 3),
+ GT_ModHandler.getModItem(MagicBees.ID, "propolis", 1L, 3),
30);
tDrop = getStackForType(DropType.HYDRA);
addProcessMV(
tDrop,
Materials.FierySteel.getFluid(50L),
- GT_ModHandler.getModItem("MagicBees", "propolis", 1L, 2),
+ GT_ModHandler.getModItem(MagicBees.ID, "propolis", 1L, 2),
3000,
8);
tDrop = getStackForType(DropType.OXYGEN);
addProcessLV(
tDrop,
new FluidStack(FluidRegistry.getFluid("liquidoxygen"), 100),
- GT_ModHandler.getModItem("ExtraBees", "propolis", 1L, 2),
+ GT_ModHandler.getModItem(ExtraBees.ID, "propolis", 1L, 2),
250,
1200,
8);
@@ -177,7 +180,7 @@ public class ItemDrop extends Item {
400,
new ItemStack[] { tDrop },
new FluidStack(FluidRegistry.getFluid("ic2coolant"), 100),
- GT_ModHandler.getModItem("ExtraBees", "propolis", 1L, 2),
+ GT_ModHandler.getModItem(ExtraBees.ID, "propolis", 1L, 2),
30);
tDrop = getStackForType(DropType.ENDERGOO);
if (HardcoreEnderExpansion.isModLoaded())