acaciatree, pinetree nodes. bugix spawn function. biome blend

This commit is contained in:
paramat
2014-04-14 06:01:05 +01:00
parent b1f138c74c
commit 903acd2ae0
9 changed files with 56 additions and 68 deletions

View File

@ -13,13 +13,22 @@ minetest.register_node("watershed:acacialeaf", {
description = "WS Acacia Leaves",
drawtype = "allfaces_optional",
visual_scale = 1.3,
tiles = {"default_leaves.png"},
tiles = {"watershed_acacialeaf.png"},
paramtype = "light",
is_ground_content = false,
groups = {snappy=3, flammable=2, leaves=1},
sounds = default.node_sound_leaves_defaults(),
})
minetest.register_node("watershed:acaciatree", {
description = "WS Acacia Tree",
tiles = {"watershed_acaciatreetop.png", "watershed_acaciatreetop.png", "watershed_acaciatree.png"},
paramtype2 = "facedir",
groups = {tree=1,choppy=2,oddly_breakable_by_hand=1,flammable=2},
sounds = default.node_sound_wood_defaults(),
on_place = minetest.rotate_node
})
minetest.register_node("watershed:needles", {
description = "WS Pine Needles",
drawtype = "allfaces_optional",
@ -31,6 +40,15 @@ minetest.register_node("watershed:needles", {
sounds = default.node_sound_leaves_defaults(),
})
minetest.register_node("watershed:pinetree", {
description = "WS Pine Tree",
tiles = {"watershed_pinetreetop.png", "watershed_pinetreetop.png", "watershed_pinetree.png"},
paramtype2 = "facedir",
groups = {tree=1,choppy=2,oddly_breakable_by_hand=1,flammable=2},
sounds = default.node_sound_wood_defaults(),
on_place = minetest.rotate_node
})
minetest.register_node("watershed:jungleleaf", {
description = "WS Jungletree Leaves",
drawtype = "allfaces_optional",