aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/elisis/gtnhlanth/api
diff options
context:
space:
mode:
authormiozune <miozune@gmail.com>2023-12-04 08:26:47 +0900
committerGitHub <noreply@github.com>2023-12-04 00:26:47 +0100
commit44c774ebbd67fd674565797796d53af48480032a (patch)
treec12b23ffd2a3c6f1c5aeca00c821780798173d4e /src/main/java/com/elisis/gtnhlanth/api
parentb0c849f37e1bb36b41446ad9555f9481e03fbea4 (diff)
downloadGT5-Unofficial-44c774ebbd67fd674565797796d53af48480032a.tar.gz
GT5-Unofficial-44c774ebbd67fd674565797796d53af48480032a.tar.bz2
GT5-Unofficial-44c774ebbd67fd674565797796d53af48480032a.zip
Migrate to new RecipeMap (#73)
* Migrate Lanth recipemaps * Migrate the rest * Don't requires NHCore * Cleanup recipemaps * Update GT to adapt to MaceratorBackend removal * updade gradle+bs+deps * Update dependencies.gradle --------- Co-authored-by: Martin Robertz <dream-master@gmx.net>
Diffstat (limited to 'src/main/java/com/elisis/gtnhlanth/api')
-rw-r--r--src/main/java/com/elisis/gtnhlanth/api/recipe/LanthanidesRecipeMaps.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/main/java/com/elisis/gtnhlanth/api/recipe/LanthanidesRecipeMaps.java b/src/main/java/com/elisis/gtnhlanth/api/recipe/LanthanidesRecipeMaps.java
new file mode 100644
index 0000000000..9792dcad10
--- /dev/null
+++ b/src/main/java/com/elisis/gtnhlanth/api/recipe/LanthanidesRecipeMaps.java
@@ -0,0 +1,19 @@
+package com.elisis.gtnhlanth.api.recipe;
+
+import gregtech.api.gui.modularui.GT_UITextures;
+import gregtech.api.recipe.RecipeMap;
+import gregtech.api.recipe.RecipeMapBackend;
+import gregtech.api.recipe.RecipeMapBuilder;
+import gregtech.nei.formatter.HeatingCoilSpecialValueFormatter;
+import gregtech.nei.formatter.SimpleSpecialValueFormatter;
+
+public class LanthanidesRecipeMaps {
+
+ public static final RecipeMap<RecipeMapBackend> digesterRecipes = RecipeMapBuilder.of("gtnhlanth.recipe.digester")
+ .maxIO(1, 1, 1, 1).minInputs(1, 1).progressBar(GT_UITextures.PROGRESSBAR_ARROW_MULTIPLE)
+ .neiSpecialInfoFormatter(HeatingCoilSpecialValueFormatter.INSTANCE).build();
+ public static final RecipeMap<RecipeMapBackend> dissolutionTankRecipes = RecipeMapBuilder
+ .of("gtnhlanth.recipe.disstank").maxIO(2, 3, 2, 1).minInputs(1, 1)
+ .progressBar(GT_UITextures.PROGRESSBAR_ARROW_MULTIPLE)
+ .neiSpecialInfoFormatter(new SimpleSpecialValueFormatter("value.disstank")).build();
+}