diff options
author | Nico Spiske <64710705+Nilau1998@users.noreply.github.com> | 2024-09-01 14:38:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-01 14:38:40 +0200 |
commit | 148ff2956dad2377e6043173ad8b33d6acbc6ac6 (patch) | |
tree | 409cd58d3b847a0450efd8af7239b1860750e6c5 /src/main/java/gregtech/loaders/postload | |
parent | 784fc5aaca22995a9652ca228484c1833c962db0 (diff) | |
download | GT5-Unofficial-148ff2956dad2377e6043173ad8b33d6acbc6ac6.tar.gz GT5-Unofficial-148ff2956dad2377e6043173ad8b33d6acbc6ac6.tar.bz2 GT5-Unofficial-148ff2956dad2377e6043173ad8b33d6acbc6ac6.zip |
Add bee in courtesy to DaddyDiddy (#2507)
* [major] new effect, comb, flower, mutation condition
* [minor] imports
* Update GT_BeeDefinition.java
* [minor] fancier processing
* [patch] bs
* Update ItemComb.java
* Update SifterRecipes.java
* [minor] nuked machine booster effect
* Added back the effect but now with tick throttling. Right now it is set so the effect only gets triggered every 30 seconds.
* SA & BS
* [minor] add dynamic authority
* rename comb type and bee
reduce speed to super speed
* update bs + sa
* changed to fastest because super speed was 2x blinding (wired naming)
---------
Co-authored-by: Martin Robertz <dream-master@gmx.net>
Co-authored-by: boubou19 <miisterunknown@gmail.com>
Diffstat (limited to 'src/main/java/gregtech/loaders/postload')
-rw-r--r-- | src/main/java/gregtech/loaders/postload/recipes/SifterRecipes.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/main/java/gregtech/loaders/postload/recipes/SifterRecipes.java b/src/main/java/gregtech/loaders/postload/recipes/SifterRecipes.java index 8d3614d76a..3a34cc3536 100644 --- a/src/main/java/gregtech/loaders/postload/recipes/SifterRecipes.java +++ b/src/main/java/gregtech/loaders/postload/recipes/SifterRecipes.java @@ -1,6 +1,9 @@ package gregtech.loaders.postload.recipes; +import static gregtech.api.enums.Mods.EnderIO; +import static gregtech.api.enums.Mods.Forestry; import static gregtech.api.recipe.RecipeMaps.sifterRecipes; +import static gregtech.api.util.GT_ModHandler.getModItem; import static gregtech.api.util.GT_RecipeBuilder.SECONDS; import net.minecraft.init.Blocks; @@ -8,6 +11,7 @@ import net.minecraft.init.Items; import net.minecraft.item.ItemStack; import gregtech.api.enums.GT_Values; +import gregtech.api.enums.ItemList; import gregtech.api.enums.Materials; import gregtech.api.enums.OrePrefixes; import gregtech.api.util.GT_OreDictUnificator; @@ -43,5 +47,15 @@ public class SifterRecipes implements Runnable { .duration(30 * SECONDS) .eut(16) .addTo(sifterRecipes); + GT_Values.RA.stdBuilder() + .itemInputs(ItemList.ElectronicsLump.get(1)) + .itemOutputs( + ItemList.Electric_Motor_LV.get(1), + getModItem(Forestry.ID, "thermionicTubes", 1L, 5), + getModItem(EnderIO.ID, "itemPowerConduit", 1L, 0)) + .outputChances(25 * 100, 25 * 100, 25 * 100) + .duration(30 * SECONDS) + .eut(16) + .addTo(sifterRecipes); } } |