The OrechidIgnem package is used for adding or removing generated ores to/from the Botania Orechid Ignem Flowers.

You can call the OrechidIgnem package using mods.botania.OrechidIgnem

You can either add recipes using the returned IOreDictEntry as output parameter, or the name of said oreDictEntry as string. Note, than having two recipes with same weight will crash the game.

ZenScript
Copy
//mods.botania.OrechidIgnem.addOre(IOreDictEntry oreDict, int weight);
mods.botania.OrechidIgnem.addOre(<ore:logWood>, 500);

//mods.botania.OrechidIgnem.addOre(String oreDict, int weight);
mods.botania.OrechidIgnem.addOre("logWood", 500);

You can either remove recipes using the returned IOreDictEntry as output parameter, or the name of said oreDictEntry as string.

ZenScript
Copy
//mods.botania.OrechidIgnem.removeOre(IOreDictEntry oreDict);
mods.botania.OrechidIgnem.removeOre(<ore:oreGold>);

//mods.botania.OrechidIgnem.removeOre(String oreDict);
mods.botania.OrechidIgnem.removeOre("oreGold");