diff options
author | lordIcocain <62835225+lordIcocain@users.noreply.github.com> | 2023-11-25 13:43:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-25 12:43:31 +0100 |
commit | 23c80dd8dad99c0363534917868f7a6968c52908 (patch) | |
tree | c093faa8fe41e5aa39f6b057c1137373037df859 | |
parent | 8cd2febd2315e4f963f051a42216e620dce3f50b (diff) | |
download | GT5-Unofficial-23c80dd8dad99c0363534917868f7a6968c52908.tar.gz GT5-Unofficial-23c80dd8dad99c0363534917868f7a6968c52908.tar.bz2 GT5-Unofficial-23c80dd8dad99c0363534917868f7a6968c52908.zip |
Add precious metals alloy recipe for ABS (#781)
* ABS more recipes
* spotless
* rollback
-rw-r--r-- | src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index 37ed5cc814..858be53dd4 100644 --- a/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -726,6 +726,21 @@ public class RECIPES_GREGTECH { 0, 20 * 120, 491520); + + // molten precious metals alloy + CORE.RA.addBlastSmelterRecipe( + new ItemStack[] { ItemUtils.getGregtechCircuit(6), + ItemUtils.getItemStackOfAmountFromOreDict("dustRuthenium", 1), + ItemUtils.getItemStackOfAmountFromOreDict("dustRhodium", 1), + ItemUtils.getItemStackOfAmountFromOreDict("dustPalladium", 1), + ItemUtils.getItemStackOfAmountFromOreDict("dustPlatinum", 1), + ItemUtils.getItemStackOfAmountFromOreDict("dustOsmium", 1), + ItemUtils.getItemStackOfAmountFromOreDict("dustIridium", 1) }, + GT_Values.NF, + FluidUtils.getFluidStack("molten.precious metals alloy", 864), + 0, + 20 * 540, + 7864320); } private static void dehydratorRecipes() { |