123456789101112131415161718192021222324252627282930313233343536 |
- -- UwU Generacioncita
- minetest.register_ore({
- ore_type = "scatter",
- ore = "uwu:stone_with_uwu",
- wherein = "default:stone",
- clust_scarcity = 16 * 16 * 16,
- clust_num_ores = 3,
- clust_size = 3,
- y_max = 31000,
- y_min = 1025,
- })
- minetest.register_ore({
- ore_type = "scatter",
- ore = "uwu:stone_with_uwu",
- wherein = "default:stone",
- clust_scarcity = 17 * 17 * 17,
- clust_num_ores = 3,
- clust_size = 4,
- y_max = -1000,
- y_min = -2500,
- })
- minetest.register_ore({
- ore_type = "scatter",
- ore = "uwu:stone_with_uwu",
- wherein = "default:stone",
- clust_scarcity = 15 * 15 * 15,
- clust_num_ores = 5,
- clust_size = 2,
- y_max = -2500,
- y_min = -5000,
- })
|