added moss
It's just a .png file and a node added to nodes file. Rip it out if you like.
This commit is contained in:
parent
d70654d95f
commit
73870e2cdc
@ -16,4 +16,25 @@ minetest.register_node("trunks:twig", {
|
|||||||
attached_node=1
|
attached_node=1
|
||||||
},
|
},
|
||||||
sounds = default.node_sound_leaves_defaults(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_node("trunks:moss", {
|
||||||
|
description = "moss",
|
||||||
|
drawtype = "signlike",
|
||||||
|
tiles = {"trunks_moss.png"},
|
||||||
|
inventory_image = "trunks_moss.png",
|
||||||
|
wield_image = "trunks_moss.png",
|
||||||
|
paramtype = "light",
|
||||||
|
paramtype2 = "wallmounted",
|
||||||
|
walkable = false,
|
||||||
|
--climbable = true,
|
||||||
|
selection_box = {
|
||||||
|
type = "wallmounted",
|
||||||
|
--wall_top = = <default>
|
||||||
|
--wall_bottom = = <default>
|
||||||
|
--wall_side = = <default>
|
||||||
|
},
|
||||||
|
groups = {choppy=2,oddly_breakable_by_hand=3,flammable=2},
|
||||||
|
legacy_wallmounted = true,
|
||||||
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
|
})
|
||||||
|
BIN
trunks/textures/trunks_moss.png
Normal file
BIN
trunks/textures/trunks_moss.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 315 B |
Loading…
x
Reference in New Issue
Block a user