aboutsummaryrefslogtreecommitdiff
path: root/android/app/src/main/res/values
diff options
context:
space:
mode:
authorHùng Nguyễn <www.thuphan@gmail.com>2022-07-31 06:59:30 +0000
committersfan5 <sfan5@live.de>2022-07-31 19:35:57 +0200
commitccb982513abfafe7d08372c4763cb7135fe373d6 (patch)
tree68c458f2ef804530c0480db45282f91ca0d67ce9 /android/app/src/main/res/values
parentef6ca6319b5c4e3e7a63adda1305249c57ff7f03 (diff)
downloadminetest-ccb982513abfafe7d08372c4763cb7135fe373d6.tar.gz
minetest-ccb982513abfafe7d08372c4763cb7135fe373d6.tar.bz2
minetest-ccb982513abfafe7d08372c4763cb7135fe373d6.zip
Translated using Weblate (Vietnamese)
Currently translated at 41.4% (606 of 1462 strings)
Diffstat (limited to 'android/app/src/main/res/values')
0 files changed, 0 insertions, 0 deletions
class="hl opt">= "light", paramtype2 = "facedir", is_ground_content = true, groups = groups, node_box = { type = "fixed", fixed = { {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, {-0.5, 0, 0, 0.5, 0.5, 0.5}, }, }, }) minetest.register_craft({ output = 'stairs:stair_' .. subname .. ' 4', recipe = { {recipeitem, "", ""}, {recipeitem, recipeitem, ""}, {recipeitem, recipeitem, recipeitem}, }, }) end -- Node will be called stairs:slab_<subname> function stairs.register_slab(subname, recipeitem, groups, images, description) minetest.register_node(":stairs:slab_" .. subname, { description = description, drawtype = "nodebox", tiles = images, paramtype = "light", is_ground_content = true, groups = groups, node_box = { type = "fixed", fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, }, selection_box = { type = "fixed", fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, }, }) minetest.register_craft({ output = 'stairs:slab_' .. subname .. ' 3', recipe = { {recipeitem, recipeitem, recipeitem}, }, }) end -- Nodes will be called stairs:{stair,slab}_<subname> function stairs.register_stair_and_slab(subname, recipeitem, groups, images, desc_stair, desc_slab) stairs.register_stair(subname, recipeitem, groups, images, desc_stair) stairs.register_slab(subname, recipeitem, groups, images, desc_slab) end stairs.register_stair_and_slab("wood", "default:wood", {snappy=2,choppy=2,oddly_breakable_by_hand=2}, {"default_wood.png"}, "Wooden stair", "Wooden slab") stairs.register_stair_and_slab("stone", "default:stone", {cracky=3}, {"default_stone.png"}, "Stone stair", "Stone slab") stairs.register_stair_and_slab("cobble", "default:cobble", {cracky=3}, {"default_cobble.png"}, "Cobble stair", "Cobble slab")