Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change Gourmet Patty recipes from Mustard Seed to Mustard Crop #2182

Merged
merged 1 commit into from
Apr 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions scripts/Harvestcraft.zs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,15 @@ recipes.addShapeless(<harvestcraft:schnitzelitem>, [<ore:toolSkillet>, <ore:list
recipes.addShapeless(<harvestcraft:schnitzelitem>, [<ore:toolSkillet>, <ore:listAllporkraw>, <ore:foodFlour>, <ore:cropLemon>, <ore:foodOliveoil>, <ore:foodBlackpepper>]);
recipes.addShapeless(<harvestcraft:bratwurstitem>, [<ore:toolCuttingboard>, <ore:foodPorksausage>, <ore:foodPickles>, <ore:cropOnion>, <minecraft:bread>]);

recipes.removeShapeless(<harvestcraft:gourmetbeefpattyitem>);
recipes.removeShapeless(<harvestcraft:gourmetmuttonpattyitem>);
recipes.removeShapeless(<harvestcraft:gourmetporkpattyitem>);
recipes.removeShapeless(<harvestcraft:gourmetvenisonpattyitem>);
recipes.addShapeless(<harvestcraft:gourmetbeefpattyitem>, [<ore:toolMixingbowl>, <ore:foodGroundbeef>, <ore:foodBlackpepper>, <ore:cropSpiceleaf>, <ore:cropMustard>, <ore:foodSalt>]);
recipes.addShapeless(<harvestcraft:gourmetmuttonpattyitem>, [<ore:toolMixingbowl>, <ore:foodGroundmutton>, <ore:foodBlackpepper>, <ore:cropSpiceleaf>, <ore:cropMustard>, <ore:foodSalt>]);
recipes.addShapeless(<harvestcraft:gourmetporkpattyitem>, [<ore:toolMixingbowl>, <ore:foodGroundpork>, <ore:foodBlackpepper>, <ore:cropSpiceleaf>, <ore:cropMustard>, <ore:foodSalt>]);
recipes.addShapeless(<harvestcraft:gourmetvenisonpattyitem>, [<ore:toolMixingbowl>, <ore:foodGroundvenison>, <ore:foodBlackpepper>, <ore:cropSpiceleaf>, <ore:cropMustard>, <ore:foodSalt>]);

# Raw Meat -> Ground Meat
mods.thermalexpansion.Pulverizer.addRecipe(<harvestcraft:groundduckitem>, <harvestcraft:duckrawitem>, 2000);
mods.thermalexpansion.Pulverizer.addRecipe(<harvestcraft:groundmuttonitem>, <minecraft:mutton>, 2000);
Expand Down