aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/items/ItemComb.java
diff options
context:
space:
mode:
authorRunakai1 <48415331+Runakai1@users.noreply.github.com>2022-12-12 19:58:14 +0100
committerGitHub <noreply@github.com>2022-12-12 19:58:14 +0100
commitec0867101a4acb3b204a8e86b960009bd0cb0749 (patch)
tree5a60af9c12d12013e8680a2c3877806276b70365 /src/main/java/gregtech/common/items/ItemComb.java
parent773d54a47c332e0ce81e6edbb36c12854d47614e (diff)
downloadGT5-Unofficial-ec0867101a4acb3b204a8e86b960009bd0cb0749.tar.gz
GT5-Unofficial-ec0867101a4acb3b204a8e86b960009bd0cb0749.tar.bz2
GT5-Unofficial-ec0867101a4acb3b204a8e86b960009bd0cb0749.zip
Add Kevlar Bee and remove autoclave recipes (#1540)
* Kevlar, Autoclave and Fixes Removed Autoclave recipes since it needs to be reworked. Useless recipes right now. Added kevlar bee to be used in Quantum Forcer Fixed Lithium bee * fixed some stuff * spotless * spotlessApply (#1541) Co-authored-by: Runakai1 <48415331+Runakai1@users.noreply.github.com> Co-authored-by: GitHub GTNH Actions <> * remove commented out code * missed one Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: BlueWeabo <76872108+BlueWeabo@users.noreply.github.com>
Diffstat (limited to 'src/main/java/gregtech/common/items/ItemComb.java')
-rw-r--r--src/main/java/gregtech/common/items/ItemComb.java53
1 files changed, 0 insertions, 53 deletions
diff --git a/src/main/java/gregtech/common/items/ItemComb.java b/src/main/java/gregtech/common/items/ItemComb.java
index d7dc1beebe..d7af661e02 100644
--- a/src/main/java/gregtech/common/items/ItemComb.java
+++ b/src/main/java/gregtech/common/items/ItemComb.java
@@ -189,7 +189,6 @@ public class ItemComb extends Item {
NI,
30 * 100);
}
-
// ic2
addCentrifugeToItemStack(
CombType.COOLANT,
@@ -235,7 +234,6 @@ public class ItemComb extends Item {
new ItemStack[] {ItemList.FR_RefractoryWax.get(1), Materials.Blizz.getDust(1)},
new int[] {50 * 100, 100 * 100},
Voltage.MV);
-
// Alloy
addProcessGT(CombType.REDALLOY, new Materials[] {Materials.RedAlloy}, Voltage.LV);
addProcessGT(CombType.REDSTONEALLOY, new Materials[] {Materials.RedstoneAlloy}, Voltage.LV);
@@ -1035,7 +1033,6 @@ public class ItemComb extends Item {
addProcessGT(CombType.TUNGSTEN, new Materials[] {Materials.Tungsten}, Voltage.IV);
addProcessGT(CombType.PLATINUM, new Materials[] {Materials.Platinum}, Voltage.HV);
addProcessGT(CombType.MOLYBDENUM, new Materials[] {Materials.Molybdenum}, Voltage.LV);
- addAutoclaveProcess(CombType.MOLYBDENUM, Materials.Osmium, Voltage.IV, 5);
addProcessGT(CombType.IRIDIUM, new Materials[] {Materials.Iridium}, Voltage.IV);
addProcessGT(CombType.OSMIUM, new Materials[] {Materials.Osmium}, Voltage.IV);
addProcessGT(CombType.LITHIUM, new Materials[] {Materials.Lithium}, Voltage.MV);
@@ -1758,16 +1755,6 @@ public class ItemComb extends Item {
if (GT_OreDictUnificator.get(OrePrefixes.crushedPurified, aMaterial[i], 4) != NI) {
switch (comb) {
case NEUTRONIUM:
- RA.addAutoclaveRecipe(
- GT_Utility.copyAmount(9, tComb),
- GT_Utility.getIntegratedCircuit(i + 1),
- Materials.UUMatter.getFluid(
- Math.max(1, ((aMaterial[i].getMass() + volt.getUUAmplifier()) / 10))),
- GT_OreDictUnificator.get(OrePrefixes.crushedPurified, aMaterial[i], 4),
- 10000,
- (int) (aMaterial[i].getMass() * 128),
- volt.getAutoClaveEnergy(),
- volt.compareTo(Voltage.HV) > 0);
RA.addChemicalRecipe(
GT_Utility.copyAmount(4, tComb),
null,
@@ -1779,16 +1766,6 @@ public class ItemComb extends Item {
volt.getChemicalEnergy(),
volt.compareTo(Voltage.IV) > 0);
case OSMIUM:
- RA.addAutoclaveRecipe(
- GT_Utility.copyAmount(9, tComb),
- GT_Utility.getIntegratedCircuit(i + 1),
- Materials.UUMatter.getFluid(
- Math.max(1, ((aMaterial[i].getMass() + volt.getUUAmplifier()) / 10))),
- GT_OreDictUnificator.get(OrePrefixes.crushedPurified, aMaterial[i], 4),
- 10000,
- (int) (aMaterial[i].getMass() * 128),
- volt.getAutoClaveEnergy(),
- volt.compareTo(Voltage.HV) > 0);
RA.addChemicalRecipe(
GT_Utility.copyAmount(4, tComb),
null,
@@ -1800,16 +1777,6 @@ public class ItemComb extends Item {
volt.getChemicalEnergy(),
volt.compareTo(Voltage.IV) > 0);
case PLATINUM:
- RA.addAutoclaveRecipe(
- GT_Utility.copyAmount(9, tComb),
- GT_Utility.getIntegratedCircuit(i + 1),
- Materials.UUMatter.getFluid(
- Math.max(1, ((aMaterial[i].getMass() + volt.getUUAmplifier()) / 10))),
- GT_OreDictUnificator.get(OrePrefixes.crushedPurified, aMaterial[i], 4),
- 10000,
- (int) (aMaterial[i].getMass() * 128),
- volt.getAutoClaveEnergy(),
- volt.compareTo(Voltage.HV) > 0);
RA.addChemicalRecipe(
GT_Utility.copyAmount(4, tComb),
null,
@@ -1821,16 +1788,6 @@ public class ItemComb extends Item {
volt.getChemicalEnergy(),
volt.compareTo(Voltage.HV) > 0);
case IRIDIUM:
- RA.addAutoclaveRecipe(
- GT_Utility.copyAmount(9, tComb),
- GT_Utility.getIntegratedCircuit(i + 1),
- Materials.UUMatter.getFluid(
- Math.max(1, ((aMaterial[i].getMass() + volt.getUUAmplifier()) / 10))),
- GT_OreDictUnificator.get(OrePrefixes.crushedPurified, aMaterial[i], 4),
- 10000,
- (int) (aMaterial[i].getMass() * 128),
- volt.getAutoClaveEnergy(),
- volt.compareTo(Voltage.HV) > 0);
RA.addChemicalRecipe(
GT_Utility.copyAmount(4, tComb),
null,
@@ -1852,16 +1809,6 @@ public class ItemComb extends Item {
volt.getComplexTime(),
volt.getChemicalEnergy(),
volt.compareTo(Voltage.IV) > 0);
- RA.addAutoclaveRecipe(
- GT_Utility.copyAmount(9, tComb),
- GT_Utility.getIntegratedCircuit(i + 1),
- Materials.UUMatter.getFluid(
- Math.max(1, ((aMaterial[i].getMass() + volt.getUUAmplifier()) / 10))),
- GT_OreDictUnificator.get(OrePrefixes.crushedPurified, aMaterial[i], 4),
- 10000,
- (int) (aMaterial[i].getMass() * 128),
- volt.getAutoClaveEnergy(),
- volt.compareTo(Voltage.HV) > 0);
break;
}
}