Перейти к содержимому
Mineforgian

Dimensional Ores

Add ore generation to your dimension!

Загрузки
5K
Подписчики
3
Обновлён
19 июня 2026 г.
Лицензия
All-Rights-Reserved

Опубликован 21 января 2026 г.

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 } } } ```

Ченджлог

neoforge-1.5.0+mc26.1Релиз26.1, 26.1.1, 26.1.2 · 30 мая 2026 г.

Auto upload is dead.

Added ability to create custom ores

neoforge-1.5.0+mc1.21.11Релиз1.21.11 · 30 мая 2026 г.

Auto upload is dead.

Added ability to create custom ores

neoforge-1.5.0+mc1.21.1Релиз1.21.1 · 30 мая 2026 г.

Auto upload is dead.

Added ability to create custom ores

fabric-1.5.0+mc26.1Релиз26.1, 26.1.1, 26.1.2 · 30 мая 2026 г.

Auto upload is dead.

Added ability to create custom ores

fabric-1.5.0+mc1.21.11Релиз1.21.11 · 30 мая 2026 г.

Auto upload is dead.

Added ability to create custom ores

fabric-1.5.0+mc1.21.1Релиз1.21.1 · 30 мая 2026 г.

Auto upload is dead.

Added ability to create custom ores

1.4.3Бета26.1 · 21 мая 2026 г.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, this project adheres to Semantic Versioning and to Conventional Commits.

Unreleased changes

Feature

  • datapack loader fix: crash with version error 7b36bd7
  • add interpreter from simple loot table to mc loot table 393421d
  • starting write a configurable custom ores 62e5d80
  • 26.1-snap 5 support [mr] [cf] 68bc40e
  • 26.1-snap 5 support [mr] [cf] 2494b99

Bug Fixes

Documentation

  • :robot: changelog file generated/updated 1e33ab5
  • :robot: changelog file generated/updated 92334be
  • :robot: changelog file generated/updated 0f56c85
  • :robot: changelog file generated/updated 0960cc1
  • :robot: changelog file generated/updated e539faf
  • :robot: changelog file generated/updated cf89f2d
  • :robot: changelog file generated/updated 9301623
  • :robot: changelog file generated/updated 4161a6d
  • :robot: changelog file generated/updated 6b08d10
  • :robot: changelog file generated/updated 77580d7
  • :robot: changelog file generated/updated d9f4677
  • :robot: changelog file generated/updated e504a3f
  • :robot: changelog file generated/updated ce8217f
  • :robot: changelog file generated/updated 1310867
  • :robot: changelog file generated/updated 4e2e312
  • :robot: changelog file generated/updated 42e18d7
  • :robot: changelog file generated/updated 6189ed6
  • :robot: changelog file generated/updated 70bdc33
  • :robot: changelog file generated/updated 785301c
  • :robot: changelog file generated/updated 597c170
  • :robot: changelog file generated/updated 371d20d
  • :robot: changelog file generated/updated d00fdf8
  • :robot: changelog file generated/updated febdc3f
  • :robot: changelog file generated 1e76579
  • :robot: changelog file generated ee5d9c1
  • :robot: changelog file generated 841672b
  • :robot: changelog file generated bfd7dd7
  • :robot: changelog file generated ee06659

Chore

  • [mr] republish 1.4.3 to modrinth 92d5ac3
  • [mr] republish 1.4.3 to modrinth 68548e9
  • [mr] republish 1.4.3 to modrinth be9f44f
  • [mr] [cf] Update and rename nopub to nopub 0527b0d
  • push to [mr] [cf] 652dd49
  • no 26.1 at this time [mr] [cf] 4dcde6d
  • [mr] [cf] version bump 355f76e
  • push [mr] [cf] 2577431
  • [mr] [cf] bump version 15b40e0

Other

  • Merge remote-tracking branch 'origin/stonecutter' into stonecutter db58d83
  • Merge remote-tracking branch 'origin/stonecutter' into stonecutter da93b37
  • [mr] [cf] 26.1-26.1.2 support 6ac9f4c
  • [mr] [cf] version cleanup, 1.21.11 fix 45d85f9
  • Rename gradle.properties to gradle.properties 90e571a
  • Create props 06e27c3
  • Merge branch 'stonecutter' of https://github.com/algorithmlx/dimore into stonecutter df69d3f
  • Merge remote-tracking branch 'origin/stonecutter' into stonecutter d538394
  • slakdghjklsvgjklsbdjkgbfjks e98cc8a
  • Merge remote-tracking branch 'origin/stonecutter' into stonecutter d81e36a
  • Merge remote-tracking branch 'origin/stonecutter' into stonecutter 016b0fd
  • Update publish.yml 118bd74
  • Update CHANGELOG.md 5b23778
  • Update publish.yml 429fe90
  • [mr] [cf] Name display fix dec8030
  • Merge remote-tracking branch 'origin/stonecutter' into stonecutter 4493f36
  • [mr] [cf] Name display fix a1450c0
  • ops 1085e63
  • ops f0dd20b
  • test 834bfca
  • test ac5501a

latest (2026-01-31)

Other

  • Changelog generator 2.0 bfd341b
  • Changelog generator a4952ed
  • [mr] [cf] Compilation fix 3636668
  • [mr] [cf] Fix crashes on versions 1.21.2 & above, rewrite generator. Make more configurable. 8c9fd38
  • [mr] [cf] Fix neoforge crash. Config comments fix 563345c
  • . a736025
  • [mr] [cf] compile fix 2855688
  • [mr] [cf] compile fix 7793f42
  • [mr] [cf] Update OreConfig.kt c78347a
  • Update OreConfig.kt 0ae85e6
  • [mr] [cf] Why ResourceLocation is Identifier? 809eff7
  • [mr] [cf] I forgot about the publish... 35aea3c
  • 1.21.11 support 42a0853
  • Update .gitignore accd882
  • [mr] [cf] Update config. AutoGenerate comments and restructure. 7ef6819
  • Bump License year d65b6b6
  • [mr] If it doesn't start work I will destroy everything fucking world // fix 9d9c0d6
  • [mr] If it doesn't start work I will destroy everything fucking world 41f7d06
  • [mr] Idk how to fix it.. 2b4a611
  • [mr] update gradle for debug c5237c0
  • [mr] maybe it works? 29d30de
  • [mr] Name template for modrinth & curseforge b00031d
  • Update curseforge.yml 8aab50f
  • Update modrinth.yml e60b138
  • [mr] Modrinth publish e348a49
  • [cf] Fix compiller, maybe 369140f
  • [cf] Curseforge publishing 8a7841b
  • More version support (my pc is dead) e8afa5c
  • i think it is the reason for the problem ba396bd
  • _ 6169cfb
  • ops 2a91af0
  • update .gitignore acd4d5d
  • Neoforge compile fix, reduce fabric mod weight b85ecc7
  • Delete .idea directory b1fb445
  • Full mod rewrite. Return config b13b9b9
  • 1.19.4 port 14f5f7b
  • Added deepslate & stone quartz ores a0d7972
  • Try porting to 1.19.3 2a77abc
  • Config disabled 544172b
  • all variants not works... Why? Why config loads before DeferredRegister? 872b9af
  • new broken config system b180321
  • ore fix, lol 2f9e96e
  • Simplification 0c0ba0b
  • Fixed generation. Automatic language builder 6bb8a50
  • Generation Fix and Fix excavation. Added copper ore b599dad
  • okay... 84b19d1
  • Port starting... 72ccaf0
  • 1.18.2 port afd5816
  • Merge pull request #7 from AlgorithmLX-Team/main 46aa66c
  • 1.0.0.9 update, #5(trying...) and #6 fixes 35f916a
  • Merge pull request #4 from AlgorithmLX-Team/main 69d1043
  • 1.0.0.8 update 027f2a9
  • 1.0.0.7 update a497523
  • Merge pull request #3 from AlgorithmLX-Team/main 63cecc3
  • 1.0.0.6 update 391946a
  • Update README.md 0504f79
  • Merge pull request #2 from AlgorithmLX-Team/main 9883324
  • language fix 4679aa5
  • 1.0.0.5 update a5cffe6
  • Open DimOre Source code 15cee31
  • Create README.md a6d7834
  • Initial commit 830fb6c
1.4.3Бета26.1 · 21 мая 2026 г.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, this project adheres to Semantic Versioning and to Conventional Commits.

Unreleased changes

Feature

  • datapack loader fix: crash with version error 7b36bd7
  • add interpreter from simple loot table to mc loot table 393421d
  • starting write a configurable custom ores 62e5d80
  • 26.1-snap 5 support [mr] [cf] 68bc40e
  • 26.1-snap 5 support [mr] [cf] 2494b99

Bug Fixes

Documentation

  • :robot: changelog file generated/updated 1e33ab5
  • :robot: changelog file generated/updated 92334be
  • :robot: changelog file generated/updated 0f56c85
  • :robot: changelog file generated/updated 0960cc1
  • :robot: changelog file generated/updated e539faf
  • :robot: changelog file generated/updated cf89f2d
  • :robot: changelog file generated/updated 9301623
  • :robot: changelog file generated/updated 4161a6d
  • :robot: changelog file generated/updated 6b08d10
  • :robot: changelog file generated/updated 77580d7
  • :robot: changelog file generated/updated d9f4677
  • :robot: changelog file generated/updated e504a3f
  • :robot: changelog file generated/updated ce8217f
  • :robot: changelog file generated/updated 1310867
  • :robot: changelog file generated/updated 4e2e312
  • :robot: changelog file generated/updated 42e18d7
  • :robot: changelog file generated/updated 6189ed6
  • :robot: changelog file generated/updated 70bdc33
  • :robot: changelog file generated/updated 785301c
  • :robot: changelog file generated/updated 597c170
  • :robot: changelog file generated/updated 371d20d
  • :robot: changelog file generated/updated d00fdf8
  • :robot: changelog file generated/updated febdc3f
  • :robot: changelog file generated 1e76579
  • :robot: changelog file generated ee5d9c1
  • :robot: changelog file generated 841672b
  • :robot: changelog file generated bfd7dd7
  • :robot: changelog file generated ee06659

Chore

  • [mr] republish 1.4.3 to modrinth 92d5ac3
  • [mr] republish 1.4.3 to modrinth 68548e9
  • [mr] republish 1.4.3 to modrinth be9f44f
  • [mr] [cf] Update and rename nopub to nopub 0527b0d
  • push to [mr] [cf] 652dd49
  • no 26.1 at this time [mr] [cf] 4dcde6d
  • [mr] [cf] version bump 355f76e
  • push [mr] [cf] 2577431
  • [mr] [cf] bump version 15b40e0

Other

  • Merge remote-tracking branch 'origin/stonecutter' into stonecutter db58d83
  • Merge remote-tracking branch 'origin/stonecutter' into stonecutter da93b37
  • [mr] [cf] 26.1-26.1.2 support 6ac9f4c
  • [mr] [cf] version cleanup, 1.21.11 fix 45d85f9
  • Rename gradle.properties to gradle.properties 90e571a
  • Create props 06e27c3
  • Merge branch 'stonecutter' of https://github.com/algorithmlx/dimore into stonecutter df69d3f
  • Merge remote-tracking branch 'origin/stonecutter' into stonecutter d538394
  • slakdghjklsvgjklsbdjkgbfjks e98cc8a
  • Merge remote-tracking branch 'origin/stonecutter' into stonecutter d81e36a
  • Merge remote-tracking branch 'origin/stonecutter' into stonecutter 016b0fd
  • Update publish.yml 118bd74
  • Update CHANGELOG.md 5b23778
  • Update publish.yml 429fe90
  • [mr] [cf] Name display fix dec8030
  • Merge remote-tracking branch 'origin/stonecutter' into stonecutter 4493f36
  • [mr] [cf] Name display fix a1450c0
  • ops 1085e63
  • ops f0dd20b
  • test 834bfca
  • test ac5501a

latest (2026-01-31)

Other

  • Changelog generator 2.0 bfd341b
  • Changelog generator a4952ed
  • [mr] [cf] Compilation fix 3636668
  • [mr] [cf] Fix crashes on versions 1.21.2 & above, rewrite generator. Make more configurable. 8c9fd38
  • [mr] [cf] Fix neoforge crash. Config comments fix 563345c
  • . a736025
  • [mr] [cf] compile fix 2855688
  • [mr] [cf] compile fix 7793f42
  • [mr] [cf] Update OreConfig.kt c78347a
  • Update OreConfig.kt 0ae85e6
  • [mr] [cf] Why ResourceLocation is Identifier? 809eff7
  • [mr] [cf] I forgot about the publish... 35aea3c
  • 1.21.11 support 42a0853
  • Update .gitignore accd882
  • [mr] [cf] Update config. AutoGenerate comments and restructure. 7ef6819
  • Bump License year d65b6b6
  • [mr] If it doesn't start work I will destroy everything fucking world // fix 9d9c0d6
  • [mr] If it doesn't start work I will destroy everything fucking world 41f7d06
  • [mr] Idk how to fix it.. 2b4a611
  • [mr] update gradle for debug c5237c0
  • [mr] maybe it works? 29d30de
  • [mr] Name template for modrinth & curseforge b00031d
  • Update curseforge.yml 8aab50f
  • Update modrinth.yml e60b138
  • [mr] Modrinth publish e348a49
  • [cf] Fix compiller, maybe 369140f
  • [cf] Curseforge publishing 8a7841b
  • More version support (my pc is dead) e8afa5c
  • i think it is the reason for the problem ba396bd
  • _ 6169cfb
  • ops 2a91af0
  • update .gitignore acd4d5d
  • Neoforge compile fix, reduce fabric mod weight b85ecc7
  • Delete .idea directory b1fb445
  • Full mod rewrite. Return config b13b9b9
  • 1.19.4 port 14f5f7b
  • Added deepslate & stone quartz ores a0d7972
  • Try porting to 1.19.3 2a77abc
  • Config disabled 544172b
  • all variants not works... Why? Why config loads before DeferredRegister? 872b9af
  • new broken config system b180321
  • ore fix, lol 2f9e96e
  • Simplification 0c0ba0b
  • Fixed generation. Automatic language builder 6bb8a50
  • Generation Fix and Fix excavation. Added copper ore b599dad
  • okay... 84b19d1
  • Port starting... 72ccaf0
  • 1.18.2 port afd5816
  • Merge pull request #7 from AlgorithmLX-Team/main 46aa66c
  • 1.0.0.9 update, #5(trying...) and #6 fixes 35f916a
  • Merge pull request #4 from AlgorithmLX-Team/main 69d1043
  • 1.0.0.8 update 027f2a9
  • 1.0.0.7 update a497523
  • Merge pull request #3 from AlgorithmLX-Team/main 63cecc3
  • 1.0.0.6 update 391946a
  • Update README.md 0504f79
  • Merge pull request #2 from AlgorithmLX-Team/main 9883324
  • language fix 4679aa5
  • 1.0.0.5 update a5cffe6
  • Open DimOre Source code 15cee31
  • Create README.md a6d7834
  • Initial commit 830fb6c

Комментарии

Загружаем…