
Not Enough God Damn Ores
This mod is an adapted version of TooManyGodDamnOres for MinecraftForge 1.9.4, enhanced with features from TooManyDanyOres. If the latter is ported to this version, it's recommended to use it instead.
Core Concept
The modification doesn't disable standard ore generation in the world but provides tools for their automatic transformation after mining. The entire system operates through configuration files and features simple setup.
How It Works
To configure a replacement, simply specify the OreDictionary name followed by the mod identifier for the replacement block. Consider this configuration example:
# Configuration file
exclusions {
S:oreCopper <
TConstruct:GravelOre
>
S:oreTin <
TConstruct:GravelOre
>
}
notenoughgoddamnores {
# Increase value if lag occurs [range: 1 ~ 1200, default: 100]
I:"Merge Items Every X Ticks"=100
}
replacements {
S:ingotBronze=techreborn
S:ingotCopper=techreborn
S:ingotLead=techreborn
S:ingotSilver=techreborn
S:ingotTin=techreborn
S:oreCopper=techreborn
S:oreLead=techreborn
S:oreSilver=techreborn
S:oreTin=techreborn
}
With this configuration, when mining a block that's specified in the settings for OreDictionary translation, it will be automatically replaced with the version from TechReborn. Additionally, if any of the ores or items listed in the configuration are present in the inventory, they will be transformed every 100 ticks.
Compatibility Features
The system works correctly with silk touch and is designed not to conflict with other mods using HarvestDropsEvent. In modern versions of TinkersConstruct, exclusions for gravel ore blocks aren't required but may be needed for other cases.
Target Audience
This tool is primarily intended for modpack creators who want to avoid complex ore generation configuration and prefer an automated solution for resource unification.