diff options
author | ScriptedPiky <41557212+ScriptedPiky@users.noreply.github.com> | 2022-06-07 02:40:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-07 11:40:26 +0200 |
commit | 201d883d1e4c7c74ce73ccb6349963144a53008e (patch) | |
tree | 00b41df81f248c2484f876cd44863136fbebcd25 | |
parent | a98d5c07be5034534d3dc7322bf9e6e5549fe9d0 (diff) | |
download | GT5-Unofficial-201d883d1e4c7c74ce73ccb6349963144a53008e.tar.gz GT5-Unofficial-201d883d1e4c7c74ce73ccb6349963144a53008e.tar.bz2 GT5-Unofficial-201d883d1e4c7c74ce73ccb6349963144a53008e.zip |
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
-rw-r--r-- | src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 18 |
1 files changed, 9 insertions, 9 deletions
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); |