experimenting with larger young trees
This commit is contained in:
parent
7f584dea85
commit
31cc722f50
@ -1,4 +1,70 @@
|
||||
abstract_youngtrees = {}
|
||||
|
||||
|
||||
|
||||
|
||||
minetest.register_node("youngtrees:bamboo", {
|
||||
description = "youngtreeBamboo",
|
||||
drawtype="nodebox",
|
||||
tiles = {"bamboo.png"},
|
||||
inventory_image = "bamboo.png",
|
||||
wield_image = "bamboo.png",
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
is_ground_content = true,
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
{-0.058251,-0.500000,-0.413681,0.066749,0.500000,-0.282500}, --NodeBox 1
|
||||
{-0.058251,-0.500000,-0.103123,0.066749,0.500000,0.038672}, --NodeBox 2
|
||||
{-0.058251,-0.500000,0.181227,0.066749,0.500000,0.342500}, --NodeBox 3
|
||||
}
|
||||
},
|
||||
groups = {snappy=3,flammable=2},
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("youngtrees:youngtree2_bottom", {
|
||||
description = "youngtree2Bottom",
|
||||
drawtype="nodebox",
|
||||
tiles = {"youngtree2trunk.png"},
|
||||
inventory_image = "youngtree2trunk.png",
|
||||
wield_image = "youngtree2trunk.png",
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
is_ground_content = true,
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
{0.375000,-0.500000,-0.500000,0.500000,0.500000,-0.375000}, --NodeBox 1
|
||||
}
|
||||
},
|
||||
groups = {snappy=3,flammable=2},
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
|
||||
minetest.register_node("youngtrees:youngtree2_middle",{
|
||||
description = "youngtree2Middle",
|
||||
drawtype="nodebox",
|
||||
tiles = {"youngtree2branch.png"},
|
||||
inventory_image = "youngtree2branch.png",
|
||||
wield_image = "youngtree2branch.png",
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
is_ground_content = true,
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
{0.125000,-0.500000,-0.500000,0.500000,-0.187500,-0.125000}, --NodeBox 1
|
||||
{-0.187500,-0.187500,-0.500000,0.500000,0.125000,0.250000}, --NodeBox 2
|
||||
{-0.500000,0.125000,-0.500000,0.500000,0.500000,0.500000}, --NodeBox 3
|
||||
}
|
||||
},
|
||||
groups = {snappy=3,flammable=2},
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("youngtrees:youngtree_top", {
|
||||
description = "youngtreeTop",
|
||||
drawtype = "plantlike",
|
||||
|
BIN
youngtrees/textures/bamboo.png
Normal file
BIN
youngtrees/textures/bamboo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 207 B |
BIN
youngtrees/textures/youngtree2branch.png
Normal file
BIN
youngtrees/textures/youngtree2branch.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 247 B |
BIN
youngtrees/textures/youngtree2trunk.png
Normal file
BIN
youngtrees/textures/youngtree2trunk.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
Loading…
x
Reference in New Issue
Block a user