forked from mtcontrib/moretrees
added wood planks for fir trees.
This commit is contained in:
parent
44a79f96a2
commit
6dc817acb0
@ -81,14 +81,14 @@ minetest.register_craft({
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "default:wood 4",
|
output = "moretrees:fir_planks 4",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"moretrees:fir_trunk"}
|
{"moretrees:fir_trunk"}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "default:wood 4",
|
output = "moretrees:fir_planks 4",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"moretrees:fir_trunk_sideways"}
|
{"moretrees:fir_trunk_sideways"}
|
||||||
}
|
}
|
||||||
|
@ -251,6 +251,14 @@ minetest.register_node("moretrees:fir_trunk_sideways", {
|
|||||||
sounds = default.node_sound_wood_defaults()
|
sounds = default.node_sound_wood_defaults()
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_node("moretrees:fir_planks", {
|
||||||
|
description = "Fir Planks",
|
||||||
|
tiles = {
|
||||||
|
"moretrees_fir_wood.png",
|
||||||
|
},
|
||||||
|
groups = {wood=1,snappy=2,dig_immediate=3,flammable=2},
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_node("moretrees:fir_leaves", {
|
minetest.register_node("moretrees:fir_leaves", {
|
||||||
drawtype = "allfaces_optional",
|
drawtype = "allfaces_optional",
|
||||||
description = "Fir Leaves",
|
description = "Fir Leaves",
|
||||||
|
BIN
textures/moretrees_fir_wood.png
Normal file
BIN
textures/moretrees_fir_wood.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 775 B |
Loading…
Reference in New Issue
Block a user