From 148ff2956dad2377e6043173ad8b33d6acbc6ac6 Mon Sep 17 00:00:00 2001 From: Nico Spiske <64710705+Nilau1998@users.noreply.github.com> Date: Sun, 1 Sep 2024 14:38:40 +0200 Subject: 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 Co-authored-by: boubou19 --- .../gregtech/loaders/postload/recipes/SifterRecipes.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src/main/java/gregtech/loaders/postload') 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); } } -- cgit