aboutsummaryrefslogtreecommitdiff
path: root/misc_nodes.lua
diff options
context:
space:
mode:
authororwell96 <mono96.mml@gmail.com>2016-12-20 14:17:39 +0100
committerorwell96 <mono96.mml@gmail.com>2016-12-20 14:17:39 +0100
commitf806ed9eee8c13eb0b4868641311d25257c63f46 (patch)
tree0657366d21caf17881266054baa1dfae2365b9d8 /misc_nodes.lua
parent05ce694decc0653997f45fa4f9a24b40057dbd01 (diff)
downloadadvtrains-f806ed9eee8c13eb0b4868641311d25257c63f46.tar.gz
advtrains-f806ed9eee8c13eb0b4868641311d25257c63f46.tar.bz2
advtrains-f806ed9eee8c13eb0b4868641311d25257c63f46.zip
Turning mod into a modpack and separating the trains from the core mod
Diffstat (limited to 'misc_nodes.lua')
-rw-r--r--misc_nodes.lua67
1 files changed, 0 insertions, 67 deletions
diff --git a/misc_nodes.lua b/misc_nodes.lua
deleted file mode 100644
index 93829f0..0000000
--- a/misc_nodes.lua
+++ /dev/null
@@ -1,67 +0,0 @@
---all nodes that do not fit in any other category
-
-function advtrains.register_platform(preset)
- local ndef=minetest.registered_nodes[preset]
- if not ndef then
- minetest.log("warning", "[advtrains] register_platform couldn't find preset node "..preset)
- return
- end
- local btex=ndef.tiles
- if type(btex)=="table" then
- btex=btex[1]
- end
- local desc=ndef.description or ""
- local nodename=string.match(preset, ":(.+)$")
- minetest.register_node("advtrains:platform_low_"..nodename, {
- description = desc.." Platform (low)",
- tiles = {btex.."^advtrains_platform.png", btex, btex, btex, btex, btex},
- groups = {cracky = 1, not_blocking_trains = 1, platform=1},
- sounds = default.node_sound_stone_defaults(),
- drawtype = "nodebox",
- node_box = {
- type = "fixed",
- fixed = {
- {-0.5, -0.1, -0.1, 0.5, 0 , 0.5},
- {-0.5, -0.5, 0 , 0.5, -0.1, 0.5}
- },
- },
- paramtype2="facedir",
- paramtype = "light",
- sunlight_propagates = true,
- })
- minetest.register_node("advtrains:platform_high_"..nodename, {
- description = desc.." Platform (high)",
- tiles = {btex.."^advtrains_platform.png", btex, btex, btex, btex, btex},
- groups = {cracky = 1, not_blocking_trains = 1, platform=2},
- sounds = default.node_sound_stone_defaults(),
- drawtype = "nodebox",
- node_box = {
- type = "fixed",
- fixed = {
- {-0.5, 0.3, -0.1, 0.5, 0.5, 0.5},
- {-0.5, -0.5, 0 , 0.5, 0.3, 0.5}
- },
- },
- paramtype2="facedir",
- paramtype = "light",
- sunlight_propagates = true,
- })
- minetest.register_craft({
- type="shapeless",
- output = "advtrains:platform_high_"..nodename.." 4",
- recipe = {
- "dye:yellow", preset, preset
- },
- })
- minetest.register_craft({
- type="shapeless",
- output = "advtrains:platform_low_"..nodename.." 4",
- recipe = {
- "dye:yellow", preset
- },
- })
-end
-
-
-advtrains.register_platform("default:stonebrick")
-advtrains.register_platform("default:sandstonebrick")