# Ore Replacement Chances
#
# This file is used to specify the chances of different ores being chosen for replacement
# when lava or water generates stone blocks in the world. The stone generate in the world can be replaced by any block you want as long as its in the bukkit materials list https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
#
# Format: Material_Name:Percentage
# The percentage represents the chance (in whole numbers) of the ore being chosen
# for replacement out of the total replacements when lava or water generates stone.
#
# Each line represents one ore with its corresponding replacement chance.
# Lines starting with '#' are considered comments and will be ignored by the code.
#
# Example:
# DIAMOND_ORE:5
# This means that there is a 5% chance of a diamond ore block being chosen
# when lava or water generates a stone block.
#
# The total sum of percentages should be less than or equal to 100.
# If the sum exceeds 100, the probabilities will be scaled down proportionally
# to fit within the 0-100 range.
#
# For example, if the total sum of percentages exceeds 100 as follows:
# DIAMOND_ORE:40
# COAL_ORE:60
# IRON_ORE:30
# GOLD_ORE:20
#
# The total sum is 40 + 60 + 30 + 20 = 150, which exceeds 100.
# To fit within the 0-100 range, the probabilities will be scaled down proportionally:
# DIAMOND_ORE: 40 * (100 / 150) = 26 (approximately 27)
# COAL_ORE: 60 * (100 / 150) = 40
# IRON_ORE: 30 * (100 / 150) = 20
# GOLD_ORE: 20 * (100 / 150) = 13 (approximately 13)
#
# The adjusted probabilities now add up to 26 + 40 + 20 + 13 = 99, which is within the 0-100 range.
#
#
STONE:80
COAL_ORE:3
COPPER_ORE:4
DIAMOND_ORE:1
EMERALD_ORE:1
GOLD_ORE:2
IRON_ORE:4
LAPIS_ORE:2
REDSTONE_ORE:3
#
#Example to replace stone generated with Deepslate and Deepstale ores.
#
#DEEPSLATE:80
#DEEPSLATE_COAL_ORE:3
#DEEPSLATE_COPPER_ORE:4
#DEEPSLATE_DIAMOND_ORE:1
#DEEPSLATE_EMERALD_ORE:1
#DEEPSLATE_GOLD_ORE:2
#DEEPSLATE_IRON_ORE:4
#DEEPSLATE_LAPIS_ORE:2
#DEEPSLATE_REDSTONE_ORE:3