From 94f81cdae1d23aaf3214bd87a56a6b6c4cb3bf06 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Tue, 17 May 2016 20:57:26 -0400 Subject: update castle, mesecons, and tpr mods --- castle/town_item.lua | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) (limited to 'castle/town_item.lua') diff --git a/castle/town_item.lua b/castle/town_item.lua index 0cf6043..0875e89 100644 --- a/castle/town_item.lua +++ b/castle/town_item.lua @@ -334,3 +334,53 @@ else default.node_sound_stone_defaults() ) end + +minetest.register_node( "castle:chandelier", { + drawtype = "plantlike", + description = "Chandelier", + paramtype = "light", + wield_image = "castle_chandelier_wield.png", + inventory_image = "castle_chandelier_wield.png", + groups = {cracky=2}, + sounds = default.node_sound_glass_defaults(), + sunlight_propagates = true, + light_source = 14, + tiles = { + { + name = "castle_chandelier.png", + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 1.0 + }, + }, + }, + selection_box = { + type = "fixed", + fixed = { + {0.35,-0.375,0.35,-0.35,0.5,-0.35}, + + }, + }, +}) + +minetest.register_node( "castle:chandelier_chain", { + drawtype = "plantlike", + description = "Chandelier Chain", + paramtype = "light", + wield_image = "castle_chandelier_chain.png", + inventory_image = "castle_chandelier_chain.png", + groups = {cracky=2}, + sounds = default.node_sound_glass_defaults(), + sunlight_propagates = true, + tiles = {"castle_chandelier_chain.png"}, + selection_box = { + type = "fixed", + fixed = { + {0.1,-0.5,0.1,-0.1,0.5,-0.1}, + + }, + }, +}) + -- cgit v1.2.3