2015-01-11 22:21:33 +01:00
|
|
|
--[[
|
2015-01-12 17:46:22 +01:00
|
|
|
More Blocks: registrations
|
2015-01-11 22:21:33 +01:00
|
|
|
|
2017-02-19 13:35:16 +01:00
|
|
|
Copyright (c) 2011-2017 Hugo Locurcio and contributors.
|
2015-01-11 22:21:33 +01:00
|
|
|
Licensed under the zlib license. See LICENSE.md for more information.
|
|
|
|
--]]
|
|
|
|
|
2014-06-27 20:14:08 +02:00
|
|
|
local default_nodes = { -- Default stairs/slabs/panels/microblocks:
|
2014-03-09 10:38:18 +01:00
|
|
|
"stone",
|
2017-02-23 17:08:22 +01:00
|
|
|
"stone_block",
|
2014-03-09 10:38:18 +01:00
|
|
|
"cobble",
|
|
|
|
"mossycobble",
|
|
|
|
"brick",
|
|
|
|
"sandstone",
|
|
|
|
"steelblock",
|
|
|
|
"goldblock",
|
|
|
|
"copperblock",
|
|
|
|
"bronzeblock",
|
|
|
|
"diamondblock",
|
|
|
|
"desert_stone",
|
2017-02-23 17:08:22 +01:00
|
|
|
"desert_stone_block",
|
2014-10-28 22:12:40 +01:00
|
|
|
"desert_cobble",
|
2015-06-17 17:18:17 +02:00
|
|
|
"meselamp",
|
2014-03-09 10:38:18 +01:00
|
|
|
"glass",
|
|
|
|
"tree",
|
|
|
|
"wood",
|
|
|
|
"jungletree",
|
|
|
|
"junglewood",
|
2015-08-24 19:37:20 +02:00
|
|
|
"pine_tree",
|
|
|
|
"pine_wood",
|
|
|
|
"acacia_tree",
|
|
|
|
"acacia_wood",
|
2016-06-10 19:47:18 +02:00
|
|
|
"aspen_tree",
|
|
|
|
"aspen_wood",
|
2014-03-09 10:38:18 +01:00
|
|
|
"obsidian",
|
2017-02-23 17:08:22 +01:00
|
|
|
"obsidian_block",
|
|
|
|
"obsidianbrick",
|
2014-03-09 10:38:18 +01:00
|
|
|
"obsidian_glass",
|
|
|
|
"stonebrick",
|
|
|
|
"desert_stonebrick",
|
|
|
|
"sandstonebrick",
|
2017-02-23 17:08:22 +01:00
|
|
|
"sandstone_block",
|
|
|
|
"coral_skeleton",
|
|
|
|
"farming:straw"
|
2014-03-09 10:38:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, name in pairs(default_nodes) do
|
2017-02-23 17:08:22 +01:00
|
|
|
local nodename = "default:"..name
|
|
|
|
local a,b = string.find(name, ":")
|
|
|
|
if b then
|
|
|
|
nodename = name
|
|
|
|
name = string.sub(name, b+1)
|
|
|
|
end
|
2014-03-09 10:38:18 +01:00
|
|
|
local ndef = minetest.registered_nodes[nodename]
|
2015-02-11 17:59:28 +01:00
|
|
|
if ndef then
|
|
|
|
local drop
|
|
|
|
if type(ndef.drop) == "string" then
|
2017-02-23 17:08:22 +01:00
|
|
|
drop = ndef.drop:sub((b or 8)+1)
|
2015-02-11 17:59:28 +01:00
|
|
|
end
|
2016-02-19 22:31:12 +01:00
|
|
|
|
|
|
|
local tiles = ndef.tiles
|
|
|
|
if #ndef.tiles > 1 and ndef.drawtype:find("glass") then
|
|
|
|
tiles = { ndef.tiles[1] }
|
|
|
|
end
|
|
|
|
|
2015-02-11 17:59:28 +01:00
|
|
|
stairsplus:register_all("moreblocks", name, nodename, {
|
|
|
|
description = ndef.description,
|
|
|
|
drop = drop,
|
2015-11-01 17:54:29 +01:00
|
|
|
groups = ndef.groups,
|
2015-02-11 17:59:28 +01:00
|
|
|
sounds = ndef.sounds,
|
2016-02-19 22:31:12 +01:00
|
|
|
tiles = tiles,
|
2015-02-11 17:59:28 +01:00
|
|
|
sunlight_propagates = true,
|
2015-07-05 10:15:25 +02:00
|
|
|
light_source = ndef.light_source
|
2015-02-11 17:59:28 +01:00
|
|
|
})
|
2014-05-10 20:35:40 +02:00
|
|
|
end
|
2014-03-09 10:38:18 +01:00
|
|
|
end
|