Skip to content

Commit

Permalink
add recipes for launch pad, seat
Browse files Browse the repository at this point in the history
  • Loading branch information
screret committed Feb 3, 2024
1 parent 0781d62 commit 73f9301
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/main/java/argent_matter/gcyr/data/recipe/MiscRecipes.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import com.gregtechceu.gtceu.data.recipe.VanillaRecipeHelper;
import com.gregtechceu.gtceu.data.recipe.misc.MetaTileEntityLoader;
import net.minecraft.data.recipes.FinishedRecipe;
import net.minecraft.world.item.Items;

import java.util.function.Consumer;

Expand Down Expand Up @@ -111,6 +112,19 @@ public static void init(Consumer<FinishedRecipe> provider) {
.outputItems(GCyRBlocks.BASIC_ROCKET_MOTOR.asStack(1))
.EUt(VA[EV]).duration(300);

GTRecipeTypes.ASSEMBLER_RECIPES.recipeBuilder(GCyR.id("launch_pad"))
.inputItems(Items.BLACK_CONCRETE, 1)
.inputItems(frameGt, Steel, 1)
.inputFluids(DyeYellow.getFluid(200))
.inputFluids(PolyvinylChloride.getFluid(576))
.EUt(VA[HV]).duration(40);

GTRecipeTypes.ASSEMBLER_RECIPES.recipeBuilder(GCyR.id("seat"))
.inputItems(Items.WHITE_CARPET, 1)
.inputItems(rod, Steel, 6)
.inputItems(plate, Steel, 2)
.EUt(VA[MV]).duration(50);

//endregion
}

Expand Down

0 comments on commit 73f9301

Please sign in to comment.