123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- minetest.register_node("morelights_extras:f_block", {
- description = "Futuristic Light Block",
- tiles = {"morelights_extras_f_block.png"},
- paramtype = "light",
- light_source = LIGHT_MAX,
- groups = {cracky = 2, oddly_breakable_by_hand = 3},
- sounds = default.node_sound_glass_defaults(),
- })
- minetest.register_node("morelights_extras:dirt_with_grass", {
- description = "Grass Light",
- tiles = {"default_grass.png^morelights_extras_blocklight.png",
- "default_dirt.png", "default_dirt.png^default_grass_side.png"},
- paramtype = "light",
- light_source = 12,
- groups = {cracky = 2, oddly_breakable_by_hand = 3},
- sounds = default.node_sound_glass_defaults()
- })
- minetest.register_node("morelights_extras:stone_block", {
- description = "Stone Block Light",
- tiles = {"default_stone_block.png^morelights_extras_blocklight.png"},
- paramtype = "light",
- light_source = 12,
- groups = {cracky = 2, oddly_breakable_by_hand = 3},
- sounds = default.node_sound_glass_defaults()
- })
- minetest.register_node("morelights_extras:sandstone_block", {
- description = "Sandstone Block Light",
- tiles = {"default_sandstone_block.png^morelights_extras_blocklight.png"},
- paramtype = "light",
- light_source = 12,
- groups = {cracky = 2, oddly_breakable_by_hand = 3},
- sounds = default.node_sound_glass_defaults()
- })
- minetest.register_node("morelights_extras:diamond_block", {
- description = "Diamond Block Light",
- tiles = {"default_diamond_block.png^morelights_extras_blocklight.png"},
- paramtype = "light",
- light_source = 12,
- groups = {cracky = 2, oddly_breakable_by_hand = 3},
- sounds = default.node_sound_glass_defaults()
- })
- minetest.register_node("morelights_extras:nether_brick", {
- description = "Nether Brick Light",
- tiles = {"nether_brick.png^morelights_extras_blocklight.png"},
- paramtype = "light",
- light_source = 12,
- groups = {cracky = 2, oddly_breakable_by_hand = 3},
- sounds = default.node_sound_glass_defaults()
- })
- minetest.register_node("morelights_extras:stairlight", {
- description = "Stair Light (place on stairs)",
- drawtype = "nodebox",
- node_box = {
- type = "fixed",
- fixed = {-1/4, -13/16, -1/16, 1/4, -11/16, 0}
- },
- selection_box = {
- type = "fixed",
- fixed = {-1/4, -13/16, -1/16, 1/4, -11/16, 0}
- },
- walkable = false,
- tiles = {"morelights_metal_dark.png"},
- overlay_tiles = {"", "morelights_extras_stairlight.png",
- "", "", "morelights_extras_stairlight.png"},
- paramtype = "light",
- paramtype2 = "facedir",
- light_source = 10,
- groups = {cracky = 2, oddly_breakable_by_hand = 3, attached_node = 1},
- node_placement_prediction = "",
- sounds = default.node_sound_glass_defaults(),
- on_place = function(itemstack, placer, pointed_thing)
- local node = minetest.get_node(vector.subtract(pointed_thing.above,
- {x=0, y=1, z=0}))
- if node and node.name:match("^stairs:stair") or node.name:match('^moreblocks:stair')
- or node.name:match("^darkage:stair") or node.name:match("^bakedclay:stair") and node.param2 < 4 then
- minetest.item_place(itemstack, placer, pointed_thing, node.param2)
- end
- return itemstack
- end,
- on_rotate = function(pos, node, user, mode, new_param2)
- return false
- end,
- })
- --
- -- Craft recipes
- --
- minetest.register_craft({
- output = "morelights_extras:f_block",
- recipe = {
- {"default:mese_crystal_fragment", "default:steel_ingot", "default:mese_crystal_fragment"},
- {morelights.glass, "morelights:bulb", morelights.glass},
- {"default:mese_crystal_fragment", "default:steel_ingot", "default:mese_crystal_fragment"}
- }
- })
- minetest.register_craft({
- output = "morelights_extras:dirt_with_grass",
- recipe = {
- {"", morelights.glass, ""},
- {"", "morelights:bulb", ""},
- {"default:grass_1", "default:dirt", ""}
- }
- })
- minetest.register_craft({
- output = "morelights_extras:stone_block",
- recipe = {
- {"", morelights.glass, ""},
- {"", "morelights:bulb", ""},
- {"", "default:stone_block", ""}
- }
- })
- minetest.register_craft({
- output = "morelights_extras:sandstone_block",
- recipe = {
- {"", morelights.glass, ""},
- {"", "morelights:bulb", ""},
- {"", "default:sandstone_block", ""}
- }
- })
- minetest.register_craft({
- output = "morelights_extras:diamond_block",
- recipe = {
- {"", morelights.glass, ""},
- {"", "morelights:bulb", ""},
- {"", "default:diamondblock", ""}
- }
- })
- minetest.register_craft({
- output = "morelights_extras:nether_brick",
- recipe = {
- {"", morelights.glass, ""},
- {"", "morelights:bulb", ""},
- {"", "nether:brick", ""}
- }
- })
- minetest.register_craft({
- output = "morelights_extras:stairlight",
- recipe = {
- {"default:steel_ingot", "morelights:bulb", "default:steel_ingot"}
- }
- })
|