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 green and brown dye by mixing dyes
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Aug 28, 2024
1 parent 7a93e27 commit 35d1b5a
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,8 @@ public static void loadRecipes(Consumer<FinishedRecipe> consumer, AntimatterReci
provider.shapeless(consumer, GTIRef.ID, "blue_dye_from_sodalite_gem", "dyes", Items.BLUE_DYE.getDefaultInstance(), GEM.getMaterialTag(Sodalite));
provider.shapeless(consumer, GTIRef.ID, "cyan_dye_from_lazurite_dust", "dyes", Items.CYAN_DYE.getDefaultInstance(), DUST.getMaterialTag(Lazurite));
provider.shapeless(consumer, GTIRef.ID, "cyan_dye_from_lazurite_gem", "dyes", Items.CYAN_DYE.getDefaultInstance(), GEM.getMaterialTag(Lazurite));
provider.shapeless(consumer, GTIRef.ID, "green_dye_from_blue_and_yellow", "dyes", new ItemStack(Items.GREEN_DYE, 2), Items.YELLOW_DYE, Items.BLUE_DYE);
provider.shapeless(consumer, GTIRef.ID, "brown_dye_from_primaries", "dyes", new ItemStack(Items.BROWN_DYE, 3), Items.YELLOW_DYE, Items.BLUE_DYE, Items.RED_DYE);

}
}

0 comments on commit 35d1b5a

Please sign in to comment.