f-rose-n rose XD
This commit is contained in:
parent
d3756cb474
commit
5ab826202a
@ -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"},
|
||||
|
||||
}
|
||||
|
||||
|
@ -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",
|
||||
|
BIN
mods/mapgen/textures/mapgen_frozen_rose.png
Normal file
BIN
mods/mapgen/textures/mapgen_frozen_rose.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 418 B |
Loading…
x
Reference in New Issue
Block a user