i
This commit is contained in:
parent
b7e792a4ec
commit
73797e3d0e
@ -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,
|
||||
})
|
||||
|
BIN
mods/mapgen/textures/mapgen_dead_grass.png
Normal file
BIN
mods/mapgen/textures/mapgen_dead_grass.png
Normal file
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 |
Before Width: | Height: | Size: 429 B After Width: | Height: | Size: 429 B |
Loading…
x
Reference in New Issue
Block a user