summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Pérez-Cerezo <gabriel@gpcf.eu>2018-06-10 17:42:47 +0200
committerGabriel Pérez-Cerezo <gabriel@gpcf.eu>2018-06-10 17:42:47 +0200
commitb3fee07af5fd0820fd3adb4142eb64df18bda322 (patch)
treef792781fbdd335e12d94da626d0b83a9bb98b123
downloadadvtrains_platform-b3fee07af5fd0820fd3adb4142eb64df18bda322.tar.gz
advtrains_platform-b3fee07af5fd0820fd3adb4142eb64df18bda322.tar.bz2
advtrains_platform-b3fee07af5fd0820fd3adb4142eb64df18bda322.zip
First commit, received from Och_Noe
-rw-r--r--depends.txt6
-rw-r--r--init.lua101
-rwxr-xr-xscreenshot.pngbin0 -> 432480 bytes
3 files changed, 107 insertions, 0 deletions
diff --git a/depends.txt b/depends.txt
new file mode 100644
index 0000000..90d109f
--- /dev/null
+++ b/depends.txt
@@ -0,0 +1,6 @@
+advtrains
+default
+moreblocks?
+ethereal?
+maple?
+moreores?
diff --git a/init.lua b/init.lua
new file mode 100644
index 0000000..a11f394
--- /dev/null
+++ b/init.lua
@@ -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
diff --git a/screenshot.png b/screenshot.png
new file mode 100755
index 0000000..6576bbb
--- /dev/null
+++ b/screenshot.png
Binary files differ