This commit is contained in:
Toby plowy 2017-01-18 19:06:24 +01:00
parent b7e792a4ec
commit 73797e3d0e
4 changed files with 18 additions and 0 deletions

View File

@ -580,3 +580,21 @@ minetest.register_node("mapgen:purple_allium", {
},
walkable = false,
})
minetest.register_node("mapgen:dead_grass", {
description = "Dead Grass",
drawtype = "plantlike",
tiles = {"mapgen_dead_grass.png"},
paramtype = "light",
is_ground_content = false,
buildable_to = true,
sunlight_propagates = true,
inventory_image = "mapgen_dead_grass.png",
groups = {snappy=3, flammable=1, attatched_node=1, flora=1},
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5}
},
walkable = false,
})

Binary file not shown.

After

Width:  |  Height:  |  Size: 295 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 253 B

After

Width:  |  Height:  |  Size: 403 B

View File

Before

Width:  |  Height:  |  Size: 429 B

After

Width:  |  Height:  |  Size: 429 B