blob: 4bf100b1d4ec03b64f1d2ae6c643960a6ce2a2e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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();
}
|