diff options
author | Daniel Mendes <70096037+Steelux8@users.noreply.github.com> | 2023-02-08 08:54:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-08 09:54:10 +0100 |
commit | 8f4b511c9951ecb09a69bef0ef91ebce7b6095a5 (patch) | |
tree | acf5dab11f78387d9bfee89947c7cc2f384d3aa3 /src/main/java/gtPlusPlus/xmod/gregtech/loaders | |
parent | 8fd4fef38b18244b2e728dce895728b043c70ce7 (diff) | |
download | GT5-Unofficial-8f4b511c9951ecb09a69bef0ef91ebce7b6095a5.tar.gz GT5-Unofficial-8f4b511c9951ecb09a69bef0ef91ebce7b6095a5.tar.bz2 GT5-Unofficial-8f4b511c9951ecb09a69bef0ef91ebce7b6095a5.zip |
Add Sifting Recipe to Thorium for Radium (#509)
* Add Sifting Recipe to Thorium for Radium
* spotlessApply (#510)
Co-authored-by: Steelux <70096037+Steelux8@users.noreply.github.com>
Co-authored-by: GitHub GTNH Actions <>
---------
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/loaders')
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_Nuclear.java | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_Nuclear.java b/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_Nuclear.java index 7595fc7af7..0aa8b31e03 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_Nuclear.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_Nuclear.java @@ -537,6 +537,20 @@ public class RecipeLoader_Nuclear { // Radium GT_Values.RA.addSifterRecipe( + ItemUtils.getItemStackOfAmountFromOreDict("crushedPurifiedThorium", 1), + new ItemStack[] { + ItemUtils.getItemStackOfAmountFromOreDict("dustThorium", 1), + ItemUtils.getItemStackOfAmountFromOreDict("dustLead", 1), + ItemUtils.getItemStackOfAmountFromOreDict("dustRadium226", 1), + ItemUtils.getItemStackOfAmountFromOreDict("dustRadium226", 1), + ItemUtils.getItemStackOfAmountFromOreDict("dustRadium226", 1), + ItemUtils.getItemStackOfAmountFromOreDict("dustRadium226", 1) + }, + new int[] {10000, 500, 300, 200, 100, 100}, + 20 * 30, + 500); + + GT_Values.RA.addSifterRecipe( ItemUtils.getItemStackOfAmountFromOreDict("crushedPurifiedUranium", 1), new ItemStack[] { ItemUtils.getItemStackOfAmountFromOreDict("dustUranium", 1), ItemUtils.getItemStackOfAmountFromOreDict("dustLead", 1), @@ -547,6 +561,7 @@ public class RecipeLoader_Nuclear { new int[] { 10000, 556, 1000, 500, 500, 500 }, 20 * 30, 500); + GT_Values.RA.addSifterRecipe( ItemUtils.getItemStackOfAmountFromOreDict("crushedPurifiedUraninite", 1), new ItemStack[] { ItemUtils.getItemStackOfAmountFromOreDict("dustUraninite", 1), @@ -558,6 +573,7 @@ public class RecipeLoader_Nuclear { new int[] { 10000, 556, 500, 250, 250, 250 }, 20 * 30, 500); + GT_Values.RA.addSifterRecipe( ItemUtils.getItemStackOfAmountFromOreDict("crushedPurifiedPitchblende", 1), new ItemStack[] { ItemUtils.getItemStackOfAmountFromOreDict("dustPitchblende", 1), |