made the mantle have more lava
This commit is contained in:
parent
01447fa9d5
commit
7bd88421ef
23
mapgen.lua
23
mapgen.lua
|
@ -98,3 +98,26 @@ minetest.override_item("default:mossycobble", {tiles = {"default_ice.png"}})
|
|||
random_factor = 0.01, --1.0,
|
||||
})
|
||||
|
||||
--creates the lava on the sea floor
|
||||
minetest.register_ore({
|
||||
ore_type = "scatter",
|
||||
ore = "europa_moon:ocean_lava",
|
||||
wherein = "default:obsidian",
|
||||
clust_scarcity = 5 * 5 * 5,
|
||||
clust_num_ores = 12,
|
||||
clust_size = 3,
|
||||
y_min = -3800,
|
||||
y_max = -3600,
|
||||
})
|
||||
|
||||
--creates lava throughout the mantle
|
||||
minetest.register_ore({
|
||||
ore_type = "scatter",
|
||||
ore = "default:lava_source",
|
||||
wherein = "default:obsidian",
|
||||
clust_scarcity = 5 * 5 * 5,
|
||||
clust_num_ores = 12,
|
||||
clust_size = 3,
|
||||
y_min = -22216,
|
||||
y_max = -3801,
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue