Skip to content
This repository has been archived by the owner on May 26, 2024. It is now read-only.

Add precious metals alloy recipe for ABS #781

Merged
merged 5 commits into from
Nov 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java
Original file line number Diff line number Diff line change
Expand Up @@ -726,6 +726,21 @@ private static void blastSmelterRecipes() {
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() {
Expand Down