This commit is contained in:
Toby plowy 2017-02-11 00:45:26 +01:00
parent 24a129ca18
commit d80b939031
3 changed files with 36 additions and 0 deletions

View File

@ -699,6 +699,24 @@ minetest.register_node("mapgen:dirt_with_swampgrass", {
sounds = default.node_sound_dirt_defaults()
})
minetest.register_node("mapgen:aloe_vera", {
description = "Aloe Vera",
drawtype = "plantlike",
tiles = {"mapgen_aloe_vera.png"},
paramtype = "light",
is_ground_content = false,
buildable_to = true,
sunlight_propagates = true,
inventory_image = "mapgen_aloe_vera.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,
})
minetest.register_node("mapgen:cattail", {
description = "Cattail",
drawtype = "plantlike",
@ -809,6 +827,24 @@ minetest.register_node("mapgen:purple_allium", {
walkable = false,
})
minetest.register_node("mapgen:wild_oat", {
description = "Wild Oat",
drawtype = "plantlike",
tiles = {"mapgen_wild_oat.png"},
paramtype = "light",
is_ground_content = false,
buildable_to = true,
sunlight_propagates = true,
inventory_image = "mapgen_wild_oat.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,
})
minetest.register_node("mapgen:wild_oat_dry", {
description = "Dry Wild Oat",
drawtype = "plantlike",

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 590 B