Skip to content

Yipiii... another batch of recipes #1228

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 30 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
c989ed3
add recipes
EnderProyects Mar 31, 2025
6622bd1
Update ScriptEFR.java
EnderProyects Mar 31, 2025
e1061ab
Update ScriptEFR.java
EnderProyects Mar 31, 2025
25b3925
changed
EnderProyects Mar 31, 2025
c9ec359
Merge branch 'master' into Batch-of-EFR-blocks
EnderProyects Apr 1, 2025
4f74a70
Update ScriptEFR.java
EnderProyects Apr 2, 2025
d94f7df
Update ScriptEFR.java
EnderProyects Apr 3, 2025
32d3936
Update ScriptEFR.java
EnderProyects Apr 3, 2025
7667444
Update ScriptEFR.java
EnderProyects Apr 4, 2025
0de9d3f
Merge branch 'master' into Batch-of-EFR-blocks
EnderProyects Apr 9, 2025
58b70bf
Merge branch 'master' into Batch-of-EFR-blocks
EnderProyects Apr 11, 2025
4414dad
Merge branch 'master' into Batch-of-EFR-blocks
EnderProyects Apr 23, 2025
f1c3755
Merge branch 'master' into Batch-of-EFR-blocks
EnderProyects Apr 26, 2025
7217c78
Merge branch 'master' into Batch-of-EFR-blocks
EnderProyects May 6, 2025
b0eff65
Merge branch 'master' into Batch-of-EFR-blocks
EnderProyects May 8, 2025
675d93a
Merge branch 'master' into Batch-of-EFR-blocks
EnderProyects May 8, 2025
e9b4798
Update ScriptEFR.java
EnderProyects May 8, 2025
d5a2aea
update
EnderProyects May 8, 2025
1669530
Update ScriptEFR.java
EnderProyects May 8, 2025
3610598
Update ScriptEFR.java
EnderProyects May 8, 2025
bfbef82
Merge branch 'master' into Batch-of-EFR-blocks
serenibyss May 9, 2025
bad02d4
Merge branch 'master' into Batch-of-EFR-blocks
EnderProyects May 10, 2025
a2d23de
Merge branch 'master' into Batch-of-EFR-blocks
EnderProyects May 12, 2025
e475884
Merge branch 'master' into Batch-of-EFR-blocks
EnderProyects May 20, 2025
340eac8
Merge branch 'master' into Batch-of-EFR-blocks
serenibyss May 25, 2025
8494971
Merge branch 'master' into Batch-of-EFR-blocks
Dream-Master May 26, 2025
172f75b
ups
EnderProyects May 29, 2025
bda7a6f
Merge branch 'master' into Batch-of-EFR-blocks
EnderProyects May 29, 2025
d167fcc
Update ScriptEFR.java
EnderProyects May 29, 2025
40d9918
Merge branch 'Batch-of-EFR-blocks' of https://github.com/EnderProyect…
EnderProyects May 29, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/main/java/com/dreammaster/recipes/RecipeRemover.java
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,9 @@ public static void run() {
removeRecipeByOutputDelayed(getModItem(EtFuturumRequiem.ID, "obsidian_barrel", 1, 0));
removeRecipeByOutputDelayed(getModItem(EtFuturumRequiem.ID, "darksteel_barrel", 1, 0));
removeRecipeByOutputDelayed(getModItem(EtFuturumRequiem.ID, "netherite_barrel", 1, 0));
removeRecipeByOutputDelayed(getModItem(EtFuturumRequiem.ID, "amethyst_block", 1, 0));
removeRecipeByOutputDelayed(getModItem(EtFuturumRequiem.ID, "tinted_glass", 1, 0));
removeRecipeByOutputDelayed(getModItem(EtFuturumRequiem.ID, "chain", 1, 0));
}

// AUTOGENERATED FROM SCRIPTS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import static gregtech.api.enums.Mods.BiomesOPlenty;
import static gregtech.api.enums.Mods.Botany;
import static gregtech.api.enums.Mods.Chisel;
import static gregtech.api.enums.Mods.EtFuturumRequiem;
import static gregtech.api.enums.Mods.Forestry;
import static gregtech.api.enums.Mods.GTPlusPlus;
import static gregtech.api.enums.Mods.HardcoreEnderExpansion;
Expand All @@ -20,6 +21,7 @@
import static gregtech.api.recipe.RecipeMaps.fluidCannerRecipes;
import static gregtech.api.recipe.RecipeMaps.fluidExtractionRecipes;
import static gregtech.api.recipe.RecipeMaps.fluidSolidifierRecipes;
import static gregtech.api.recipe.RecipeMaps.hammerRecipes;
import static gregtech.api.recipe.RecipeMaps.maceratorRecipes;
import static gregtech.api.recipe.RecipeMaps.mixerRecipes;
import static gregtech.api.util.GTModHandler.getModItem;
Expand Down Expand Up @@ -334,5 +336,9 @@ public void loadRecipes() {
.itemOutputs(getModItem(BiomesOPlenty.ID, "ash", 1, 0, missing)).eut(30).duration(15 * SECONDS)
.addTo(compressorRecipes);

GTValues.RA.stdBuilder().itemInputs(getModItem(EtFuturumRequiem.ID, "mangrove_roots", 1, 0, missing))
.itemOutputs(getModItem(BiomesOPlenty.ID, "plants", 3, 15, missing)).duration(2 * SECONDS)
.eut(TierEU.RECIPE_HV).addTo(hammerRecipes);

}
}
Loading