1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-29 07:50:35 +02:00

Tweak diamond ore generation

- Trouvable à partir de -256 en petite quantité
- Trouvable à partir de -512 en quantité décente
- Trouvable à partir de -1024 en grande quantité « parfois »
- Chunk énorme de diamants réduit de moitié
This commit is contained in:
Ombridride 2014-12-15 03:24:35 +01:00
parent c0edb397e5
commit 825917ebd4

View File

@ -260,8 +260,8 @@ minetest.register_ore({
clust_scarcity = 17 * 17 * 17,
clust_num_ores = 4,
clust_size = 3,
height_min = -255,
height_max = -128,
height_min = -512,
height_max = -256,
flags = "absheight",
})
@ -273,7 +273,7 @@ minetest.register_ore({
clust_num_ores = 4,
clust_size = 3,
height_min = -30000,
height_max = -256,
height_max = -512,
flags = "absheight",
})
@ -337,10 +337,10 @@ minetest.register_ore({
ore_type = "scatter",
ore = "default:stone_with_diamond",
wherein = "default:stone",
clust_scarcity = 60 * 60 * 60,
clust_scarcity = 30 * 30 * 30,
clust_num_ores = 64,
clust_size = 5,
height_max = -5,
height_max = -1024,
height_min = -30000,
})