diff options
author | Raven Szewczyk <git@eigenraven.me> | 2024-05-25 15:39:05 +0100 |
---|---|---|
committer | Raven Szewczyk <git@eigenraven.me> | 2024-05-25 15:39:05 +0100 |
commit | db88561e8e21fb8b067bf5bf1a1753697d36ed29 (patch) | |
tree | 7a928f7502c46571b41dfa647151c253064cd5fb /src/main/java/com/elisis/gtnhlanth/api/recipe/LanthanidesRecipeMaps.java | |
parent | 9069e2aa47be7e6fb6ab1a2a29c5887ec2bfb2d7 (diff) | |
download | GT5-Unofficial-db88561e8e21fb8b067bf5bf1a1753697d36ed29.tar.gz GT5-Unofficial-db88561e8e21fb8b067bf5bf1a1753697d36ed29.tar.bz2 GT5-Unofficial-db88561e8e21fb8b067bf5bf1a1753697d36ed29.zip |
Merge Lanthanides sources
Diffstat (limited to 'src/main/java/com/elisis/gtnhlanth/api/recipe/LanthanidesRecipeMaps.java')
-rw-r--r-- | src/main/java/com/elisis/gtnhlanth/api/recipe/LanthanidesRecipeMaps.java | 25 |
1 files changed, 25 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..4bf100b1d4 --- /dev/null +++ b/src/main/java/com/elisis/gtnhlanth/api/recipe/LanthanidesRecipeMaps.java @@ -0,0 +1,25 @@ +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(); +} |