WIP Ore update - add coal to Victoria

master
vlapsley 2017-09-06 12:57:32 +10:00
parent 5c6eb52b58
commit 29c1964d20
2 changed files with 21 additions and 8 deletions

View File

@ -55,6 +55,18 @@ minetest.register_ore({
y_max = 31000,
})
--Coal
minetest.register_ore({
ore_type = "scatter",
ore = "base:stone_with_coal",
wherein = "base:stone",
clust_scarcity = 512,
clust_num_ores = 8,
clust_size = 3,
y_min = -31,
y_max = 15,
})
--[[
Decorations

View File

@ -211,46 +211,47 @@ minetest.register_ore({
ore_type = "scatter",
ore = "base:stone_with_coal",
wherein = "base:stone",
clust_scarcity = 8 * 8 * 8,
clust_scarcity = 512,
clust_num_ores = 8,
clust_size = 3,
y_min = -31000,
y_max = 64,
y_max = -512,
})
minetest.register_ore({
ore_type = "scatter",
ore = "base:diorite_with_coal",
wherein = "base:diorite",
clust_scarcity = 8 * 8 * 8,
clust_scarcity = 512,
clust_num_ores = 8,
clust_size = 3,
y_min = -31000,
y_max = 64,
y_max = -512,
})
minetest.register_ore({
ore_type = "scatter",
ore = "base:stone_with_coal",
wherein = "base:stone",
clust_scarcity = 24 * 24 * 24,
clust_scarcity = 13824,
clust_num_ores = 27,
clust_size = 6,
y_min = -31000,
y_max = 0,
y_max = -1072,
})
minetest.register_ore({
ore_type = "scatter",
ore = "base:diorite_with_coal",
wherein = "base:diorite",
clust_scarcity = 24 * 24 * 24,
clust_scarcity = 13824,
clust_num_ores = 27,
clust_size = 6,
y_min = -31000,
y_max = 0,
y_max = -1072,
})
--Copper
minetest.register_ore({
ore_type = "scatter",