diff options
author | Runakai1 <48415331+Runakai1@users.noreply.github.com> | 2023-06-07 17:59:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-07 17:59:02 +0200 |
commit | 35dc19047198555cce6e573b8c098b8dd5ffe13c (patch) | |
tree | 81f4f946ac40a9df353de83ab82a2c1d525b334d | |
parent | 0e259fd6c5bc2e110c1e3d3cead4f54fb51a75b4 (diff) | |
download | GT5-Unofficial-35dc19047198555cce6e573b8c098b8dd5ffe13c.tar.gz GT5-Unofficial-35dc19047198555cce6e573b8c098b8dd5ffe13c.tar.bz2 GT5-Unofficial-35dc19047198555cce6e573b8c098b8dd5ffe13c.zip |
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
-rw-r--r-- | dependencies.gradle | 1 | ||||
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_ChemicalSkips.java | 17 |
2 files changed, 17 insertions, 1 deletions
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), |