|
22 | 22 | import static com.gregtechceu.gtceu.api.data.tag.TagPrefix.*; |
23 | 23 | import static com.gregtechceu.gtceu.common.data.GTItems.*; |
24 | 24 | import static com.gregtechceu.gtceu.common.data.GTMaterials.*; |
| 25 | +import static com.gregtechceu.gtceu.common.data.GTRecipeTypes.ASSEMBLER_RECIPES; |
25 | 26 |
|
26 | 27 | public class CraftingRecipeLoader { |
27 | 28 |
|
@@ -235,10 +236,18 @@ public static void init(Consumer<FinishedRecipe> provider) { |
235 | 236 | /////////////////////////////////////////////////// |
236 | 237 | // Credits // |
237 | 238 | /////////////////////////////////////////////////// |
238 | | - VanillaRecipeHelper.addShapelessRecipe(provider, "coin_chocolate", COIN_CHOCOLATE.asStack(), |
| 239 | + VanillaRecipeHelper.addShapelessRecipe(provider, "chocolate_coin", COIN_CHOCOLATE.asStack(), |
239 | 240 | new UnificationEntry(dust, Cocoa), new UnificationEntry(foil, Gold), |
240 | 241 | new FluidContainerIngredient(Milk.getFluidTag(), 1000), |
241 | 242 | new UnificationEntry(dust, Sugar)); |
| 243 | + ASSEMBLER_RECIPES.recipeBuilder("chocolate_coin") |
| 244 | + .inputItems(dust, Cocoa) |
| 245 | + .inputItems(foil, Gold) |
| 246 | + .inputItems(dust, Sugar) |
| 247 | + .inputFluids(Milk.getFluid(500)) |
| 248 | + .outputItems(COIN_CHOCOLATE) |
| 249 | + .duration(60).EUt(15) |
| 250 | + .save(provider); |
242 | 251 | VanillaRecipeHelper.addShapelessRecipe(provider, "credit_copper", CREDIT_COPPER.asStack(8), |
243 | 252 | CREDIT_CUPRONICKEL.asStack()); |
244 | 253 | VanillaRecipeHelper.addShapelessRecipe(provider, "credit_cupronickel_alt", CREDIT_CUPRONICKEL.asStack(), |
|
0 commit comments