2012-11-22 14:32:10 +06:00
|
|
|
ores = {}
|
2013-10-31 12:48:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "ores:peat",
|
|
|
|
wherein = "default:dirt",
|
2013-10-31 15:31:05 +00:00
|
|
|
clust_scarcity = 20*20*20,
|
2013-10-31 12:48:16 +00:00
|
|
|
clust_num_ores = 343,
|
|
|
|
clust_size = 7,
|
|
|
|
height_min = -31000,
|
2013-10-31 15:31:05 +00:00
|
|
|
height_max = 0,
|
2013-10-31 12:48:16 +00:00
|
|
|
})
|
|
|
|
|
2013-05-01 20:02:17 +06:00
|
|
|
dofile(minetest.get_modpath("ores").."/registration.lua")
|