diff options
author | Glease <4586901+Glease@users.noreply.github.com> | 2022-03-09 00:15:30 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-08 17:15:30 +0100 |
commit | 233401bf38f0ca1cda32ab85c225742c74f435d8 (patch) | |
tree | 11e33a762402145d1b86492221f526617edaad9e /src/main/java/gregtech/loaders/postload/GT_MachineRecipeLoader.java | |
parent | fe7afc6d357f61c161bfdfffc6831502e6a6c8cb (diff) | |
download | GT5-Unofficial-233401bf38f0ca1cda32ab85c225742c74f435d8.tar.gz GT5-Unofficial-233401bf38f0ca1cda32ab85c225742c74f435d8.tar.bz2 GT5-Unofficial-233401bf38f0ca1cda32ab85c225742c74f435d8.zip |
sunnarium from glowstone in reactors (#971)
* sunnarium from glowstone in reactors
* change glowstone dust to 9 items
(cherry picked from commit 24d7318ae8e73dc0082784e0a5872903b074dd2e)
Co-authored-by: Martin Robertz <dream-master@gmx.net>
Diffstat (limited to 'src/main/java/gregtech/loaders/postload/GT_MachineRecipeLoader.java')
-rw-r--r-- | src/main/java/gregtech/loaders/postload/GT_MachineRecipeLoader.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/java/gregtech/loaders/postload/GT_MachineRecipeLoader.java b/src/main/java/gregtech/loaders/postload/GT_MachineRecipeLoader.java index 17d3caddc6..dc1a878ab7 100644 --- a/src/main/java/gregtech/loaders/postload/GT_MachineRecipeLoader.java +++ b/src/main/java/gregtech/loaders/postload/GT_MachineRecipeLoader.java @@ -1130,6 +1130,9 @@ public class GT_MachineRecipeLoader implements Runnable { GT_Values.RA.addCannerRecipe(GT_ModHandler.getIC2Item("fuelRod", 1), GT_ModHandler.getIC2Item("UranFuel", 1), ItemList.Uraniumcell_1.get(1), null, 30, 16); GT_Values.RA.addCannerRecipe(GT_ModHandler.getIC2Item("fuelRod", 1), GT_ModHandler.getIC2Item("MOXFuel", 1), ItemList.Moxcell_1.get(1), null, 30, 16); + // radiation manufacturing + GT_Values.RA.addMixerRecipe(GT_ModHandler.getIC2Item("fuelRod", 1), new ItemStack(Items.glowstone_dust, 9), NI, NI, Materials.Helium.getGas(250), NF, ItemList.GlowstoneCell.get(1), 30, 16); + RA.addThermalCentrifugeRecipe(ItemList.SunnariumCell.get(1), GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Sunnarium, 1L), new ItemStack(Items.glowstone_dust, 2), GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Iron, 1L), 500, 48); //Fusion tiering -T1 32768EU/t -T2 65536EU/t - T3 131073EU/t //Fusion with margin 32700 65450 131000 //Startup max 160M EU 320M EU 640M EU |