12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- -- internationalization boilerplate
- local MP = minetest.get_modpath(minetest.get_current_modname())
- local S, NS = dofile(MP.."/intllib.lua")
- castle_lighting = {}
- dofile(MP.."/brasier.lua")
- minetest.register_node("castle_lighting:light",{
- drawtype = "glasslike",
- description = S("Light Block"),
- sunlight_propagates = true,
- light_source = 14,
- tiles = {"castle_street_light.png"},
- groups = utility.dig_groups("glass"),
- sounds = default.node_sound_glass_defaults(),
- paramtype = "light",
- })
- minetest.register_craft({
- output = "castle_lighting:light",
- recipe = {
- {"group:stick", "default:glass", "group:stick"},
- {"default:glass", "xdecor:lantern", "default:glass"},
- {"group:stick", "default:glass", "group:stick"},
- }
- })
- minetest.register_node( "castle_lighting:chandelier", {
- drawtype = "plantlike",
- description = S("Chandelier"),
- paramtype = "light",
- wield_image = "castle_chandelier_wield.png",
- inventory_image = "castle_chandelier_wield.png",
- groups = utility.dig_groups("bigitem", {hanging_node=1}),
- 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_craft({
- output = "castle_lighting:chandelier",
- recipe = {
- {"", "", ""},
- {"", "default:steel_ingot", ""},
- {"xdecor:candle","xdecor:candle","xdecor:candle"},
- }
- })
- minetest.register_node( "castle_lighting:chandelier_chain", {
- drawtype = "plantlike",
- description = S("Chandelier Chain"),
- paramtype = "light",
- wield_image = "castle_chandelier_chain.png",
- inventory_image = "castle_chandelier_chain.png",
- groups = utility.dig_groups("bigitem", {hanging_node=1}),
- 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},
- },
- },
- })
- minetest.register_craft({
- -- Keep output amount consistent with other chains.
- output = "castle_lighting:chandelier_chain 2",
- recipe = {
- {"", "default:steel_ingot", ""},
- {"", "", ""},
- {"","default:steel_ingot",""},
- }
- })
|