aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Mendes <70096037+Steelux8@users.noreply.github.com>2023-02-08 08:54:10 +0000
committerGitHub <noreply@github.com>2023-02-08 09:54:10 +0100
commit8f4b511c9951ecb09a69bef0ef91ebce7b6095a5 (patch)
treeacf5dab11f78387d9bfee89947c7cc2f384d3aa3
parent8fd4fef38b18244b2e728dce895728b043c70ce7 (diff)
downloadGT5-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>
-rw-r--r--src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_Nuclear.java16
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),