From 35dc19047198555cce6e573b8c098b8dd5ffe13c Mon Sep 17 00:00:00 2001 From: Runakai1 <48415331+Runakai1@users.noreply.github.com> Date: Wed, 7 Jun 2023 17:59:02 +0200 Subject: Adds a platline comb recipe to QFT (#661) * Adds a comb recipe to QFT Addition to PMP recipe, a comb pmp recipe needing Osmium, Palladium, Iridium and Platinum combs to give 2x more output than the regular PMP QFT recipe. This also needs a dep update from gt5u 5.09.43.67-pre to 5.09.43.79-pre * Spotless --- dependencies.gradle | 1 + .../loaders/recipe/RecipeLoader_ChemicalSkips.java | 17 ++++++++++++++++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/dependencies.gradle b/dependencies.gradle index 43b01704c7..862b41631a 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -1,4 +1,5 @@ dependencies { + api('com.github.GTNewHorizons:GT5-Unofficial:5.09.43.80:dev') api("com.github.GTNewHorizons:bartworks:0.7.16:dev") diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_ChemicalSkips.java b/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_ChemicalSkips.java index 6acf234408..d1858787e5 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_ChemicalSkips.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_ChemicalSkips.java @@ -210,7 +210,22 @@ public class RecipeLoader_ChemicalSkips { 20 * 20, (int) TierEU.RECIPE_UIV, 4); - + // Platline skip using Platline Combs (Palladium, Osmium, Iridium, Platinum) + CORE.RA.addQuantumTransformerRecipe( + new ItemStack[] { WerkstoffLoader.PTMetallicPowder.get(OrePrefixes.dust, 16), + GT_Bees.combs.getStackForType(CombType.PLATINUM, 16), + GT_Bees.combs.getStackForType(CombType.PALLADIUM, 16), + GT_Bees.combs.getStackForType(CombType.OSMIUM, 16), + GT_Bees.combs.getStackForType(CombType.IRIDIUM, 16), + ItemUtils.getSimpleStack(GenericChem.mPlatinumGroupCatalyst, 0) }, + null, + null, + new ItemStack[] { Materials.Platinum.getDust(64), Materials.Palladium.getDust(64), + Materials.Iridium.getDust(64), Materials.Osmium.getDust(64) }, + new int[] { 2500, 2500, 2500, 2500 }, + 20 * 10, + (int) TierEU.RECIPE_UV, + 1); // Bio Cells and Mutated Solder CORE.RA.addQuantumTransformerRecipe( new ItemStack[] { ItemList.Circuit_Chip_Stemcell.get(16), Materials.InfinityCatalyst.getDust(4), -- cgit