made the mantle have more lava

This commit is contained in:
Red_King_Cyclops 2019-06-23 15:05:28 +00:00
parent 01447fa9d5
commit 7bd88421ef
1 changed files with 23 additions and 0 deletions

View File

@ -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,
})