Mod

[Neoforge/Fabric] Dimensional Ores

Quick rating

[Neoforge/Fabric] Dimensional Ores

No reviews yet

Add ores to your nether and end!

No Theme
Adventure/Exploration
Nether Improvements
End Improvements
World Gen Improvements
Ores & Resources
Mod Loaders
Forge
NeoForge
Fabric
Minecraft
26.2

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Required
Server Required

About

Project Details

Type
Mod
License
All Rights Reserved
Latest Version
[neoforge-26.2] Dimensional Ores (v.1.5.0.1)
Authors
CurseForge
Modrinth

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.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

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 } } ```
v.1.4+
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

This project has no gallery images yet.

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

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

~19,000
Total Downloads
CurseForge
~13,000
Modrinth
~5,000
Last Updated
CurseForge
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched and imported data for this project from CurseForge or Modrinth. High-traffic and active projects are checked more often.
Next pipeline sync