Honeyed Apple quest missing some items/recipes
Ozzymud opened this issue ยท 4 comments
- Using version 1.2.0 raw tofish doesn't seem to be able to be crafted, it is needed for the Honeyed Apple challenge quest.
- Fixed it for me by adding the following line to the kubejs/server_scrips/recipes.js:
event.shapeless("pamhc2foodextended:rawtofishitem", ["pamhc2foodextended:firmtofuitem", "pamhc2foodcore:mixingbowlitem", "minecraft:kelp"]);
- Grabbed that recipe from: https://harvestcraftmod.fandom.com/wiki/Raw_Tofish
- Peaches and Cream Oatmeal is also missing a recipe.
will edit here when I make a recipe.
event.shapeless("pamhc2foodextended:peachesandcreamoatmealitem", ["pamhc2foodcore:potitem", "#forge:crops/oats", "#forge:fruits/peach", "#forge:cream", "pamhc2foodcore:freshwateritem"]);
- Recipe from: https://harvestcraftmod.fandom.com/wiki/Peaches_and_Cream_Oatmeal
- Quark root seems unobtainable, checked MANY Twilight Forest caves/troll caves with no luck, fixed with:
event.shapeless("quark:root_item", new Array(9).fill("twilightforest:root_strand"));
- Still gated behind TF and needs shears to obtain.
-
Maybe it is just me but BetterEnd amber root and chorus mushroom are nowhere to be found after several hours of end exploration, will chime back in if I find them.Solved this by using the Uncrafting Table from TF on some Pam's foods. -
Also, the Quark crab leg item seems unobtainable, they only spawn in beach biomes and after digging several out and waiting at the edge of view distance nothing spawned. Maybe changing "Biome Types" = ["beach"] in the quark config to "swamp" would allow them to spawn in the Twilight Forest like frogs do with the "swamp" setting.Blessed Earth in a beach biome in the overworld worked here. -
Tinkers' Bacon doesn't seem to drop. Mined over 5k blocks with a Tasty III Hammer and killed a few hundred mobs with a Tasty II sword and not one piece of bacon dropped. In 1.12 with only Tasty I bacon would drop ever 50 or so mobs and every few hundred blocks mined.
This is an incredibly frustrating issue. It would be really nice it the modpack creators would address it.
I read (here) that Tinkers bacon with tasty only works on pigs, piglins, and hoglins.
I created a fully pig iron cleaver and killed pigs and got one in a minute or so.
I did find one chorus mushroom in about 2 hours of looking, they are so rare, and you need 2 to eat the raw and cooked version.
There are some other broken recipes for Pams too.
// based on beef patty item
event.shapeless("pamhc2foodextended:gourmetmuttonpattyitem", [
"pamhc2foodcore:mixingbowlitem",
"#forge:groundmeats/groundmutton",
"#forge:spices/saltandpepper",
"#forge:spices/spiceleaf",
"#forge:spices/mustardseeds"]);
// based on leafy chicken sandwitch
event.shapeless("pamhc2foodextended:leafyfishsandwichitem", [
"#forge:tool_cuttingboard",
"#forge:leafyvegetables",
"pamhc2foodcore:basicfishsandwichitem"]);
// https://harvestcraftmod.fandom.com/wiki/Meringue_Brownie
event.shapeless("pamhc2foodextended:meringuebrownieitem", [
"#forge:tool_bakeware",
"#forge:meringue",
"#forge:cocoapowder",
"#forge:flour",
"#forge:sugar",
"#forge:milk"]);
// https://harvestcraftmod.fandom.com/wiki/Raspberry_Trifle
event.shapeless("pamhc2foodextended:raspberrytrifleitem", [
"#forge:tool_bakeware",
"#forge:fruits/raspberry",
"#forge:cream",
"#forge:spices/vanilla",
"#forge:dough"]);
// based on honey glazed carrots
event.shapeless("pamhc2foodextended:honeyglazedhamitem", [
"#forge:tool_saucepan",
"#forge:rawpork",
"#forge:honey",
"#forge:butter",
"#forge:fruits/lemon"]);`