Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
added redstone machine controller recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Jul 31, 2023
1 parent e063328 commit 14dd338
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,9 @@ private static void frames(){
private static void misc(){
ASSEMBLING.RB().ii(of(ItemTags.PLANKS,8), INT_CIRCUITS.get(8)).io(new ItemStack(Items.CHEST,1)).add("chest",100,4);
ASSEMBLING.RB().ii(of(PLATES_IRON_ALUMINIUM, 2), of(Items.IRON_BARS, 2)).io(new ItemStack(GregTech.get(ItemCover.class, COVER_DRAIN.getId()))).add("drain",800, 16);
ASSEMBLING.RB().ii(of(PLATES_IRON_ALUMINIUM, 1), of(Items.LEVER, 1)).fi(SolderingAlloy.getLiquid(L / 2)).io(new ItemStack(GregTech.get(ItemCover.class, COVER_REDSTONE_MACHINE_CONTROLLER.getId()))).add("redstone_machine_controller_soldering_alloy", 800, 16);
ASSEMBLING.RB().ii(of(PLATES_IRON_ALUMINIUM, 1), of(Items.LEVER, 1)).fi(Lead.getLiquid(L * 2)).io(new ItemStack(GregTech.get(ItemCover.class, COVER_REDSTONE_MACHINE_CONTROLLER.getId()))).add("redstone_machine_controller_lead", 800, 16);
ASSEMBLING.RB().ii(of(PLATES_IRON_ALUMINIUM, 1), of(Items.LEVER, 1)).fi(Tin.getLiquid(L)).io(new ItemStack(GregTech.get(ItemCover.class, COVER_REDSTONE_MACHINE_CONTROLLER.getId()))).add("redstone_machine_controller_tin", 800, 16);
ASSEMBLING.RB().ii(of(CarbonFibre, 2), INT_CIRCUITS.get(2)).io(CarbonMesh).add("carbon_mesh", 800, 2);
ASSEMBLING.RB().ii(of(CarbonFibre, 4), FOIL.getMaterialIngredient(Zinc, 16)).io(ItemFilter).add("item_filter", 1600, 32);
}
Expand Down

0 comments on commit 14dd338

Please sign in to comment.