mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-06-01 03:20:03 -04:00
add moreores to v7 mapgen
added moreores silver and mithril to v7 mapgen
This commit is contained in:
parent
c4f936653c
commit
e6c2f2bbeb
1 changed files with 26 additions and 0 deletions
|
@ -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({
|
||||
|
|
Loading…
Add table
Reference in a new issue