Orechid Endium - Botania Addon with End-Generating Functional Flower

This Botania addon introduces a specialized version of the Orechid functional flower designed specifically for the End dimension.
Important Notes
For proper functionality, you'll need to install a separate mod that adds End Stone ore variants. Orechid Endium only provides ore generation mechanics - it doesn't come with new ore types.
Recommended Compatible Mods

The mod has been extensively tested with compatibility for:
- Netherending Ores
- Quark
- Draconic Evolution
These each implement actual end ores for generation.
Ore Dictionary Support
Some mods include End-themed ores but don't properly register them in the Ore Dictionary system. Orechid Endium solves this issue with built-in support for:
- oreEndDraconium (Draconic Evolution)
- oreEndBiotite (Quark)
Configuration Options
The OrechidEndium.cfg file includes the "B:EndDimensionOnly=false" setting, allowing you to restrict flower usage exclusively to the End dimension.
CraftTweaker Integration
Configuration examples using ZenScript:
// Remove specific ores
mods.botania.OrechidEndium.removeOre(<ore:oreEndCoal>);
mods.botania.OrechidEndium.removeOre("oreEndGold");
// Clear the entire ore list
mods.botania.OrechidEndium.removeOre("*");
mods.botania.OrechidEndium.clear();
// Add ores with spawn probability weights
mods.botania.OrechidEndium.setOre("oreEndDraconium", 200);
mods.botania.OrechidEndium.setOre(<ore:oreEndIron>, 700);
mods.botania.OrechidEndium.addOre(<ore:oreEndBiotite>, 500);
mods.botania.OrechidEndium.addOre("oreEndRedstone", 450);
The /ct botorechidendium command outputs the current ore probability list to crafttweaker.log