Mystical World

Mystical World

19M Downloads

harvestcraft-compatible oredict tags

Bluberry-Kat opened this issue ยท 2 comments

commented

a short list i've compiled of oredict tags we should add for compatibility with harvestcraft:
aubergine: 'cropEggplant', 'listAllveggie'
cooked aubergine: 'foodGrilledeggplant', 'listAllveggie'(? maybe not)
raw venison: 'listAllmeatraw', 'foodVenisonraw', 'listAllvenisonraw'
cooked venison: 'listAllmeatcooked', 'foodVenisoncooked', 'listAllvenisoncooked'

yes, the capitalization is really like that. oredict tags are case sensitive so those need to be kept intact.
i recommend someone familiar with pam's double-check this list before we fully implement these.

commented

My bad for not including this in the previous release. Oops.

commented
    OreDictionary.registerOre("cropAubergine", ModItems.aubergine);
    OreDictionary.registerOre("cropEggplant", ModItems.aubergine);
    OreDictionary.registerOre("foodCalamaricooked", ModItems.cooked_squid);
    OreDictionary.registerOre("foodCalamariraw", ModItems.raw_squid);
    OreDictionary.registerOre("foodEggplant", ModItems.aubergine);
    OreDictionary.registerOre("foodGoodMeat", ModItems.raw_squid);
    OreDictionary.registerOre("foodGoodMeat", ModItems.venison);
    OreDictionary.registerOre("foodGoodMeatCooked", ModItems.cooked_squid);
    OreDictionary.registerOre("foodGoodMeatCooked", ModItems.cooked_venison);
    OreDictionary.registerOre("foodGrilledeggplant", ModItems.cooked_aubergine);
    OreDictionary.registerOre("foodNativeGameMeatCooked", ModItems.cooked_venison);
    OreDictionary.registerOre("foodProteinCooked", ModItems.cooked_squid);
    OreDictionary.registerOre("foodProteinCooked", ModItems.cooked_venison);
    OreDictionary.registerOre("foodRedMeat", ModItems.venison);
    OreDictionary.registerOre("foodRedMeatCooked", ModItems.cooked_venison);
    OreDictionary.registerOre("foodVenisoncooked", ModItems.cooked_venison);
    OreDictionary.registerOre("foodVenisonraw", ModItems.venison);
    OreDictionary.registerOre("ingredientChowderFill", ModItems.cooked_squid);
    OreDictionary.registerOre("ingredientKebabAdventure", ModItems.raw_squid);
    OreDictionary.registerOre("ingredientKebabAdventure", ModItems.venison);
    OreDictionary.registerOre("ingredientKebabMain", ModItems.aubergine);
    OreDictionary.registerOre("ingredientKebabSeafood", ModItems.cooked_squid);
    OreDictionary.registerOre("ingredientVegNugget", ModItems.aubergine);
    OreDictionary.registerOre("listAllfishcooked", ModItems.cooked_squid);
    OreDictionary.registerOre("listAllfishfresh", ModItems.raw_squid);
    OreDictionary.registerOre("listAllfishraw", ModItems.raw_squid);
    OreDictionary.registerOre("listAllmeatcooked", ModItems.cooked_venison);
    OreDictionary.registerOre("listAllmeatraw", ModItems.venison);
    OreDictionary.registerOre("listAllseed", ModItems.aubergine_seed);
    OreDictionary.registerOre("listAllveggie", ModItems.aubergine);
    OreDictionary.registerOre("listAllvenisoncooked", ModItems.cooked_venison);
    OreDictionary.registerOre("listAllvenisonraw", ModItems.venison);

This is the final list of all I added. I included Vanilla Food Pantry as well and used CraftTweaker to export the ore dictionary entries.