summaryrefslogtreecommitdiff
path: root/castle/town_item.lua
diff options
context:
space:
mode:
Diffstat (limited to 'castle/town_item.lua')
-rw-r--r--castle/town_item.lua50
1 files changed, 50 insertions, 0 deletions
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},
+
+ },
+ },
+})
+