-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGTWPRecipeMaps.java
More file actions
31 lines (27 loc) · 1.26 KB
/
GTWPRecipeMaps.java
File metadata and controls
31 lines (27 loc) · 1.26 KB
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
26
27
28
29
30
31
package com.github.gtexpert.gtwp.api.recipes;
import gregtech.api.gui.GuiTextures;
import gregtech.api.gui.widgets.ProgressWidget;
import gregtech.api.recipes.RecipeMap;
import gregtech.api.recipes.RecipeMapBuilder;
import gregtech.api.recipes.builders.SimpleRecipeBuilder;
import gregtech.core.sound.GTSoundEvents;
import crafttweaker.annotations.ZenRegister;
import stanhebben.zenscript.annotations.ZenExpansion;
import stanhebben.zenscript.annotations.ZenProperty;
@ZenExpansion("mods.gregtech.recipe.RecipeMaps")
@ZenRegister
public class GTWPRecipeMaps {
@ZenProperty
public static final RecipeMap<SimpleRecipeBuilder> SAWMILL_RECIPES = new RecipeMapBuilder<>(
"sawmill", new SimpleRecipeBuilder())
.itemInputs(2)
.itemOutputs(2)
.fluidInputs(1)
.fluidOutputs(0)
.itemSlotOverlay(GuiTextures.SAWBLADE_OVERLAY, false, false)
.itemSlotOverlay(GuiTextures.CUTTER_OVERLAY, true, false)
.itemSlotOverlay(GuiTextures.DUST_OVERLAY, true, true)
.progressBar(GuiTextures.PROGRESS_BAR_SLICE, ProgressWidget.MoveType.HORIZONTAL)
.sound(GTSoundEvents.CHAINSAW_TOOL)
.build();
}