diff options
author | Volence <32358820+Volence@users.noreply.github.com> | 2024-08-03 22:07:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-04 09:07:37 +0700 |
commit | 50c7afb6c42498c45b422dfd09a0b9433a061034 (patch) | |
tree | 88ee4f3f5a52ef05a42312a321c54250471146db /src/main/java/gtPlusPlus/core/recipe | |
parent | c530f2f6c5a3afd3d4a823820228471b26266700 (diff) | |
download | GT5-Unofficial-50c7afb6c42498c45b422dfd09a0b9433a061034.tar.gz GT5-Unofficial-50c7afb6c42498c45b422dfd09a0b9433a061034.tar.bz2 GT5-Unofficial-50c7afb6c42498c45b422dfd09a0b9433a061034.zip |
Cryofreezer buff (#2795)
* changed the eu bonus, speed bonus, parallel bonus, and cryo use to be akin to the volcanus
* Changed cryo freezer recipe to be IV based
* actually change it to use half the cryotheum
* revert certain buffs as requested
* changed check for pyro/cryo from 5 every half second to 10 every full second, got rid of grace check
Diffstat (limited to 'src/main/java/gtPlusPlus/core/recipe')
-rw-r--r-- | src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java index c312149cfc..075b8978f6 100644 --- a/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java +++ b/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java @@ -2678,9 +2678,9 @@ public class RECIPES_Machines { if (true) { // Advanced Vacuum Freezer - ItemStack plate = ALLOY.HG1223.getPlateDouble(1); + ItemStack plate = ALLOY.LEAGRISIUM.getPlateDouble(1); ItemStack gear = ALLOY.INCOLOY_MA956.getGear(1); - ItemStack frame = ALLOY.LAFIUM.getFrameBox(1); + ItemStack frame = ALLOY.NITINOL_60.getFrameBox(1); ItemStack cell1 = ItemList.Reactor_Coolant_He_6.get(1); ItemStack cell2 = ItemList.Reactor_Coolant_NaK_6.get(1); |