Mod
[Neoforge/Fabric] Dimensional Ores
No reviews yet
Add ores to your nether and end!
Does not follow a specific thematic focus apart from vanilla Minecraft.
Includes a large focus on traversing worlds with enhanced world generation, structures, dungeons, and more for players to find unique loot.
Contains enhancements to the Nether dimension, expanding on existing features or adding entirely new ones.
Contains enhancements to the End dimension, expanding on existing features or adding entirely new ones.
General improvements to world generation, such as bug fixes, aesthetic overhauls, or misc additions.
Adds new ores or other raw resources.
Forge is a popular mod loader for versions 1.1+ of Minecraft.
Neoforge is a fork of the Minecraft Forge available for versions 1.20.1+ of Minecraft. Many Forge mods are compatible with Neoforge and vice versa.
Fabric is a mod loader for versions 1.14+ of Minecraft, particularly popular for client side and optimization mods.
Community voices
Reviews
Click once to include, again to exclude, again to clear
No reviews yet. Be the first to review this project!
Get it on
Available Platforms
Compatibility
Supported Environments
About
Project Details
For authors
Embed Badge
If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.
Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.
Identifiers
Platform IDs
About
Description
Dimensional Ores
Fabric version here (since v1.3 included and fabric version)
Add ores to your nether and end!
Will add ores from overworld to nether and to the end. there is integration with some mods (in the future there will be more mods, and more ores). An alternative to EndOres fashion.
The description is undergoing big changes! It will be more detailed soon.. Maybe
Configuration
Since v1.3 you can enable or disable ore generation in config
Dimensional Ores
Fabric version here (since v1.3 included and fabric version)
Add ores to your nether and end!
Will add ores from overworld to nether and to the end. there is integration with some mods (in the future there will be more mods, and more ores). An alternative to EndOres fashion.
The description is undergoing big changes! It will be more detailed soon.. Maybe
Configuration
Since v1.3 you can enable or disable ore generation in config:
v1.3:
Config v.1.3
```json { // Config supports singleline /* And multiline/inline comments */ "generate_nether_ores": true, // Enables/disables ore generation in The Nether. If false, no ore will be generated. "generate_nether_coal": true, // Enables/disables coal generation in The Nether "generate_nether_copper": true, // Enables/disables copper generation in The Nether "generate_nether_iron": true, // Enables/disables iron generation in The Nether "generate_nether_lapis": true, // Enables/disables lapis lazuli generation in The Nether "generate_nether_diamond": true, // Enables/disables diamond generation in The Nether "generate_nether_emerald": true, // Enables/disables emerald generation in The Nether "generate_nether_redstone": true, // Enables/disables redstone generation in The Nether // Overworld Ores "generate_overworld_ores": true, // Enables/disables ore generation in Overworld. If false, no ore will be generated. "generate_quartz": true, // Enables/disables quarz generation in Overworld // End Ores "generate_end_ores": true, // Enables/disables ore generation in The End. If false, no ore will be generated. "generate_end_quartz": true, // Enables/disables quartz generation in The End "generate_end_coal": true, // Enables/disables coal generation in The End "generate_end_copper": true, // Enables/disables copper generation in The End "generate_end_iron": true, // Enables/disables iron generation in The End "generate_end_gold": true, // Enables/disables gold generation in The End "generate_end_lapis": true, // Enables/disables lapis lazuli generation in The End "generate_end_diamond": true, // Enables/disables diamond generation in The End "generate_end_emerald": true, // Enables/disables emerald generation in The End "generate_end_redstone": true // Enables/disables redstone generation in The End } ```v1.3.1-1.4.0:
Config from v.1.3.1 to v.1.4.0
```json { // Configures ore generation in The Nether "nether_ores": { /* * Enables/disables ore generation in The Nether. * If false, no ore will be generated. */ "enabled": true, // Enables/disables Coal generation in The Nether. "coal": true, // Enables/disables Copper generation in The Nether. "copper": true, // Enables/disables Iron generation in The Nether. "iron": true, // Enables/disables Lapis Lazuli generation in The Nether. "lapis": true, // Enables/disables Diamond generation in The Nether. "diamond": true, // Enables/disables Emerald generation in The Nether. "emerald": true, // Enables/disables Redstone generation in The Nether. "redstone": true }, // Configures ore generation in Overworld "overworld_ores": { /* * Enables/disables ore generation in Overworld. * If false, no ore will be generated. */ "enabled": true, // Enables/disables Quartz generation in Overworld. "quartz": true }, // Configures ore generation in The End "end_ores": { /* * Enables/disables ore generation in The End. * If false, no ore will be generated. */ "enabled": true, // Enables/disables Quartz generation in The End. "quartz": true, // Enables/disables Coal generation in The End. "coal": true, // Enables/disables Copper generation in The End. "copper": true, // Enables/disables Iron generation in The End. "iron": true, // Enables/disables Gold generation in The End. "gold": true, // Enables/disables Lapis Lazuli generation in The End. "lapis": true, // Enables/disables Diamond generation in The End. "diamond": true, // Enables/disables Emerald generation in The End. "emerald": true, // Enables/disables Redstone generation in The End. "redstone": true } } ```Config after v.1.4.0 and above:
```json { // Configures ore generation in The Nether "nether_ores": { /* * Enables/disables ore generation in The Nether. * If false, no ore will be generated. */ "enabled": true, /* * Settings of the Coal generation in The Nether. * Default values: * size = 32 * count = 20 * min_height = -64 * max_height = 480 */ "coal": { "enabled": true, "size": 32, "count": 20, "min_height": -64, "max_height": 480 }, /* * Settings of the Copper generation in The Nether. * Default values: * size = 20 * count = 16 * min_height = -64 * max_height = 480 */ "copper": { "enabled": true, "size": 20, "count": 16, "min_height": -64, "max_height": 480 }, /* * Settings of the Iron generation in The Nether. * Default values: * size = 18 * count = 10 * min_height = -64 * max_height = 480 */ "iron": { "enabled": true, "size": 18, "count": 10, "min_height": -64, "max_height": 480 }, /* * Settings of the Lapis Lazuli generation in The Nether. * Default values: * size = 14 * count = 4 * min_height = -64 * max_height = 480 */ "lapis": { "enabled": true, "size": 14, "count": 4, "min_height": -64, "max_height": 480 }, /* * Settings of the Diamond generation in The Nether. * Default values: * size = 16 * count = 7 * min_height = -64 * max_height = 480 */ "diamond": { "enabled": true, "size": 16, "count": 7, "min_height": -64, "max_height": 480 }, /* * Settings of the Emerald generation in The Nether. * Default values: * size = 12 * count = 4 * min_height = -64 * max_height = 480 */ "emerald": { "enabled": true, "size": 12, "count": 4, "min_height": -64, "max_height": 480 }, /* * Settings of the Redstone generation in The Nether. * Default values: * size = 16 * count = 8 * min_height = -64 * max_height = 480 */ "redstone": { "enabled": true, "size": 16, "count": 8, "min_height": -64, "max_height": 480 } }, // Configures ore generation in Overworld "overworld_ores": { /* * Enables/disables ore generation in Overworld. * If false, no ore will be generated. */ "enabled": true, /* * Settings of the Quartz generation in Overworld. * Default values: * size = 16 * count = 8 * min_height = -64 * max_height = 480 */ "quartz": { "enabled": true, "size": 14, "count": 16, "min_height": -64, "max_height": 480 } }, // Configures ore generation in The End "end_ores": { /* * Enables/disables ore generation in The End. * If false, no ore will be generated. */ "enabled": true, /* * Settings of the Quartz generation in The End. * Default values: * size = 28 * count = 8 * min_height = -64 * max_height = 480 */ "quartz": { "enabled": true, "size": 28, "count": 8, "min_height": -64, "max_height": 480 }, /* * Settings of the Coal generation in The End. * Default values: * size = 32 * count = 7 * min_height = -64 * max_height = 480 */ "coal": { "enabled": true, "size": 32, "count": 7, "min_height": -64, "max_height": 480 }, /* * Settings of the Copper generation in The End. * Default values: * size = 20 * count = 8 * min_height = -64 * max_height = 480 */ "copper": { "enabled": true, "size": 20, "count": 8, "min_height": -64, "max_height": 480 }, /* * Settings of the Iron generation in The End. * Default values: * size = 18 * count = 5 * min_height = -64 * max_height = 480 */ "iron": { "enabled": true, "size": 18, "count": 5, "min_height": -64, "max_height": 480 }, /* * Settings of the Gold generation in The End. * Default values: * size = 18 * count = 4 * min_height = -64 * max_height = 480 */ "gold": { "enabled": true, "size": 18, "count": 4, "min_height": -64, "max_height": 480 }, /* * Settings of the Lapis Lazuli generation in The End. * Default values: * size = 14 * count = 4 * min_height = -64 * max_height = 480 */ "lapis": { "enabled": true, "size": 14, "count": 4, "min_height": -64, "max_height": 480 }, /* * Settings of the Diamond generation in The End. * Default values: * size = 16 * count = 7 * min_height = -64 * max_height = 480 */ "diamond": { "enabled": true, "size": 16, "count": 7, "min_height": -64, "max_height": 480 }, /* * Settings of the Emerald generation in The End. * Default values: * size = 12 * count = 4 * min_height = -64 * max_height = 480 */ "emerald": { "enabled": true, "size": 12, "count": 4, "min_height": -64, "max_height": 480 }, /* * Settings of the Redstone generation in The End. * Default values: * size = 16 * count = 8 * min_height = -64 * max_height = 480 */ "redstone": { "enabled": true, "size": 16, "count": 8, "min_height": -64, "max_height": 480 } } } ```Screenshots
Gallery
Versions
Files
Relations
Project Relations
More like this
Similar Mods
Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.
On ModDex
Community snapshot
By the numbers
Statistics
Want to reach Minecraft players?
We're looking for a server hosting partner to feature here and other parts of the site. Interested? Send us a message!
Get in touchGet it on
Available Platforms
On ModDex
Community snapshot
By the numbers