Pam's HarvestCraft

Pam's HarvestCraft

87M Downloads

Missing Recipes

corgiblu opened this issue ยท 2 comments

commented

Missing Recipes

Some may already be reported but eh, don't want to search for each individual item.
This is in the latest version (1.12.2zd)

  • Lychee Tea
  • Cucumber Sandwich
  • BBQ Jackfruit
  • Imitation Crab Sticks
  • Schnitzel
  • Bratwurst
commented

As of version zg, the Cucumber Sandwich has been fixed, but the remainder are still uncraftable, as well as the Swedish Meatballs, Garlic Steak & Spiced Lamb Kebab.

Using crafttweaker I inspected the recipes to find out the actual problems causing them to break:

  • Lychee Tea: recipe fails because the Lychee item is missing the oredict entry 'cropLychee'
  • BBQ Jackfruit: recipe fails because the Jackfruit item is missing the oredict entry 'cropJackfruit'
  • Imitation Crab Sticks: recipe includes an invalid oredict 'listAllwheat' (which doesn't exist- assuming this should be either foodFlour or cropWheat)
  • Swedish Meatballs & Garlic Steak: use the incorrect oredict 'foodSpiceleaf' (should be 'cropSpiceleaf')
  • Sauced Lamb Kebab: uses the incorrect oredict 'foodYogurt' (should be 'foodPlainyogurt')
  • Schnitzel & Bratwurst: recipes have been incorrectly allocated to the Quesadilla instead
commented

(Temporary crafttweaker scripts to fix issues with version zg only- do not use if you're in the future)

oreDict.cropLychee.add(<harvestcraft:lycheeitem>);
oreDict.cropJackfruit.add(<harvestcraft:jackfruititem>);

recipes.addShapeless(<harvestcraft:imitationcrabsticksitem>, [<ore:toolCuttingboard>, <ore:foodFlour>, <ore:listAllfishcooked>, <ore:listAllegg>, <minecraft:dye:1>]);
recipes.addShapeless(<harvestcraft:saucedlambkebabitem>, [<ore:toolMixingbowl>, <ore:foodLambkebab>, <ore:foodPlainyogurt>, <ore:listAllheavycream>, <ore:cropGarlic>, <ore:cropSpiceleaf>, <ore:cropLime>]);
recipes.addShapeless(<harvestcraft:swedishmeatballsitem>, [<ore:toolSaucepan>, <ore:foodGroundbeef>, <ore:foodFlour>, <ore:cropSpiceleaf>, <ore:foodGroundnutmeg>, <ore:listAllheavycream>, <ore:foodBlackpepper>, <ore:listAllheavycream>, <ore:listAllegg>]);
recipes.addShapeless(<harvestcraft:garlicsteakitem>, [<ore:toolSkillet>, <ore:listAllbeefraw>, <ore:cropGarlic>, <ore:foodButter>, <ore:cropSpiceleaf>]);

recipes.removeShapeless(<harvestcraft:quesadillaitem>);
recipes.addShapeless(<harvestcraft:quesadillaitem>, [<ore:toolSkillet>, <ore:foodTortilla>, <ore:foodCheese>]);
recipes.addShapeless(<harvestcraft:schnitzelitem>, [<ore:toolSkillet>, <ore:listAllmuttonraw>, <ore:foodFlour>, <ore:cropLemon>, <ore:foodOliveoil>, <ore:foodBlackpepper>]);
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>]);