This commit is contained in:
Toby plowy 2017-02-25 23:19:39 +01:00
parent 08ad171a03
commit 1c5599b7e2
3 changed files with 38 additions and 1 deletions

View File

@ -194,6 +194,25 @@
persist = 0.0
},
})
minetest.register_ore({
ore_type = "blob",
ore = "mapgen:dry_dirt",
wherein = {"mapgen:savanna_stone"},
clust_scarcity = 16 * 16 * 16,
clust_size = 5,
y_min = -31000,
y_max = 31000,
noise_threshold = 0.0,
noise_params = {
offset = 0.5,
scale = 0.2,
spread = {x = 5, y = 5, z = 5},
seed = 766,
octaves = 1,
persist = 0.0
},
})
--dirt with leaves
@ -301,7 +320,7 @@
ore_type = "scatter",
ore = "mapgen:tin_ore",
wherein = "default:stone",
clust_scarcity = 9 * 9 * 9,
clust_scarcity = 30 * 30 * 30,
clust_num_ores = 12,
clust_size = 3,
y_min = -1000,
@ -1734,6 +1753,17 @@ minetest.register_decoration({
height = 1,
})
--dead grass
minetest.register_decoration({
deco_type = "simple",
place_on = {"default:dirt_with_dry_grass"},
sidelen = 6,
fill_ratio = 0.01,
biomes = {"savanna"},
decoration = "mapgen:dead_grass_1",
height = 1,
})
minetest.register_decoration({
deco_type = "simple",
place_on = {"default:dirt_with_grass"},

View File

@ -227,6 +227,13 @@ minetest.register_node("mapgen:coarse_dirt", {
sounds = default.node_sound_dirt_defaults()
})
minetest.register_node("mapgen:dry_dirt", {
description = "Dry Dirt",
tiles = {"mapgen_dry_dirt.png"},
groups = {crumbly = 1, oddly_breakable_by_hand = 1},
sounds = default.node_sound_dirt_defaults()
})
minetest.register_node("mapgen:dirt_with_junglegrass", {
description = "Dirt With Jungle Grass",
tiles = {"mapgen_jungle_grass.png", "default_dirt.png", "default_dirt.png^mapgen_jungle_grass_side.png"},

Binary file not shown.

After

Width:  |  Height:  |  Size: 837 B