aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/tectech/recipe/TecTechRecipeMaps.java
diff options
context:
space:
mode:
authorMaya <10861407+serenibyss@users.noreply.github.com>2024-11-28 12:01:03 -0600
committerGitHub <noreply@github.com>2024-11-28 19:01:03 +0100
commite41a0889c5f498252691180b143c97b570b2fc6b (patch)
tree60e1dd7a5a1fa4e7e081f6fccdb438897fa49c20 /src/main/java/tectech/recipe/TecTechRecipeMaps.java
parent3fcd89ab979db773d63c498de905558d32943420 (diff)
downloadGT5-Unofficial-e41a0889c5f498252691180b143c97b570b2fc6b.tar.gz
GT5-Unofficial-e41a0889c5f498252691180b143c97b570b2fc6b.tar.bz2
GT5-Unofficial-e41a0889c5f498252691180b143c97b570b2fc6b.zip
Godforge hangover (#3396)
Co-authored-by: GDCloud <gdcloudstrike@gmail.com> Co-authored-by: GDCloud <93287602+GDCloudstrike@users.noreply.github.com> Co-authored-by: Martin Robertz <dream-master@gmx.net>
Diffstat (limited to 'src/main/java/tectech/recipe/TecTechRecipeMaps.java')
-rw-r--r--src/main/java/tectech/recipe/TecTechRecipeMaps.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/java/tectech/recipe/TecTechRecipeMaps.java b/src/main/java/tectech/recipe/TecTechRecipeMaps.java
index d4908df5b7..de98a2c274 100644
--- a/src/main/java/tectech/recipe/TecTechRecipeMaps.java
+++ b/src/main/java/tectech/recipe/TecTechRecipeMaps.java
@@ -85,4 +85,16 @@ public class TecTechRecipeMaps {
.logoPos(151, 63)
.build();
+ public static final RecipeMap<RecipeMapBackend> godforgeFakeUpgradeCostRecipes = RecipeMapBuilder
+ .of("gt.recipe.upgrade_costs")
+ .maxIO(12, 2, 0, 2)
+ .addSpecialTexture(83, 38, 30, 13, GTUITextures.PICTURE_ARROW_GRAY)
+ .dontUseProgressBar()
+ .neiTransferRect(83, 38, 30, 13)
+ .frontend(GodforgeUpgradeCostFrontend::new)
+ .neiHandlerInfo(
+ builder -> builder.setDisplayStack(CustomItemList.Machine_Multi_ForgeOfGods.get(1))
+ .setHeight(100))
+ .build();
+
}