stuff
This commit is contained in:
parent
08ad171a03
commit
1c5599b7e2
@ -195,6 +195,25 @@
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
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
|
--dirt with leaves
|
||||||
|
|
||||||
--[[minetest.register_ore({
|
--[[minetest.register_ore({
|
||||||
@ -301,7 +320,7 @@
|
|||||||
ore_type = "scatter",
|
ore_type = "scatter",
|
||||||
ore = "mapgen:tin_ore",
|
ore = "mapgen:tin_ore",
|
||||||
wherein = "default:stone",
|
wherein = "default:stone",
|
||||||
clust_scarcity = 9 * 9 * 9,
|
clust_scarcity = 30 * 30 * 30,
|
||||||
clust_num_ores = 12,
|
clust_num_ores = 12,
|
||||||
clust_size = 3,
|
clust_size = 3,
|
||||||
y_min = -1000,
|
y_min = -1000,
|
||||||
@ -1734,6 +1753,17 @@ minetest.register_decoration({
|
|||||||
height = 1,
|
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({
|
minetest.register_decoration({
|
||||||
deco_type = "simple",
|
deco_type = "simple",
|
||||||
place_on = {"default:dirt_with_grass"},
|
place_on = {"default:dirt_with_grass"},
|
||||||
|
@ -227,6 +227,13 @@ minetest.register_node("mapgen:coarse_dirt", {
|
|||||||
sounds = default.node_sound_dirt_defaults()
|
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", {
|
minetest.register_node("mapgen:dirt_with_junglegrass", {
|
||||||
description = "Dirt With Jungle Grass",
|
description = "Dirt With Jungle Grass",
|
||||||
tiles = {"mapgen_jungle_grass.png", "default_dirt.png", "default_dirt.png^mapgen_jungle_grass_side.png"},
|
tiles = {"mapgen_jungle_grass.png", "default_dirt.png", "default_dirt.png^mapgen_jungle_grass_side.png"},
|
||||||
|
BIN
mods/mapgen/textures/mapgen_dry_dirt.png
Normal file
BIN
mods/mapgen/textures/mapgen_dry_dirt.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 837 B |
Loading…
x
Reference in New Issue
Block a user