Added chandelier and chain
This commit is contained in:
parent
fa834232b4
commit
9451e483a3
BIN
textures/castle_chandelier.png
Normal file
BIN
textures/castle_chandelier.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 360 B |
BIN
textures/castle_chandelier_chain.png
Normal file
BIN
textures/castle_chandelier_chain.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 169 B |
BIN
textures/castle_chandelier_wield.png
Normal file
BIN
textures/castle_chandelier_wield.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 316 B |
@ -313,3 +313,53 @@ minetest.register_node("castle:light2",{
|
||||
groups = {cracky=2},
|
||||
paramtype = "light",
|
||||
})
|
||||
|
||||
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},
|
||||
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user