aboutsummaryrefslogtreecommitdiff
path: root/doc/minetest.6
diff options
context:
space:
mode:
authorJosé Henrique Luckmann <joseh.luckmann@gmail.com>2016-09-27 17:51:17 +0000
committerest31 <MTest31@outlook.com>2016-12-14 00:01:44 +0100
commit1e6130d128762b162f0869e7a4d610f0d495f8a6 (patch)
tree5606034e30e093a745e6e1cff4de596cb37832c0 /doc/minetest.6
parent7958bda9d83a826fda7f2b45a41e9f0d5863768b (diff)
downloadminetest-1e6130d128762b162f0869e7a4d610f0d495f8a6.tar.gz
minetest-1e6130d128762b162f0869e7a4d610f0d495f8a6.tar.bz2
minetest-1e6130d128762b162f0869e7a4d610f0d495f8a6.zip
Translated using Weblate (Portuguese (Brazil))
Currently translated at 84.2% (773 of 918 strings)
Diffstat (limited to 'doc/minetest.6')
0 files changed, 0 insertions, 0 deletions
a">then btex=btex[1] end local desc=ndef.description or "" local nodename=string.match(preset, ":(.+)$") minetest.register_node(modprefix .. ":platform_low_"..nodename, { description = attrans("@1 Platform (low)", desc), 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(modprefix .. ":platform_high_"..nodename, { description = attrans("@1 Platform (high)", desc), 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 = modprefix .. ":platform_high_"..nodename.." 4", recipe = { "dye:yellow", preset, preset }, }) minetest.register_craft({ type="shapeless", output = modprefix .. ":platform_low_"..nodename.." 4", recipe = { "dye:yellow", preset }, }) end advtrains.register_platform("advtrains", "default:stonebrick") advtrains.register_platform("advtrains", "default:sandstonebrick")