Skip to content

Ore Configuration

Draylar edited this page Apr 14, 2021 · 1 revision

Ore Configuration with minershorizon.json

minershorizon.json has an oreConfigList array, which contains information about the ores that should be added to the Miner's Horizon dimension.

"oreConfigList": [
    {
      "block": "minecraft:coal_ore",
      "size": 17,
      "count": 30,
      "minY": 0,
      "maxY": 255
    }
]

Each OreConfig entry has the following properties:

block: str   => registry ID of the ore
size: int    => size of the ore vein
count: int   => number of times this ore vein occurs in a chunk
minY: int    => minimum y-coordinate this ore vein spawns at
maxY: int    => maximum y-coordinate this ore vein spawns at
Clone this wiki locally