First commit, received from Och_Noe

master
Gabriel Pérez-Cerezo 2018-06-10 17:42:47 +02:00
commit b3fee07af5
No known key found for this signature in database
GPG Key ID: 1112FA3B7AEFF7A2
3 changed files with 107 additions and 0 deletions

6
depends.txt Normal file
View File

@ -0,0 +1,6 @@
advtrains
default
moreblocks?
ethereal?
maple?
moreores?

101
init.lua Normal file
View File

@ -0,0 +1,101 @@
-- all nodes that do not fit in any other category
-- Och_Noe
--
local own_name = "advtrains_platform"
-- copied from advtrains and modified
-- bricks
list_default = {
"default:desert_sandstone_brick",
"default:desert_stonebrick",
"default:silver_sandstone_brick",
"default:brick",
"default:stone",
"default:sandstone",
"default:obsidian_glass" }
list_moreblocks = {
"moreblocks:cactus_brick",
"moreblocks:coal_stone_bricks",
"moreblocks:grey_bricks",
"moreblocks:iron_stone_bricks"}
-- wood
list_wood= {
"default:acacia_wood",
"default:aspen_wood",
"default:junglewood",
"default:pine_wood",
"default:wood" }
list_wood_ethereal = {
"ethereal:banana_wood",
"ethereal:birch_wood",
"ethereal:frost_wood",
"ethereal:palm_wood",
"ethereal:redwood_wood",
"ethereal:willow_wood",
"ethereal:yellow_wood" }
list_wood_maple = {
"maple:maple_wood" }
-- metal blocks
list_moreores = {
"moreores:mithril_block" }
-- wool
-- ?
for _,name in pairs(list_default) do
advtrains.register_platform(own_name,name)
end
if minetest.get_modpath("moreblocks") then
for _,name in pairs(list_moreblocks) do
advtrains.register_platform(own_name,name)
end
end
for _,name in pairs(list_wood) do
advtrains.register_platform(own_name,name)
end
if minetest.get_modpath("ethereal") then
for _,name in pairs(list_wood_ethereal) do
advtrains.register_platform(own_name,name)
end
end
if minetest.get_modpath("maple") then
for _,name in pairs(list_wood_maple) do
advtrains.register_platform(own_name,name)
end
end
if minetest.get_modpath("moreores") then
for _,name in pairs(list_moreores) do
advtrains.register_platform(own_name,name)
end
end

BIN
screenshot.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 422 KiB