2015-01-11 22:21:33 +01:00
|
|
|
--[[
|
2015-01-12 17:46:22 +01:00
|
|
|
More Blocks: node definitions
|
2015-01-11 22:21:33 +01:00
|
|
|
|
|
|
|
Copyright (c) 2011-2015 Calinou and contributors.
|
|
|
|
Licensed under the zlib license. See LICENSE.md for more information.
|
|
|
|
--]]
|
|
|
|
|
2014-12-27 20:30:19 +01:00
|
|
|
local S = moreblocks.intllib
|
2014-03-09 10:38:18 +01:00
|
|
|
|
|
|
|
local sound_wood = default.node_sound_wood_defaults()
|
|
|
|
local sound_stone = default.node_sound_stone_defaults()
|
|
|
|
local sound_glass = default.node_sound_glass_defaults()
|
|
|
|
local sound_leaves = default.node_sound_leaves_defaults()
|
2016-12-19 13:29:17 +01:00
|
|
|
|
|
|
|
-- Don't break on 0.4.14 and earlier.
|
|
|
|
local sound_metal = (default.node_sound_metal_defaults
|
|
|
|
and default.node_sound_metal_defaults() or sound_stone)
|
2014-03-09 10:38:18 +01:00
|
|
|
|
|
|
|
local function tile_tiles(name)
|
2014-07-21 12:24:49 +02:00
|
|
|
local tex = "moreblocks_" ..name.. ".png"
|
|
|
|
return {tex, tex, tex, tex, tex.. "^[transformR90", tex.. "^[transformR90"}
|
2014-03-09 10:38:18 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
local nodes = {
|
|
|
|
["wood_tile"] = {
|
|
|
|
description = S("Wooden Tile"),
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 3},
|
2014-06-02 19:26:56 +02:00
|
|
|
tiles = {"default_wood.png^moreblocks_wood_tile.png",
|
|
|
|
"default_wood.png^moreblocks_wood_tile.png",
|
|
|
|
"default_wood.png^moreblocks_wood_tile.png",
|
|
|
|
"default_wood.png^moreblocks_wood_tile.png",
|
|
|
|
"default_wood.png^moreblocks_wood_tile.png^[transformR90",
|
|
|
|
"default_wood.png^moreblocks_wood_tile.png^[transformR90"},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_wood,
|
|
|
|
},
|
|
|
|
["wood_tile_flipped"] = {
|
|
|
|
description = S("Wooden Tile"),
|
2016-12-03 18:53:07 +01:00
|
|
|
groups = {wood = 1, snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 3},
|
2014-06-02 19:26:56 +02:00
|
|
|
tiles = {"default_wood.png^moreblocks_wood_tile.png^[transformR90",
|
|
|
|
"default_wood.png^moreblocks_wood_tile.png^[transformR90",
|
|
|
|
"default_wood.png^moreblocks_wood_tile.png^[transformR90",
|
|
|
|
"default_wood.png^moreblocks_wood_tile.png^[transformR90",
|
|
|
|
"default_wood.png^moreblocks_wood_tile.png^[transformR180",
|
|
|
|
"default_wood.png^moreblocks_wood_tile.png^[transformR180"},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_wood,
|
|
|
|
no_stairs = true,
|
|
|
|
},
|
|
|
|
["wood_tile_center"] = {
|
|
|
|
description = S("Centered Wooden Tile"),
|
2016-12-03 18:53:07 +01:00
|
|
|
groups = {wood = 1, snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 3},
|
2014-06-02 18:38:19 +02:00
|
|
|
tiles = {"default_wood.png^moreblocks_wood_tile_center.png"},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_wood,
|
|
|
|
},
|
|
|
|
["wood_tile_full"] = {
|
|
|
|
description = S("Full Wooden Tile"),
|
2016-12-03 18:53:07 +01:00
|
|
|
groups = {wood = 1, snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 3},
|
2014-03-09 10:38:18 +01:00
|
|
|
tiles = tile_tiles("wood_tile_full"),
|
|
|
|
sounds = sound_wood,
|
|
|
|
},
|
|
|
|
["wood_tile_up"] = {
|
2014-06-02 18:38:19 +02:00
|
|
|
description = S("Upwards Wooden Tile"),
|
2016-12-03 18:53:07 +01:00
|
|
|
groups = {wood = 1, snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 3},
|
2014-06-02 18:38:19 +02:00
|
|
|
tiles = {"default_wood.png^moreblocks_wood_tile_up.png"},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_wood,
|
|
|
|
no_stairs = true,
|
|
|
|
},
|
|
|
|
["wood_tile_down"] = {
|
2014-06-02 18:38:19 +02:00
|
|
|
description = S("Downwards Wooden Tile"),
|
2016-12-03 18:53:07 +01:00
|
|
|
groups = {wood = 1, snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 3},
|
2014-06-02 18:38:19 +02:00
|
|
|
tiles = {"default_wood.png^[transformR180^moreblocks_wood_tile_up.png^[transformR180"},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_wood,
|
|
|
|
no_stairs = true,
|
|
|
|
},
|
|
|
|
["wood_tile_left"] = {
|
2014-06-02 18:38:19 +02:00
|
|
|
description = S("Leftwards Wooden Tile"),
|
2016-12-03 18:53:07 +01:00
|
|
|
groups = {wood = 1, snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 3},
|
2014-06-02 18:38:19 +02:00
|
|
|
tiles = {"default_wood.png^[transformR270^moreblocks_wood_tile_up.png^[transformR270"},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_wood,
|
|
|
|
no_stairs = true,
|
|
|
|
},
|
|
|
|
["wood_tile_right"] = {
|
2014-06-02 18:38:19 +02:00
|
|
|
description = S("Rightwards Wooden Tile"),
|
2016-12-03 18:53:07 +01:00
|
|
|
groups = {wood = 1, snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 3},
|
2014-06-02 18:38:19 +02:00
|
|
|
tiles = {"default_wood.png^[transformR90^moreblocks_wood_tile_up.png^[transformR90"},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_wood,
|
|
|
|
no_stairs = true,
|
|
|
|
},
|
|
|
|
["circle_stone_bricks"] = {
|
|
|
|
description = S("Circle Stone Bricks"),
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {cracky = 3},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_stone,
|
|
|
|
},
|
2014-06-27 20:14:08 +02:00
|
|
|
["grey_bricks"] = {
|
|
|
|
description = S("Stone Bricks"),
|
|
|
|
groups = {cracky = 3},
|
|
|
|
sounds = sound_stone,
|
|
|
|
},
|
2014-03-09 10:38:18 +01:00
|
|
|
["coal_stone_bricks"] = {
|
|
|
|
description = S("Coal Stone Bricks"),
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {cracky = 3},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_stone,
|
|
|
|
},
|
|
|
|
["iron_stone_bricks"] = {
|
|
|
|
description = S("Iron Stone Bricks"),
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {cracky = 3},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_stone,
|
|
|
|
},
|
|
|
|
["stone_tile"] = {
|
|
|
|
description = S("Stone Tile"),
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {cracky = 3},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_stone,
|
|
|
|
},
|
|
|
|
["split_stone_tile"] = {
|
|
|
|
description = S("Split Stone Tile"),
|
|
|
|
tiles = {"moreblocks_split_stone_tile_top.png",
|
|
|
|
"moreblocks_split_stone_tile.png"},
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {cracky = 3},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_stone,
|
|
|
|
},
|
2014-06-27 20:14:08 +02:00
|
|
|
["split_stone_tile_alt"] = {
|
2014-07-20 21:07:33 +02:00
|
|
|
description = S("Checkered Stone Tile"),
|
2014-06-27 20:14:08 +02:00
|
|
|
groups = {cracky = 3},
|
|
|
|
sounds = sound_stone,
|
|
|
|
},
|
|
|
|
["tar"] = {
|
|
|
|
description = S("Tar"),
|
2015-04-18 22:54:08 +02:00
|
|
|
groups = {cracky = 2, tar_block = 1},
|
2014-06-27 20:14:08 +02:00
|
|
|
sounds = sound_stone,
|
|
|
|
},
|
2014-12-14 10:33:57 +01:00
|
|
|
["cobble_compressed"] = {
|
|
|
|
description = S("Compressed Cobblestone"),
|
|
|
|
groups = {cracky = 1},
|
|
|
|
sounds = sound_stone,
|
|
|
|
},
|
2014-03-09 10:38:18 +01:00
|
|
|
["plankstone"] = {
|
|
|
|
description = S("Plankstone"),
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {cracky = 3},
|
2014-03-09 10:38:18 +01:00
|
|
|
tiles = tile_tiles("plankstone"),
|
|
|
|
sounds = sound_stone,
|
|
|
|
},
|
|
|
|
["iron_glass"] = {
|
|
|
|
description = S("Iron Glass"),
|
2015-01-23 18:52:02 +01:00
|
|
|
drawtype = "glasslike_framed_optional",
|
2015-04-07 17:04:02 +02:00
|
|
|
--tiles = {"moreblocks_iron_glass.png", "moreblocks_iron_glass_detail.png"},
|
|
|
|
tiles = {"moreblocks_iron_glass.png"},
|
2014-03-09 10:38:18 +01:00
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_glass,
|
|
|
|
},
|
|
|
|
["coal_glass"] = {
|
|
|
|
description = S("Coal Glass"),
|
2015-01-23 18:52:02 +01:00
|
|
|
drawtype = "glasslike_framed_optional",
|
2015-04-07 17:04:02 +02:00
|
|
|
--tiles = {"moreblocks_coal_glass.png", "moreblocks_coal_glass_detail.png"},
|
|
|
|
tiles = {"moreblocks_coal_glass.png"},
|
2014-03-09 10:38:18 +01:00
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_glass,
|
|
|
|
},
|
|
|
|
["clean_glass"] = {
|
|
|
|
description = S("Clean Glass"),
|
2015-01-23 18:52:02 +01:00
|
|
|
drawtype = "glasslike_framed_optional",
|
2015-04-07 17:04:02 +02:00
|
|
|
--tiles = {"moreblocks_clean_glass.png", "moreblocks_clean_glass_detail.png"},
|
|
|
|
tiles = {"moreblocks_clean_glass.png"},
|
2014-03-09 10:38:18 +01:00
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_glass,
|
|
|
|
},
|
|
|
|
["cactus_brick"] = {
|
|
|
|
description = S("Cactus Brick"),
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {cracky = 3},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_stone,
|
|
|
|
},
|
|
|
|
["cactus_checker"] = {
|
|
|
|
description = S("Cactus Checker"),
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {cracky = 3},
|
2014-06-02 19:26:56 +02:00
|
|
|
tiles = {"default_stone.png^moreblocks_cactus_checker.png",
|
|
|
|
"default_stone.png^moreblocks_cactus_checker.png",
|
|
|
|
"default_stone.png^moreblocks_cactus_checker.png",
|
|
|
|
"default_stone.png^moreblocks_cactus_checker.png",
|
|
|
|
"default_stone.png^moreblocks_cactus_checker.png^[transformR90",
|
|
|
|
"default_stone.png^moreblocks_cactus_checker.png^[transformR90"},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_stone,
|
|
|
|
},
|
|
|
|
["empty_bookshelf"] = {
|
|
|
|
description = S("Empty Bookshelf"),
|
|
|
|
tiles = {"default_wood.png", "default_wood.png",
|
|
|
|
"moreblocks_empty_bookshelf.png"},
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {snappy = 2, choppy = 3, oddly_breakable_by_hand = 2, flammable = 3},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_wood,
|
2016-12-03 18:53:07 +01:00
|
|
|
furnace_burntime = 15,
|
2014-03-09 10:38:18 +01:00
|
|
|
no_stairs = true,
|
|
|
|
},
|
|
|
|
["coal_stone"] = {
|
|
|
|
description = S("Coal Stone"),
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {cracky = 3},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_stone,
|
|
|
|
},
|
|
|
|
["iron_stone"] = {
|
|
|
|
description = S("Iron Stone"),
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {cracky = 3},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_stone,
|
|
|
|
},
|
|
|
|
["coal_checker"] = {
|
|
|
|
description = S("Coal Checker"),
|
2014-06-02 19:26:56 +02:00
|
|
|
tiles = {"default_stone.png^moreblocks_coal_checker.png",
|
|
|
|
"default_stone.png^moreblocks_coal_checker.png",
|
|
|
|
"default_stone.png^moreblocks_coal_checker.png",
|
|
|
|
"default_stone.png^moreblocks_coal_checker.png",
|
|
|
|
"default_stone.png^moreblocks_coal_checker.png^[transformR90",
|
|
|
|
"default_stone.png^moreblocks_coal_checker.png^[transformR90"},
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {cracky = 3},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_stone,
|
|
|
|
},
|
|
|
|
["iron_checker"] = {
|
|
|
|
description = S("Iron Checker"),
|
2014-06-02 19:26:56 +02:00
|
|
|
tiles = {"default_stone.png^moreblocks_iron_checker.png",
|
|
|
|
"default_stone.png^moreblocks_iron_checker.png",
|
|
|
|
"default_stone.png^moreblocks_iron_checker.png",
|
|
|
|
"default_stone.png^moreblocks_iron_checker.png",
|
|
|
|
"default_stone.png^moreblocks_iron_checker.png^[transformR90",
|
|
|
|
"default_stone.png^moreblocks_iron_checker.png^[transformR90"},
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {cracky = 3},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_stone,
|
|
|
|
},
|
|
|
|
["trap_stone"] = {
|
|
|
|
description = S("Trap Stone"),
|
|
|
|
walkable = false,
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {cracky = 3},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_stone,
|
|
|
|
no_stairs = true,
|
|
|
|
},
|
|
|
|
["trap_glass"] = {
|
|
|
|
description = S("Trap Glass"),
|
2015-01-23 18:52:02 +01:00
|
|
|
drawtype = "glasslike_framed_optional",
|
2015-04-07 17:04:02 +02:00
|
|
|
--tiles = {"moreblocks_trap_glass.png", "default_glass_detail.png"},
|
|
|
|
tiles = {"moreblocks_trap_glass.png"},
|
2014-03-09 10:38:18 +01:00
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = false,
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_glass,
|
|
|
|
no_stairs = true,
|
|
|
|
},
|
|
|
|
["all_faces_tree"] = {
|
|
|
|
description = S("All-faces Tree"),
|
|
|
|
tiles = {"default_tree_top.png"},
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {tree = 1,snappy = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_wood,
|
|
|
|
furnace_burntime = 30,
|
|
|
|
},
|
|
|
|
["all_faces_jungle_tree"] = {
|
2014-04-30 19:50:59 +02:00
|
|
|
description = S("All-faces Jungle Tree"),
|
2014-03-09 10:38:18 +01:00
|
|
|
tiles = {"default_jungletree_top.png"},
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {tree = 1,snappy = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_wood,
|
|
|
|
furnace_burntime = 30,
|
|
|
|
},
|
|
|
|
["glow_glass"] = {
|
|
|
|
description = S("Glow Glass"),
|
2015-01-23 18:52:02 +01:00
|
|
|
drawtype = "glasslike_framed_optional",
|
2015-04-07 17:04:02 +02:00
|
|
|
--tiles = {"moreblocks_glow_glass.png", "moreblocks_glow_glass_detail.png"},
|
|
|
|
tiles = {"moreblocks_glow_glass.png"},
|
2014-03-09 10:38:18 +01:00
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
light_source = 11,
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_glass,
|
|
|
|
},
|
|
|
|
["trap_glow_glass"] = {
|
|
|
|
description = S("Trap Glow Glass"),
|
2015-01-23 18:52:02 +01:00
|
|
|
drawtype = "glasslike_framed_optional",
|
2015-04-07 17:04:02 +02:00
|
|
|
--tiles = {"moreblocks_trap_glass.png", "moreblocks_glow_glass_detail.png"},
|
|
|
|
tiles = {"moreblocks_trap_glass.png"},
|
2014-03-09 10:38:18 +01:00
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
light_source = 11,
|
|
|
|
walkable = false,
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_glass,
|
|
|
|
no_stairs = true,
|
|
|
|
},
|
|
|
|
["super_glow_glass"] = {
|
|
|
|
description = S("Super Glow Glass"),
|
2015-01-23 18:52:02 +01:00
|
|
|
drawtype = "glasslike_framed_optional",
|
2015-04-07 17:04:02 +02:00
|
|
|
--tiles = {"moreblocks_super_glow_glass.png", "moreblocks_super_glow_glass_detail.png"},
|
|
|
|
tiles = {"moreblocks_super_glow_glass.png"},
|
2014-03-09 10:38:18 +01:00
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
2016-09-19 19:09:40 +02:00
|
|
|
light_source = 14,
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_glass,
|
|
|
|
},
|
|
|
|
["trap_super_glow_glass"] = {
|
|
|
|
description = S("Trap Super Glow Glass"),
|
2015-01-23 18:52:02 +01:00
|
|
|
drawtype = "glasslike_framed_optional",
|
2015-04-07 17:04:02 +02:00
|
|
|
--tiles = {"moreblocks_trap_super_glow_glass.png", "moreblocks_super_glow_glass_detail.png"},
|
|
|
|
tiles = {"moreblocks_trap_super_glow_glass.png"},
|
2014-03-09 10:38:18 +01:00
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
2016-09-19 19:09:40 +02:00
|
|
|
light_source = 14,
|
2014-03-09 10:38:18 +01:00
|
|
|
walkable = false,
|
2014-06-02 19:30:07 +02:00
|
|
|
groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_glass,
|
|
|
|
no_stairs = true,
|
|
|
|
},
|
|
|
|
["rope"] = {
|
|
|
|
description = S("Rope"),
|
|
|
|
drawtype = "signlike",
|
|
|
|
inventory_image = "moreblocks_rope.png",
|
|
|
|
wield_image = "moreblocks_rope.png",
|
|
|
|
paramtype = "light",
|
2014-05-07 21:32:54 +02:00
|
|
|
sunlight_propagates = true,
|
2014-03-09 10:38:18 +01:00
|
|
|
paramtype2 = "wallmounted",
|
|
|
|
walkable = false,
|
|
|
|
climbable = true,
|
2014-05-07 21:32:54 +02:00
|
|
|
selection_box = {type = "wallmounted",},
|
|
|
|
groups = {snappy = 3, flammable = 2},
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = sound_leaves,
|
|
|
|
no_stairs = true,
|
|
|
|
},
|
2016-05-19 00:02:28 +02:00
|
|
|
["copperpatina"] = {
|
|
|
|
description = S("Copper Patina Block"),
|
|
|
|
groups = {cracky = 1, level = 2},
|
2016-12-03 18:53:07 +01:00
|
|
|
sounds = sound_metal,
|
2016-05-19 00:02:28 +02:00
|
|
|
},
|
2014-03-09 10:38:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
for name, def in pairs(nodes) do
|
2014-07-21 12:24:49 +02:00
|
|
|
def.tiles = def.tiles or {"moreblocks_" ..name.. ".png"}
|
|
|
|
minetest.register_node("moreblocks:" ..name, def)
|
|
|
|
minetest.register_alias(name, "moreblocks:" ..name)
|
2014-03-09 10:38:18 +01:00
|
|
|
if not def.no_stairs then
|
|
|
|
local groups = {}
|
|
|
|
for k, v in pairs(def.groups) do groups[k] = v end
|
2014-07-21 12:24:49 +02:00
|
|
|
stairsplus:register_all("moreblocks", name, "moreblocks:" ..name, {
|
2014-03-09 10:38:18 +01:00
|
|
|
description = def.description,
|
|
|
|
groups = groups,
|
|
|
|
tiles = def.tiles,
|
|
|
|
sunlight_propagates = def.sunlight_propagates,
|
|
|
|
light_source = def.light_source,
|
|
|
|
sounds = def.sounds,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
-- Items
|
|
|
|
|
|
|
|
minetest.register_craftitem("moreblocks:sweeper", {
|
|
|
|
description = S("Sweeper"),
|
|
|
|
inventory_image = "moreblocks_sweeper.png",
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craftitem("moreblocks:nothing", {
|
|
|
|
inventory_image = "invisible.png",
|
|
|
|
on_use = function() end,
|
|
|
|
})
|