aboutsummaryrefslogtreecommitdiff
path: root/games/devtest/mods/basetools/textures/basetools_wooddagger.png
diff options
context:
space:
mode:
authorneinwhal <fishyWET@hotmail.com>2022-02-13 01:03:11 +0000
committersfan5 <sfan5@live.de>2022-07-20 21:28:26 +0200
commitc792f3bf578e329af05fb8b7c1ed239696cf1b32 (patch)
tree71efa20fa39ee16b6055bd8892e5c5e5bc89e486 /games/devtest/mods/basetools/textures/basetools_wooddagger.png
parent3903a1b4afb31c20efa30d6702def61633a08ce3 (diff)
downloadminetest-c792f3bf578e329af05fb8b7c1ed239696cf1b32.tar.gz
minetest-c792f3bf578e329af05fb8b7c1ed239696cf1b32.tar.bz2
minetest-c792f3bf578e329af05fb8b7c1ed239696cf1b32.zip
Translated using Weblate (Chinese (Simplified))
Currently translated at 93.2% (1321 of 1416 s--all nodes that do not fit in any other category function advtrains.register_platform(modprefix,
0 files changed, 0 insertions, 0 deletions
an>"warning", " 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(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 = ndef.sounds, 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 = ndef.sounds, drawtype = "nodebox", node_box = { type = "fixed", fixed = { {-0.5, 0.3, 0, 0.5, 0.5, 0.5}, {-0.5, -0.5, 0.1 , 0.5, 0.3, 0.5} }, }, paramtype2="facedir", paramtype = "light", sunlight_propagates = true, }) local diagonalbox = { type = "fixed", fixed = { {-0.5, -0.5, 0.5, -0.25, 0.5, -0.8 }, {-0.25, -0.5, 0.5 , 0, 0.5, -0.55}, {0, -0.5, 0.5 , 0.25, 0.5, -0.3 }, {0.25 , -0.5, 0.5, 0.5, 0.5, -0.05} } } minetest.register_node(modprefix..":platform_45_"..nodename, {