WTFGeeks / Natural-Magic

This is the Official repository for the Natural Magic Modpack designed by Lewis WTFGeeks!
https://www.youtube.com/user/WTFG33ks
13 stars 7 forks source link

Pam's and Magical Crops food drops #202

Open LordPinkerton opened 9 years ago

LordPinkerton commented 9 years ago

Both Pam's and Magical Crops have sheep and squid food drops. What I did in my own pack was just use Mine Tweaks 3 to add the Magical Crops ones to the ore dictionary categories that Pam's uses and disabled Pam's drops (only since Magical Crops does not have a toggle in their config.) My entry looks like this if you're curious. There's probably an easier way to go about it, but I'm still new at modpacks.

Added Magical Crops meats to work with Pam's Harvestcraft recipes. Pam's Mutton and Calamari mob drops should be disabled.

val meatraw = ore:MeatRaw; meatraw.add(magicalcrops:magicalcrops_RawMeat:0); ore:listAllmeatraw.addAll(ore:MeatRaw); ore:listAllmuttonraw.addAll(ore:MeatRaw); ore:foodMuttonraw.addAll(ore:MeatRaw);

val meatcooked = ore:MeatCooked; meatcooked.add(magicalcrops:magicalcrops_CookedMeat:0); ore:listAllmeatcooked.addAll(ore:MeatCooked); ore:listAllmuttoncooked.addAll(ore:MeatCooked); ore:foodMuttoncooked.addAll(ore:MeatCooked);

val calamariraw = ore:CalamariRaw; calamariraw.add(magicalcrops:magicalcrops_RawMeat:1); ore:listAllfishraw.addAll(ore:CalamariRaw); ore:foodCalamariraw.addAll(ore:CalamariRaw);

val calamaricooked = ore:CalamariCooked; calamaricooked.add(magicalcrops:magicalcrops_CookedMeat:1); ore:listAllfishcooked.addAll(ore:CalamariCooked); ore:foodCalamaricooked.addAll(ore:CalamariCooked);

mcgraj3 commented 8 years ago

Thanks for this, it's a big help. I will also add the produce seeds in Magical Crops, so that I can use Ore Dictionary Converter to process all Magical Crop seeds I find into Harvestcraft varieties (bypassing the "Magical Food" entirely).