From b1188f284d1b5c0763af82a15a31b0830d8eee4a Mon Sep 17 00:00:00 2001 From: TechRunner2 Date: Fri, 20 Jan 2017 11:08:39 -0600 Subject: [PATCH] added ambrosium torch --- nodes.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/nodes.lua b/nodes.lua index e476ba0..8ef6284 100644 --- a/nodes.lua +++ b/nodes.lua @@ -86,3 +86,15 @@ minetest.register_node("aether2_minetest:golden_oak_planks", { groups = {choppy=1, oddly_breakable_by_hand=1}, sounds = default.node_sound_wood_defaults(), }) + +minetest.register_node("aether2_minetest:ambrosium_torch", { + description = "Ambrosium Torch", + drawtype = "mesh", + mesh = "ambrosium_torch_floor.obj", + inventory_image = "ambrosium_torch.png", + wield_image - "ambrosium_torch.png", + tiles = {{ + name = "ambrosium_torch_animated.png", + animation = {type = "vertical_frames", aspect_w = 16, aspect_h = 16, length = 3.3} + }} +})