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

Commit

Permalink
added recipes for large ore washer and ore washer parts
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Jun 25, 2024
1 parent 873a154 commit 7535a22
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ public static void loadRecipes(Consumer<FinishedRecipe> output, AntimatterRecipe
of('W', GregTechBlocks.WIRE_PLATINUM.getBlockItem(PipeSize.VTINY), 'M', GregTechBlocks.CASING_STAINLESS_STEEL, 'C', TIER_CIRCUITS.apply(EV)), "WWW", "WMW", "CCC");
provider.addItemRecipe(output, "casings", GregTechBlocks.GRINDING_WHEELS,
of('G', GEAR.getMaterialTag(TungstenSteel), 'M', GregTechBlocks.CASING_TUNGSTENSTEEL, 'D', GregTechTags.GRIND_HEADS), "GDG", "GMG");

provider.addItemRecipe(output, "casings", GregTechBlocks.ORE_WASHING_PARTS,
of('G', GEAR.getMaterialTag(Titanium), 'P', GregTechBlocks.FLUID_PIPE_TITANIUM.getBlock(PipeSize.NORMAL),'C', GregTechBlocks.CASING_TITANIUM, 'W', WRENCH.getTag()), "GGG", "PCP", "PWP");

addCoil(output, provider, GregTechBlocks.WIRE_CUPRONICKEL.getBlockItem(PipeSize.TINY), GregTechBlocks.COIL_CUPRONICKEL);
addCoil(output, provider, GregTechBlocks.WIRE_KANTHAL.getBlockItem(PipeSize.TINY), GregTechBlocks.COIL_KANTHAL);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -899,6 +899,13 @@ private static void addMultiblockRecipes(Consumer<FinishedRecipe> output, Antima
.put('H', HULL.getItem(IV))
.put('C', TIER_CIRCUITS.apply(IV))
.build(), "TGT", "PHP", "MCM"));
add(LARGE_ORE_WASHER, EV, (m, item) -> provider.addItemRecipe(output, "machines", item,
ImmutableMap.<Character, Object>builder()
.put('G', GEAR.getMaterialTag(Titanium))
.put('R', ROD.getMaterialTag(Titanium))
.put('W', GregTechBlocks.TITANIUM_WALL)
.put('C', TIER_CIRCUITS.apply(IV))
.put('c', TIER_CIRCUITS.apply(EV)).build(), "GGG", "RWR", "cCc"));
Arrays.stream(getStandard()).filter(t -> t !=IV).forEach(tier -> {
Block firebox = tier == LV ? GregTechBlocks.CASING_FIREBOX_BRONZE : tier == MV ? GregTechBlocks.CASING_FIREBOX_STEEL : tier == HV ? GregTechBlocks.CASING_FIREBOX_TITANIUM : GregTechBlocks.CASING_FIREBOX_TUNGSTENSTEEL;
Tier circuitTier = tier == LV ? tier : tier == MV ? HV : tier == HV ? EV : IV;
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 7535a22

Please sign in to comment.