From bc2b58ab8eb7593bd40abb5b6bf7ad0eded8a3d4 Mon Sep 17 00:00:00 2001 From: TenPlus1 Date: Sat, 14 Nov 2015 10:21:06 +0000 Subject: Added birch tree, tweaked mapgen and abm's --- wood.lua | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'wood.lua') diff --git a/wood.lua b/wood.lua index 3981bee..7310abe 100644 --- a/wood.lua +++ b/wood.lua @@ -237,4 +237,32 @@ minetest.register_node("ethereal:mushroom_trunk", { sounds = default.node_sound_wood_defaults(), paramtype2 = "facedir", on_place = minetest.rotate_node, +}) + +-- Birch Trunk (thanks to VanessaE for birch textures) +minetest.register_node("ethereal:birch_trunk", { + description = "Birch Trunk", + tiles = { + "moretrees_birch_trunk_top.png", + "moretrees_birch_trunk_top.png", + "moretrees_birch_trunk.png" + }, + groups = {tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2}, + sounds = default.node_sound_wood_defaults(), + paramtype2 = "facedir", + on_place = minetest.rotate_node, +}) + +-- Birch Wood +minetest.register_node("ethereal:birch_wood", { + description = "Birch Wood", + tiles = {"moretrees_birch_wood.png"}, + is_ground_content = false, + groups = {wood = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 3}, + sounds = default.node_sound_wood_defaults(), +}) + +minetest.register_craft({ + output = "ethereal:birch_wood 4", + recipe = {{"ethereal:birch_trunk"}} }) \ No newline at end of file -- cgit v1.2.3