diff options
author | Daniel Mendes <70096037+Steelux8@users.noreply.github.com> | 2023-07-31 00:02:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-31 01:02:55 +0200 |
commit | 20b485713d72415530be0a7c70faab84e15e7297 (patch) | |
tree | cb979d18590c7d4a1adf3b83085e0b3a90f35fb8 /src/main/java/gtPlusPlus/core/recipe | |
parent | cc4040b0753af8984f09701e3b5af208c30bea7b (diff) | |
download | GT5-Unofficial-20b485713d72415530be0a7c70faab84e15e7297.tar.gz GT5-Unofficial-20b485713d72415530be0a7c70faab84e15e7297.tar.bz2 GT5-Unofficial-20b485713d72415530be0a7c70faab84e15e7297.zip |
Particle Acceleration in the QFT (#695)
* Define 2 new catalysts for new QFT recipes
* Images and EN lang entries for the catalysts
* Add 2 new QFT recipes and 2 for the new catalysts
* Buff rare particle generation in cyclotron
* Fix incorrect chances in waterline skips
* Spotless apply
* Change necessary plasmas
- Changed the ions in the 2nd catalyst recipe to Hydrogen and Helium, both obtainable;
- Changed Beryllium to Americium Plasma in the Cyclotron recipe.
* Fix beryllium plasma usage in QFT recipe
Diffstat (limited to 'src/main/java/gtPlusPlus/core/recipe')
-rw-r--r-- | src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index 6b5bce553d..39c61d5b90 100644 --- a/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -1698,26 +1698,41 @@ public class RECIPES_GREGTECH { // Mixed Smash 1 CORE.RA.addCyclotronRecipe( CI.getNumberedCircuit(12), - FluidUtils.getFluidStack("plasma.beryllium", 2500), + Materials.Americium.getPlasma(2500), new ItemStack[] { Particle.getBaseParticle(Particle.GRAVITON), Particle.getBaseParticle(Particle.ETA_MESON), Particle.getBaseParticle(Particle.PION), Particle.getBaseParticle(Particle.PROTON), Particle.getBaseParticle(Particle.NEUTRON), Particle.getBaseParticle(Particle.LAMBDA), Particle.getBaseParticle(Particle.OMEGA), Particle.getBaseParticle(Particle.HIGGS_BOSON), }, null, - new int[] { 10, 20, 20, 10, 10, 5, 5, 2 }, - 17 * 247 * 32, + new int[] { 50, 50, 50, 40, 30, 20, 20, 10 }, + 1000 * 20, + (int) MaterialUtils.getVoltageForTier(8), + 750 * 20); + + // Mixed Smash 1 + CORE.RA.addCyclotronRecipe( + CI.getNumberedCircuit(12), + new FluidStack(ELEMENT.STANDALONE.CELESTIAL_TUNGSTEN.getPlasma(), 2500), + new ItemStack[] { Particle.getBaseParticle(Particle.GRAVITON), + Particle.getBaseParticle(Particle.ETA_MESON), Particle.getBaseParticle(Particle.PION), + Particle.getBaseParticle(Particle.PROTON), Particle.getBaseParticle(Particle.NEUTRON), + Particle.getBaseParticle(Particle.LAMBDA), Particle.getBaseParticle(Particle.OMEGA), + Particle.getBaseParticle(Particle.HIGGS_BOSON), }, + null, + new int[] { 5000, 200, 200, 100, 80, 60, 40, 30 }, + 100 * 20, (int) MaterialUtils.getVoltageForTier(8), 750 * 20); // Graviton Smash CORE.RA.addCyclotronRecipe( CI.getNumberedCircuit(15), - FluidUtils.getFluidStack("plasma.hydrogen", 50), + FluidUtils.getFluidStack("plasma.hydrogen", 100), new ItemStack[] { Particle.getBaseParticle(Particle.GRAVITON), Particle.getBaseParticle(Particle.UNKNOWN) }, null, - new int[] { 15, 100 }, + new int[] { 1000, 100 }, 20 * (90), (int) MaterialUtils.getVoltageForTier(6), 1000 * 20); |