From 201d883d1e4c7c74ce73ccb6349963144a53008e Mon Sep 17 00:00:00 2001 From: ScriptedPiky <41557212+ScriptedPiky@users.noreply.github.com> Date: Tue, 7 Jun 2022 02:40:26 -0700 Subject: More saner & less tedious recipes (#203) * More saner & less tedious recipes **Time in ticks** Quantum Anomaly: 1000 > 750 Hydrogen Ion Production: 15000 > 2500 Hydrogen Plasma: 1 > 100 Tier is LuV; unchanged * More time & RNG adjustments Quantum Anomaly chance: 100 (1%) > 1500 (15%) Hydrogen Ion chances: 125 (1.25%) > 500 (5%) ALL Hydrogen Ion into various particles: Buffed across the board, see commit Proton recipes: 15000 > 1500 ticks Strange Dust: 15000 ticks into 250 ticks. Seriously, why is this one so god awfully slow for a dust you need unreal amounts of * Quantum Anomaly 1% & tier 8 (UV?) & 500 ticks Still a waiting game lmao. Arguably the most boring & uneventful part. This takes 25 seconds at UV --- .../java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/main/java/gtPlusPlus') diff --git a/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index d7f30c3ee6..b55b7a3d49 100644 --- a/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -2194,8 +2194,8 @@ public class RECIPES_GREGTECH { null, new int[] {100}, 20 * (GTNH ? 300 : 60), - (int) MaterialUtils.getVoltageForTier(6), - 1000 * 20); + (int) MaterialUtils.getVoltageForTier(8), + 500 * 20); /* * Ions @@ -2263,10 +2263,10 @@ public class RECIPES_GREGTECH { Particle.getIon("Hydrogen", -3) }, null, - new int[] { 125, 125, 125, 125, 125, 125, 125, 125, 125 }, + new int[] { 500, 500, 500, 500, 500, 500, 500, 500, 500 }, 20 * 20, (int) MaterialUtils.getVoltageForTier(6), - 15000); + 2500); // Generate Hydrogen Plasma Recipe CORE.RA.addCyclotronRecipe( @@ -2284,8 +2284,8 @@ public class RECIPES_GREGTECH { Particle.getBaseParticle(Particle.UNKNOWN), CI.emptyCells(1) }, - FluidUtils.getFluidStack("plasma.hydrogen", 1), - new int[] { 250, 250, 250, 500, 500, 500, 10000 }, + FluidUtils.getFluidStack("plasma.hydrogen", 100), + new int[] { 1250, 1250, 1250, 750, 750, 750, 10000 }, 20 * 60 * 2, (int) MaterialUtils.getVoltageForTier(6), 750 * 20); @@ -2313,7 +2313,7 @@ public class RECIPES_GREGTECH { new int[] { 750, 750, 750, 750, 750, 750, 750, 750, 750 }, 20 * 20, (int) MaterialUtils.getVoltageForTier(6), - 15000); + 1500); CORE.RA.addCyclotronRecipe( new ItemStack[] { @@ -2336,7 +2336,7 @@ public class RECIPES_GREGTECH { new int[] { 375, 375, 375, 375, 375, 375, 375, 375, 375 }, 20 * 20, (int) MaterialUtils.getVoltageForTier(6), - 15000); + 1500); //Create Strange Dust @@ -2360,7 +2360,7 @@ public class RECIPES_GREGTECH { new int[] { 2500 }, 20 * 60 * 15, (int) MaterialUtils.getVoltageForTier(7), - 15000); + 250); -- cgit