add moreores to v7 mapgen

added moreores silver and mithril to v7 mapgen
This commit is contained in:
tenplus1 2019-04-04 11:22:03 +01:00 committed by GitHub
parent c4f936653c
commit e6c2f2bbeb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -820,6 +820,32 @@ function default.register_ores()
y_min = -31000,
})
-- Silver
minetest.register_ore({
ore_type = "scatter",
ore = "default:stone_with_silver",
wherein = "default:stone",
clust_scarcity = 11*11*11,
clust_num_ores = 4,
clust_size = 11,
y_min = -31000,
y_max = -2,
})
-- Mithril
minetest.register_ore({
ore_type = "scatter",
ore = "default:stone_with_mithril",
wherein = "default:stone",
clust_scarcity = 11*11*11,
clust_num_ores = 1,
clust_size = 11,
y_min = -31000,
y_max = -512,
})
-- Mese crystal
minetest.register_ore({