Skip to content

Commit

Permalink
Add assembler recipe for chocolate coin (#2858)
Browse files Browse the repository at this point in the history
  • Loading branch information
JuiceyBeans authored Feb 12, 2025
1 parent 9e66554 commit 01b652a
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import static com.gregtechceu.gtceu.api.data.tag.TagPrefix.*;
import static com.gregtechceu.gtceu.common.data.GTItems.*;
import static com.gregtechceu.gtceu.common.data.GTMaterials.*;
import static com.gregtechceu.gtceu.common.data.GTRecipeTypes.ASSEMBLER_RECIPES;

public class CraftingRecipeLoader {

Expand Down Expand Up @@ -235,10 +236,18 @@ public static void init(Consumer<FinishedRecipe> provider) {
///////////////////////////////////////////////////
// Credits //
///////////////////////////////////////////////////
VanillaRecipeHelper.addShapelessRecipe(provider, "coin_chocolate", COIN_CHOCOLATE.asStack(),
VanillaRecipeHelper.addShapelessRecipe(provider, "chocolate_coin", COIN_CHOCOLATE.asStack(),
new UnificationEntry(dust, Cocoa), new UnificationEntry(foil, Gold),
new FluidContainerIngredient(Milk.getFluidTag(), 1000),
new UnificationEntry(dust, Sugar));
ASSEMBLER_RECIPES.recipeBuilder("chocolate_coin")
.inputItems(dust, Cocoa)
.inputItems(foil, Gold)
.inputItems(dust, Sugar)
.inputFluids(Milk.getFluid(500))
.outputItems(COIN_CHOCOLATE)
.duration(60).EUt(15)
.save(provider);
VanillaRecipeHelper.addShapelessRecipe(provider, "credit_copper", CREDIT_COPPER.asStack(8),
CREDIT_CUPRONICKEL.asStack());
VanillaRecipeHelper.addShapelessRecipe(provider, "credit_cupronickel_alt", CREDIT_CUPRONICKEL.asStack(),
Expand Down

0 comments on commit 01b652a

Please sign in to comment.