diff options
| author | Steelux <70096037+Steelux8@users.noreply.github.com> | 2022-09-14 20:09:18 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-14 21:09:18 +0200 |
| commit | b865d81fa79f31b2adcbff086671aedd4bb30d95 (patch) | |
| tree | 6f61f3407bd9fff75c4ec612be23bb9915723030 /src/main/java/gtPlusPlus/xmod/gregtech/loaders | |
| parent | 007609482ffdca396f21a88d1e58c0cc93120839 (diff) | |
| download | GT5-Unofficial-b865d81fa79f31b2adcbff086671aedd4bb30d95.tar.gz GT5-Unofficial-b865d81fa79f31b2adcbff086671aedd4bb30d95.tar.bz2 GT5-Unofficial-b865d81fa79f31b2adcbff086671aedd4bb30d95.zip | |
Bugfixes and Speed Increases for the LFTR Chain (#345)
* Bugfixes, Processing Speed and Gas Output Changes
- Changed a few restrictions to allow this chain to be doable in IV, as intended;
- Changed the EU/t of the 3 fuels to match the usage of 4 buffered dynamos, and reduced the burning time to keep the total energy per L the same;
- Lowered the recipe time of some recipes done in multiblocks;
- Other tooltip and bug fixes.
* Spotless apply for branch LFTR_Work for #345 (#346)
* update BS+Spotless
* Fix healing device never getting discharged (#343)
* spotlessApply
Co-authored-by: Martin Robertz <dream-master@gmx.net>
Co-authored-by: Jakub <53441451+kuba6000@users.noreply.github.com>
Co-authored-by: Steelux <70096037+Steelux8@users.noreply.github.com>
Co-authored-by: GitHub GTNH Actions <>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Martin Robertz <dream-master@gmx.net>
Co-authored-by: Jakub <53441451+kuba6000@users.noreply.github.com>
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/loaders')
| -rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_LFTR.java | 20 | ||||
| -rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_NuclearFuelProcessing.java | 10 |
2 files changed, 15 insertions, 15 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_LFTR.java b/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_LFTR.java index 0ecc965cb8..a693cfb6d9 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_LFTR.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_LFTR.java @@ -68,9 +68,9 @@ public class RecipeLoader_LFTR { FLUORIDES.URANIUM_HEXAFLUORIDE.getFluidStack(20), FLUORIDES.URANIUM_HEXAFLUORIDE.getFluidStack(10) }, - 400 * 20, // time + 100 * 20, // time 0, // cost - 8192 * 4 // fuel value + 32768 * 4 // fuel value ); // LiFBeF2ZrF4UF4 - T2 @@ -87,9 +87,9 @@ public class RecipeLoader_LFTR { FLUORIDES.URANIUM_HEXAFLUORIDE.getFluidStack(10), FLUORIDES.URANIUM_HEXAFLUORIDE.getFluidStack(5) }, - 400 * 20, // time + 100 * 20, // time 0, // cost - 8192 // fuel value + 8192 * 4 // fuel value ); // LiFBeF2ZrF4U235 - T1 @@ -113,7 +113,7 @@ public class RecipeLoader_LFTR { // Sparging NEI Recipes GasSpargingRecipeMap.addRecipe( - new FluidStack(mSpargeGases.get(0), 50), + new FluidStack(mSpargeGases.get(0), 1000), NUCLIDE.LiFBeF2UF4FP.getFluidStack(50), NUCLIDE.Sparged_LiFBeF2UF4FP.getFluidStack(50), new FluidStack[] { @@ -123,10 +123,10 @@ public class RecipeLoader_LFTR { new FluidStack(mNobleGases.get(4), 10), new FluidStack(mNobleGases.get(5), 10) }, - new int[] {1000, 1000, 1000, 1000, 1000}); + new int[] {20000, 20000, 20000, 20000, 20000}); GasSpargingRecipeMap.addRecipe( - new FluidStack(mSpargeGases.get(1), 50), + new FluidStack(mSpargeGases.get(1), 100), NUCLIDE.LiFThF4.getFluidStack(50), NUCLIDE.Sparged_LiFThF4.getFluidStack(50), new FluidStack[] { @@ -136,10 +136,10 @@ public class RecipeLoader_LFTR { new FluidStack(mFluorideGases.get(4), 5), new FluidStack(mFluorideGases.get(5), 5) }, - new int[] {500, 500, 500, 500, 500}); + new int[] {1000, 1000, 1000, 1000, 1000}); GasSpargingRecipeMap.addRecipe( - new FluidStack(mSpargeGases.get(1), 50), + new FluidStack(mSpargeGases.get(1), 100), NUCLIDE.LiFBeF2ThF4.getFluidStack(50), NUCLIDE.Sparged_LiFBeF2ThF4.getFluidStack(50), new FluidStack[] { @@ -149,6 +149,6 @@ public class RecipeLoader_LFTR { new FluidStack(mFluorideGases.get(4), 10), new FluidStack(mFluorideGases.get(5), 10) }, - new int[] {1000, 1000, 1000, 1000, 1000}); + new int[] {2000, 2000, 2000, 2000, 2000}); } } diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_NuclearFuelProcessing.java b/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_NuclearFuelProcessing.java index ae1f019ed4..71c62c6f7e 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_NuclearFuelProcessing.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_NuclearFuelProcessing.java @@ -240,8 +240,8 @@ public class RecipeLoader_NuclearFuelProcessing { FluidUtils.getFluidStack(NuclearChem.Impure_LiFBeF2, 1000), new FluidStack[] {NUCLIDE.LiFBeF2.getFluidStack(250)}, null, - 120 * 60 * 20, - MaterialUtils.getVoltageForTier(3)); + 450 * 20, + MaterialUtils.getVoltageForTier(5)); // UF6 -> UF4 reduction // UF6 + LiFBeF2 + H2 -> LiFBeF2UF4 + HF @@ -251,9 +251,9 @@ public class RecipeLoader_NuclearFuelProcessing { new ItemStack[] {ItemUtils.getItemStackOfAmountFromOreDict("cellHydrofluoricAcid", 2), CI.emptyCells(1) }, new FluidStack[] {NUCLIDE.LiFBeF2UF4.getFluidStack(3000)}, - 20 * 60 * 10, - MaterialUtils.getVoltageForTier(4), - 6500); + 300 * 10, + MaterialUtils.getVoltageForTier(5), + 5400); // LiFBeF2ZrF4U235 - We can't add both ZrF4 and U235 here, so best we leave this disabled. /*CORE.RA.addReactorProcessingUnitRecipe( |
