f-rose-n rose XD

This commit is contained in:
Toby plowy 2017-09-20 12:49:21 +02:00
parent d3756cb474
commit 5ab826202a
3 changed files with 19 additions and 0 deletions

View File

@ -25,6 +25,7 @@ local flowers = {
{"junglesapling", "default:junglesapling", "Jungle Sapling"},
{"pine_sapling", "default:pine_sapling", "Pine Sapling"},
{"junglegrass", "default:junglegrass", "junglegrass"},
{"frozen_rose", "mapgen:frozen_rose", "Frozen Rose"},
}

View File

@ -919,6 +919,24 @@ minetest.register_node("mapgen:flame_lily", {
walkable = false,
})
minetest.register_node("mapgen:frozen_rose", {
description = "Frozen Rose",
drawtype = "plantlike",
tiles = {"mapgen_frozen_rose.png"},
paramtype = "light",
is_ground_content = false,
buildable_to = true,
sunlight_propagates = true,
inventory_image = "mapgen_frozen_rose.png",
groups = {snappy=3, flammable=1, attatched_node=1, flora=1},
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "fixed",
fixed = {-0.3, -0.5, -0.3, 0.3, 0, 0.3}
},
walkable = false,
})
minetest.register_node("mapgen:jungle_grass_1", {
description = "Jungle Grass",
drawtype = "plantlike",

Binary file not shown.

After

Width:  |  Height:  |  Size: 418 B