
2.4K
2
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 } } } ```Совместимость
Создатели
Детали
Лицензия:LicenseRef-All-Rights-Reserved
Опубликован:2 месяца назад
Обновлён:1 месяц назад