From 266d2912b0ceb013c043d6e3a4ef311baf040ece Mon Sep 17 00:00:00 2001 From: thunderdog1138 Date: Wed, 15 Jul 2020 16:59:49 +0000 Subject: [PATCH] Update 'mods/ethereal/wood.lua' --- mods/ethereal/wood.lua | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/mods/ethereal/wood.lua b/mods/ethereal/wood.lua index 5ee25f4d..371c5e8c 100644 --- a/mods/ethereal/wood.lua +++ b/mods/ethereal/wood.lua @@ -263,3 +263,24 @@ minetest.register_craft({ recipe = "ethereal:bamboo", burntime = 1, }) + +-- Bush stem +minetest.register_node("ethereal:bush_stem", { + description = S("Bush Stem"), + drawtype = "plantlike", + tiles = {"bush_stem.png"}, + inventory_image = "bush_stem.png", + wield_image = "bush_stem.png", + paramtype = "light", + sunlight_propagates = true, + walkable = true, + selection_box = { + type = "fixed", + fixed = {-0.3, -0.5, -0.3, 0.3, 0.5, 0.3} + }, + groups = {choppy = 3, oddly_breakable_by_hand = 1, flammable = 2},--tree = 1 + sounds = default.node_sound_leaves_defaults(), + after_dig_node = function(pos, node, metadata, digger) + default.dig_up(pos, node, digger) + end, +}) \ No newline at end of file