forked from minetest/minetest_game
Merge remote-tracking branch 'upstream/master' into dev
This commit is contained in:
commit
7ac0cb4d00
@ -7,6 +7,7 @@ globals = {
|
||||
|
||||
read_globals = {
|
||||
"DIR_DELIM",
|
||||
"core",
|
||||
"minetest",
|
||||
"dump",
|
||||
"vector",
|
||||
|
@ -1,6 +1,6 @@
|
||||
# Minetest Game
|
||||
|
||||
[](https://content.minetest.net/packages/Minetest/minetest_game/)
|
||||
[](https://content.luanti.org/packages/Minetest/minetest_game/)
|
||||
|
||||
Minetest Game (abbreviated MTG) is a simple and peaceful sandbox game, with no
|
||||
real goals or built-in enemy mobs.
|
||||
@ -17,7 +17,7 @@ gameplay features or anything else that breaks compatibility (see
|
||||
### ContentDB
|
||||
|
||||
* Content > Browse Online Content
|
||||
* Search for "[Minetest Game](https://content.minetest.net/packages/Minetest/minetest_game/)"
|
||||
* Search for "[Minetest Game](https://content.luanti.org/packages/Minetest/minetest_game/)"
|
||||
* Click Install
|
||||
|
||||
### Manually
|
||||
@ -27,9 +27,9 @@ place it in `.../minetest/games/`
|
||||
|
||||
- GNU/Linux: If you use a system-wide installation place it in `~/.minetest/games/`.
|
||||
|
||||
The Minetest engine can be found at [GitHub](https://github.com/minetest/minetest).
|
||||
The Luanti engine can be found at [GitHub](https://github.com/minetest/minetest).
|
||||
|
||||
For further information or help, see: [Installing Mods](https://wiki.minetest.net/Installing_Mods).
|
||||
For further information or help, see: [Installing Mods](https://wiki.luanti.org/Installing_Mods).
|
||||
|
||||
## Compatibility
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
title = Notre Ami Le Cube 1.6
|
||||
author = Minetest and Sys4
|
||||
description = A basic exploration, mining, crafting, and building, sandbox game with no NPCs, monsters, or animals. Minetest Game is usually used with mods added, and many mods are available for this game. Reliably maintained by Minetest Engine core developers.
|
||||
description = A basic exploration, mining, crafting, and building, sandbox game with no NPCs, monsters, or animals. Minetest Game is usually used with mods added, and many mods are available for this game. Reliably maintained by Luanti core developers.
|
||||
min_minetest_version = 5.8
|
||||
|
26
game_api.txt
26
game_api.txt
@ -6,12 +6,12 @@ GitHub Repo: https://github.com/minetest/minetest_game
|
||||
Introduction
|
||||
------------
|
||||
|
||||
The Minetest Game game offers multiple new possibilities in addition to the Minetest engine's built-in API,
|
||||
The Minetest Game game offers multiple new possibilities in addition to the Luanti engine's built-in API,
|
||||
allowing you to add new plants to farming mod, buckets for new liquids, new stairs and custom panes.
|
||||
For information on the Minetest API, visit https://github.com/minetest/minetest/blob/master/doc/lua_api.txt
|
||||
For information on the Luanti API, visit https://github.com/minetest/minetest/blob/master/doc/lua_api.txt
|
||||
Please note:
|
||||
|
||||
* [XYZ] refers to a section the Minetest API
|
||||
* [XYZ] refers to a section the Luanti API
|
||||
* [#ABC] refers to a section in this document
|
||||
* [pos] refers to a position table `{x = -5, y = 0, z = 200}`
|
||||
|
||||
@ -341,6 +341,12 @@ walls.register(name, desc, texture, mat, sounds)
|
||||
^ mat = "default:stone". Used to auto-generate crafting recipe.
|
||||
^ sounds = sounds: see [#Default sounds]
|
||||
|
||||
All walls will be connected to any nodes with one of the following groups:
|
||||
* `wall`
|
||||
* `stone`
|
||||
* `fence`
|
||||
* `wall_connected`
|
||||
|
||||
|
||||
Farming API
|
||||
-----------
|
||||
@ -593,6 +599,18 @@ Both nodedefs and entitydefs can provide an `on_blast()` callback
|
||||
* `drops` - a list of drops, e.g. {"wool:red"}
|
||||
|
||||
|
||||
Node drops:
|
||||
|
||||
When a node is detonated it is removed according to the following rules.
|
||||
1. If `on_blast` is defined, that is called.
|
||||
2. Else if the node has group `flammable` it is replaced with a fire node.
|
||||
3. Else the dropped items are retrieved and it is replaced with air.
|
||||
|
||||
The parameter `_tnt_loss` in any item definition can be set to a number to
|
||||
effect that "one in X" of these drops will be lost during an explosion.
|
||||
For example `_tnt_loss = 2` would cause 50% of items to disappear.
|
||||
The default is to not lose any items, which is equivalent to `_tnt_loss = 0`.
|
||||
|
||||
Screwdriver API
|
||||
---------------
|
||||
|
||||
@ -1205,7 +1223,7 @@ Weather API
|
||||
-----------
|
||||
|
||||
The weather mod will constantly adjust weather effects seen by the player
|
||||
(that is: cloud parameters and shadow intensity).
|
||||
(that is: cloud parameters, shadow intensity, bloom and volumetric lighting).
|
||||
These can be influenced using this API.
|
||||
|
||||
#### `weather.get = function(player)`
|
||||
|
@ -72,7 +72,8 @@ default:torch 99,default:cobble 99
|
||||
# Helps rivers create more sound, especially on level sections.
|
||||
#river_source_sounds = false
|
||||
|
||||
# Enable cloud and shadow intensity variation by the 'weather' mod.
|
||||
# If enabled, the 'weather' mod will control cloud parameters, shadow intensity,
|
||||
# bloom and volumetric lighting.
|
||||
# Non-functional in V6 or Singlenode mapgens.
|
||||
#enable_weather = true
|
||||
|
||||
|
@ -5,7 +5,7 @@ See license.txt for license information.
|
||||
Authors of source code
|
||||
----------------------
|
||||
Originally by BlockMen (MIT)
|
||||
Various Minetest developers and contributors (MIT)
|
||||
Various Minetest Game developers and contributors (MIT)
|
||||
|
||||
Authors of media (textures)
|
||||
---------------------------
|
||||
@ -15,7 +15,7 @@ BlockMen (CC BY-SA 3.0)
|
||||
TumeniNodes (CC BY-SA 3.0)
|
||||
beds_bed_under.png
|
||||
|
||||
This mod adds a bed to Minetest which allows players to skip the night.
|
||||
This mod adds a bed which allows players to skip the night.
|
||||
To sleep, right click on the bed. If playing in singleplayer mode the night gets skipped
|
||||
immediately. If playing multiplayer you get shown how many other players are in bed too,
|
||||
if all players are sleeping the night gets skipped. The night skip can be forced if more
|
||||
|
@ -6,23 +6,36 @@ local function remove_no_destruct(pos)
|
||||
minetest.check_for_falling(pos)
|
||||
end
|
||||
|
||||
local function destruct_bed(pos, n)
|
||||
local node = minetest.get_node(pos)
|
||||
--- returns the position of the other bed half (or nil on failure)
|
||||
local function get_other_bed_pos(pos, n)
|
||||
local node = core.get_node(pos)
|
||||
local dir = core.facedir_to_dir(node.param2)
|
||||
if not dir then
|
||||
return -- There are 255 possible param2 values. Ignore bad ones.
|
||||
end
|
||||
local other
|
||||
|
||||
if n == 2 then
|
||||
local dir = minetest.facedir_to_dir(node.param2)
|
||||
other = vector.subtract(pos, dir)
|
||||
elseif n == 1 then
|
||||
local dir = minetest.facedir_to_dir(node.param2)
|
||||
other = vector.add(pos, dir)
|
||||
else
|
||||
return nil
|
||||
end
|
||||
local oname = minetest.get_node(other).name
|
||||
if minetest.get_item_group(oname, "bed") ~= 0 then
|
||||
remove_no_destruct(other)
|
||||
beds.remove_spawns_at(pos)
|
||||
beds.remove_spawns_at(other)
|
||||
|
||||
local onode = core.get_node(other)
|
||||
if onode.param2 == node.param2 and core.get_item_group(onode.name, "bed") ~= 0 then
|
||||
return other
|
||||
end
|
||||
return nil
|
||||
end
|
||||
|
||||
local function destruct_bed(pos, n)
|
||||
local other = get_other_bed_pos(pos, n)
|
||||
if other then
|
||||
remove_no_destruct(other)
|
||||
beds.remove_spawns_at(other)
|
||||
end
|
||||
beds.remove_spawns_at(pos)
|
||||
end
|
||||
|
||||
function beds.register_bed(name, def)
|
||||
@ -114,6 +127,9 @@ function beds.register_bed(name, def)
|
||||
|
||||
on_rotate = function(pos, node, user, _, new_param2)
|
||||
local dir = minetest.facedir_to_dir(node.param2)
|
||||
if not dir then
|
||||
return false
|
||||
end
|
||||
-- old position of the top node
|
||||
local p = vector.add(pos, dir)
|
||||
local node2 = minetest.get_node_or_nil(p)
|
||||
@ -157,23 +173,25 @@ function beds.register_bed(name, def)
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
is_ground_content = false,
|
||||
pointable = false,
|
||||
groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 3, bed = 2,
|
||||
not_in_creative_inventory = 1},
|
||||
sounds = def.sounds or default.node_sound_wood_defaults(),
|
||||
drop = name .. "_bottom",
|
||||
drop = "",
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = def.nodebox.top,
|
||||
},
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
-- Small selection box to allow digging stray top nodes
|
||||
fixed = {-0.3, -0.3, -0.3, 0.3, -0.1, 0.3},
|
||||
},
|
||||
on_destruct = function(pos)
|
||||
destruct_bed(pos, 2)
|
||||
end,
|
||||
can_dig = function(pos, player)
|
||||
local node = minetest.get_node(pos)
|
||||
local dir = minetest.facedir_to_dir(node.param2)
|
||||
local p = vector.add(pos, dir)
|
||||
return beds.can_dig(p)
|
||||
local other = get_other_bed_pos(pos, 2)
|
||||
return (not other) or beds.can_dig(other)
|
||||
end,
|
||||
})
|
||||
|
||||
|
@ -97,7 +97,7 @@ local function lay_down(player, pos, bed_pos, state, skip)
|
||||
end
|
||||
|
||||
-- Check if player is moving
|
||||
if vector.length(player:get_velocity()) > 0.001 then
|
||||
if vector.length(player:get_velocity()) > 0.05 then
|
||||
minetest.chat_send_player(name, S("You have to stop moving before going to bed!"))
|
||||
return false
|
||||
end
|
||||
|
@ -3,7 +3,7 @@ License of source code
|
||||
|
||||
The MIT License (MIT)
|
||||
Copyright (C) 2014-2016 BlockMen
|
||||
Copyright (C) 2014-2016 Various Minetest developers and contributors
|
||||
Copyright (C) 2014-2016 Various Minetest Game developers and contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
||||
software and associated documentation files (the "Software"), to deal in the Software
|
||||
|
10
mods/beds/locale/beds.bg.tr
Executable file
10
mods/beds/locale/beds.bg.tr
Executable file
@ -0,0 +1,10 @@
|
||||
# textdomain: beds
|
||||
Fancy Bed=Модерно легло
|
||||
Simple Bed=Обикновено легло
|
||||
This bed is already occupied!=Това легло вече е заето!
|
||||
You have to stop moving before going to bed!=За да легнете трябва да спрете да се движите!
|
||||
Good morning.=Добро утро!
|
||||
@1 of @2 players are in bed=@1 от @2 играчи са легнали
|
||||
Force night skip=Прескачане на нощта
|
||||
You can only sleep at night.=Може да спите само през нощта.
|
||||
Leave Bed=Ставане от леглото
|
10
mods/beds/locale/beds.lv.tr
Normal file
10
mods/beds/locale/beds.lv.tr
Normal file
@ -0,0 +1,10 @@
|
||||
# textdomain: beds
|
||||
Fancy Bed=Skaista gulta
|
||||
Simple Bed=Gulta
|
||||
This bed is already occupied!=Šī gulta jau ir aizņemta!
|
||||
You have to stop moving before going to bed!=Jums jāapstājas lai gulētu!
|
||||
Good morning.=Labrīt.
|
||||
@1 of @2 players are in bed=@1 no @2 spēlētājiem guļ gultās
|
||||
Force night skip=Izlaist nakti
|
||||
You can only sleep at night.=Jūs variet gulēt tikai naktī.
|
||||
Leave Bed=Celties no gultas
|
3
mods/binoculars/locale/binoculars.bg.tr
Executable file
3
mods/binoculars/locale/binoculars.bg.tr
Executable file
@ -0,0 +1,3 @@
|
||||
# textdomain: binoculars
|
||||
Binoculars=Бинокъл
|
||||
Use with 'Zoom' key=Използвайте с клавиша „Мащабиране“
|
3
mods/binoculars/locale/binoculars.lv.tr
Normal file
3
mods/binoculars/locale/binoculars.lv.tr
Normal file
@ -0,0 +1,3 @@
|
||||
# textdomain: binoculars
|
||||
Binoculars=Binoklis
|
||||
Use with 'Zoom' key=Lietojiet ar 'Pietuvināt' pogu
|
@ -5,7 +5,7 @@ See license.txt for license information.
|
||||
Authors of source code
|
||||
----------------------
|
||||
Originally by PilzAdam (MIT)
|
||||
Various Minetest developers and contributors (MIT)
|
||||
Various Minetest Game developers and contributors (MIT)
|
||||
|
||||
Authors of media (textures and model)
|
||||
-------------------------------------
|
||||
|
@ -3,7 +3,7 @@ License of source code
|
||||
|
||||
The MIT License (MIT)
|
||||
Copyright (C) 2012-2016 PilzAdam
|
||||
Copyright (C) 2012-2016 Various Minetest developers and contributors
|
||||
Copyright (C) 2012-2016 Various Minetest Game developers and contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
||||
software and associated documentation files (the "Software"), to deal in the Software
|
||||
|
4
mods/boats/locale/boats.bg.tr
Executable file
4
mods/boats/locale/boats.bg.tr
Executable file
@ -0,0 +1,4 @@
|
||||
# textdomain: boats
|
||||
Boat cruise mode on=Круизен режим включен
|
||||
Boat cruise mode off=Круизен режим изключен
|
||||
Boat=Лотка
|
4
mods/boats/locale/boats.lv.tr
Normal file
4
mods/boats/locale/boats.lv.tr
Normal file
@ -0,0 +1,4 @@
|
||||
# textdomain: boats
|
||||
Boat cruise mode on=Autopilots ieslēgts
|
||||
Boat cruise mode off=Autopilots izslēgts
|
||||
Boat=Laiva
|
@ -5,7 +5,7 @@ See license.txt for license information.
|
||||
Authors of source code
|
||||
----------------------
|
||||
Originally by PilzAdam (MIT)
|
||||
Various Minetest developers and contributors (MIT)
|
||||
Various Minetest Game developers and contributors (MIT)
|
||||
|
||||
Authors of media (textures)
|
||||
---------------------------
|
||||
|
@ -1,6 +1,6 @@
|
||||
-- bones/init.lua
|
||||
|
||||
-- Minetest 0.4 mod: bones
|
||||
-- Minetest Game mod: bones
|
||||
-- See README.txt for licensing and other information.
|
||||
|
||||
-- Load support for MT game translation.
|
||||
|
@ -3,7 +3,7 @@ License of source code
|
||||
|
||||
The MIT License (MIT)
|
||||
Copyright (C) 2012-2016 PilzAdam
|
||||
Copyright (C) 2012-2016 Various Minetest developers and contributors
|
||||
Copyright (C) 2012-2016 Various Minetest Game developers and contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
||||
software and associated documentation files (the "Software"), to deal in the Software
|
||||
|
8
mods/bones/locale/bones.bg.tr
Executable file
8
mods/bones/locale/bones.bg.tr
Executable file
@ -0,0 +1,8 @@
|
||||
# textdomain: bones
|
||||
Bones=Кости
|
||||
@1's old bones=Старите кости на @1
|
||||
@1 died at @2.=@1 са загинали в @2.
|
||||
@1 died at @2, and dropped their inventory.=@1 са загинали в @2 и са хвърлили техния инвентар.
|
||||
@1 died at @2, and bones were placed.=@1 са загинали в @2 и костите са погребани.
|
||||
@1's fresh bones=Пресните кости на @1
|
||||
@1's bones=Костите на @1
|
8
mods/bones/locale/bones.lv.tr
Normal file
8
mods/bones/locale/bones.lv.tr
Normal file
@ -0,0 +1,8 @@
|
||||
# textdomain: bones
|
||||
Bones=Kauli
|
||||
@1's old bones=@1 vecie kauli
|
||||
@1 died at @2.=@1 nomira @2.
|
||||
@1 died at @2, and dropped their inventory.=@1 nomira @2 pazaudēja inventāru.
|
||||
@1 died at @2, and bones were placed.=@1 nomira @2, un kauli nolikti.
|
||||
@1's fresh bones=@1 jaunie kauli
|
||||
@1's bones=@1 kauli
|
@ -6,7 +6,7 @@ Authors of source code
|
||||
----------------------
|
||||
Kahrl <kahrl@gmx.net> (LGPLv2.1+)
|
||||
celeron55, Perttu Ahola <celeron55@gmail.com> (LGPLv2.1+)
|
||||
Various Minetest developers and contributors (LGPLv2.1+)
|
||||
Various Minetest Game developers and contributors (LGPLv2.1+)
|
||||
|
||||
Authors of media (textures)
|
||||
---------------------------
|
||||
|
@ -1,4 +1,4 @@
|
||||
-- Minetest 0.4 mod: bucket
|
||||
-- Minetest Game mod: bucket
|
||||
-- See README.txt for licensing and other information.
|
||||
|
||||
-- Load support for MT game translation.
|
||||
|
@ -4,7 +4,7 @@ License of source code
|
||||
GNU Lesser General Public License, version 2.1
|
||||
Copyright (C) 2011-2016 Kahrl <kahrl@gmx.net>
|
||||
Copyright (C) 2011-2016 celeron55, Perttu Ahola <celeron55@gmail.com>
|
||||
Copyright (C) 2011-2016 Various Minetest developers and contributors
|
||||
Copyright (C) 2011-2016 Various Minetest Game developers and contributors
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it under the terms
|
||||
of the GNU Lesser General Public License as published by the Free Software Foundation;
|
||||
|
5
mods/bucket/locale/bucket.bg.tr
Executable file
5
mods/bucket/locale/bucket.bg.tr
Executable file
@ -0,0 +1,5 @@
|
||||
# textdomain: bucket
|
||||
Empty Bucket=Празна кофа
|
||||
Water Bucket=Кофа с вода
|
||||
River Water Bucket=Кофа с речна вода
|
||||
Lava Bucket=Кофа с лава
|
5
mods/bucket/locale/bucket.lv.tr
Normal file
5
mods/bucket/locale/bucket.lv.tr
Normal file
@ -0,0 +1,5 @@
|
||||
# textdomain: bucket
|
||||
Empty Bucket=Tukšs spainis
|
||||
Water Bucket=Spainis ar ūdeni
|
||||
River Water Bucket=Spainis ar upes ūdeni
|
||||
Lava Bucket=Spainis ar lavu
|
4
mods/butterflies/locale/butterflies.bg.tr
Executable file
4
mods/butterflies/locale/butterflies.bg.tr
Executable file
@ -0,0 +1,4 @@
|
||||
# textdomain: butterflies
|
||||
White Butterfly=Бяла пеперуда
|
||||
Red Butterfly=Червена пеперуда
|
||||
Violet Butterfly=Лилава пеперуда
|
4
mods/butterflies/locale/butterflies.lv.tr
Normal file
4
mods/butterflies/locale/butterflies.lv.tr
Normal file
@ -0,0 +1,4 @@
|
||||
# textdomain: butterflies
|
||||
White Butterfly=Balts taurenis
|
||||
Red Butterfly=Sarkans taurenis
|
||||
Violet Butterfly=Violets taurenis
|
@ -5,7 +5,7 @@ License of source code
|
||||
The MIT License (MIT)
|
||||
Copyright (C) 2012-2016 PilzAdam
|
||||
Copyright (C) 2014-2016 SmallJoker
|
||||
Copyright (C) 2012-2016 Various Minetest developers and contributors
|
||||
Copyright (C) 2012-2016 Various Minetest Game developers and contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a
|
||||
copy of this software and associated documentation files (the "Software"),
|
||||
|
6
mods/carts/locale/carts.bg.tr
Executable file
6
mods/carts/locale/carts.bg.tr
Executable file
@ -0,0 +1,6 @@
|
||||
# textdomain: carts
|
||||
Cart=Вагон
|
||||
(Sneak+Click to pick up)=(Промъкване+Click, за да вземете)
|
||||
Rail=Релса
|
||||
Powered Rail=Контактна релса
|
||||
Brake Rail=Спирачна релса
|
6
mods/carts/locale/carts.lv.tr
Normal file
6
mods/carts/locale/carts.lv.tr
Normal file
@ -0,0 +1,6 @@
|
||||
# textdomain: carts
|
||||
Cart=Vagons
|
||||
(Sneak+Click to pick up)=(Lavieties un klikšķiniet, lai paceltu)
|
||||
Rail=Sliedes
|
||||
Powered Rail=Elektrizētas sliedes
|
||||
Brake Rail=Bremžu sliedes
|
11
mods/creative/locale/creative.bg.tr
Executable file
11
mods/creative/locale/creative.bg.tr
Executable file
@ -0,0 +1,11 @@
|
||||
# textdomain: creative
|
||||
Allow player to use creative inventory=Дава възможност на играча да използва творчески инвентар
|
||||
No items to show.=Няма предмети.
|
||||
Search=Търсене
|
||||
Reset=Нулиране
|
||||
Previous page=Предишна страница
|
||||
Next page=Следваща страница
|
||||
All=Всички
|
||||
Nodes=Възли
|
||||
Tools=Инструменти
|
||||
Items=Предмети
|
11
mods/creative/locale/creative.lv.tr
Normal file
11
mods/creative/locale/creative.lv.tr
Normal file
@ -0,0 +1,11 @@
|
||||
# textdomain: creative
|
||||
Allow player to use creative inventory=Atļaut spēlētājam izmantot radošo inventāru
|
||||
No items to show.=Nav priekšmetu ko paradīt.
|
||||
Search=Meklēt
|
||||
Reset=Nodzēst
|
||||
Previous page=Iepriekšējā lappuse
|
||||
Next page=Nākošā lappuse
|
||||
All=Viss
|
||||
Nodes=Bloki
|
||||
Tools=Rīki
|
||||
Items=Priekšmeti
|
@ -5,7 +5,7 @@ See license.txt for license information.
|
||||
Authors of source code
|
||||
----------------------
|
||||
Originally by celeron55, Perttu Ahola <celeron55@gmail.com> (LGPLv2.1+)
|
||||
Various Minetest developers and contributors (LGPLv2.1+)
|
||||
Various Minetest Game developers and contributors (LGPLv2.1+)
|
||||
|
||||
The torch code was derived by sofar from the 'torches' mod by
|
||||
BlockMen (LGPLv2.1+)
|
||||
|
@ -141,6 +141,8 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
|
||||
string = formspec_string(lpp, data.page, lines, string)
|
||||
contents = formspec_read(player_name, title, string,
|
||||
text, data.page, data.page_max)
|
||||
else
|
||||
return -- malicious data
|
||||
end
|
||||
tab_number = tab
|
||||
local formspec = formspec_size .. formspec_core(tab) .. contents
|
||||
|
@ -1,4 +1,4 @@
|
||||
-- Minetest 0.4 mod: default
|
||||
-- Minetest Game mod: default
|
||||
-- See README.txt for licensing and other information.
|
||||
|
||||
-- The API documentation in here was moved into game_api.txt
|
||||
|
@ -2,9 +2,38 @@
|
||||
|
||||
local builtin_item = minetest.registered_entities["__builtin:item"]
|
||||
|
||||
-- strictly speaking none of this is part of the API, so do some checks
|
||||
-- and if it looks wrong skip the modifications
|
||||
if not builtin_item or type(builtin_item.set_item) ~= "function" or type(builtin_item.on_step) ~= "function" then
|
||||
minetest.log("warning", "Builtin item entity does not look as expected, skipping overrides.")
|
||||
return
|
||||
end
|
||||
|
||||
local smoke_particles = {
|
||||
amount = 3,
|
||||
time = 0.1,
|
||||
minpos = vector.new(-0.1, -0.1, -0.1),
|
||||
maxpos = vector.new(0.1, 0.1, 0.1),
|
||||
minvel = vector.new(0, 2.5, 0),
|
||||
maxvel = vector.new(0, 2.5, 0),
|
||||
minacc = vector.new(-0.15, -0.02, -0.15),
|
||||
maxacc = vector.new(0.15, -0.01, 0.15),
|
||||
minexptime = 4,
|
||||
maxexptime = 6,
|
||||
minsize = 5,
|
||||
maxsize = 5,
|
||||
collisiondetection = true,
|
||||
texture = {
|
||||
name = "default_item_smoke.png"
|
||||
}
|
||||
}
|
||||
if minetest.features.particle_blend_clip then
|
||||
smoke_particles.texture.blend = "clip"
|
||||
end
|
||||
|
||||
local item = {
|
||||
set_item = function(self, itemstring)
|
||||
builtin_item.set_item(self, itemstring)
|
||||
set_item = function(self, itemstring, ...)
|
||||
builtin_item.set_item(self, itemstring, ...)
|
||||
|
||||
local stack = ItemStack(itemstring)
|
||||
local itemdef = minetest.registered_items[stack:get_name()]
|
||||
@ -22,22 +51,10 @@ local item = {
|
||||
gain = 1.0,
|
||||
max_hear_distance = 8,
|
||||
}, true)
|
||||
minetest.add_particlespawner({
|
||||
amount = 3,
|
||||
time = 0.1,
|
||||
minpos = {x = p.x - 0.1, y = p.y + 0.1, z = p.z - 0.1 },
|
||||
maxpos = {x = p.x + 0.1, y = p.y + 0.2, z = p.z + 0.1 },
|
||||
minvel = {x = 0, y = 2.5, z = 0},
|
||||
maxvel = {x = 0, y = 2.5, z = 0},
|
||||
minacc = {x = -0.15, y = -0.02, z = -0.15},
|
||||
maxacc = {x = 0.15, y = -0.01, z = 0.15},
|
||||
minexptime = 4,
|
||||
maxexptime = 6,
|
||||
minsize = 5,
|
||||
maxsize = 5,
|
||||
collisiondetection = true,
|
||||
texture = "default_item_smoke.png"
|
||||
})
|
||||
local ps = table.copy(smoke_particles)
|
||||
ps.minpos = vector.add(ps.minpos, p)
|
||||
ps.maxpos = vector.add(ps.maxpos, p)
|
||||
minetest.add_particlespawner(ps)
|
||||
end,
|
||||
|
||||
on_step = function(self, dtime, ...)
|
||||
|
@ -3,7 +3,7 @@ License of source code
|
||||
|
||||
GNU Lesser General Public License, version 2.1
|
||||
Copyright (C) 2011-2018 celeron55, Perttu Ahola <celeron55@gmail.com>
|
||||
Copyright (C) 2011-2018 Various Minetest developers and contributors
|
||||
Copyright (C) 2011-2018 Various Minetest Game developers and contributors
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it under the terms
|
||||
of the GNU Lesser General Public License as published by the Free Software Foundation;
|
||||
|
215
mods/default/locale/default.bg.tr
Executable file
215
mods/default/locale/default.bg.tr
Executable file
@ -0,0 +1,215 @@
|
||||
# textdomain: default
|
||||
Locked Chest=Заключен сандък
|
||||
Locked Chest (owned by @1)=Заключен сандък (собственост на @1)
|
||||
You do not own this chest.=Не притежавате този сандък.
|
||||
a locked chest=заключен сандък
|
||||
Chest=Сандък
|
||||
Write=Четене
|
||||
Read=Писане
|
||||
Title:=Заглавие:
|
||||
Contents:=Съдържание:
|
||||
Save=Запазване
|
||||
by @1=от @1
|
||||
Page @1 of @2=Страница @1 от @2
|
||||
The book you were writing to mysteriously disappeared.=Книгата, в която пишехте мистериозно изчезна.
|
||||
"@1" by @2=„@1“ от @2
|
||||
Blueberries=Боровинки
|
||||
Book=Книга
|
||||
Book with Text=Книга с текстове
|
||||
Bronze Ingot=Бронзово кюлче
|
||||
Clay Brick=Калена тухла
|
||||
Clay Lump=Купчина глина
|
||||
Coal Lump=Купчина въглища
|
||||
Copper Ingot=Медно кюлче
|
||||
Copper Lump=Купчина мед
|
||||
Diamond=Диамант
|
||||
Flint=Кремък
|
||||
Gold Ingot=Златно кюлче
|
||||
Gold Lump=Купчина злато
|
||||
Iron Lump=Желязно кюлче
|
||||
Mese Crystal=Кристал месе
|
||||
Mese Crystal Fragment=Парче от кристал месе
|
||||
Obsidian Shard=Късче обсидиан
|
||||
Paper=Хартия
|
||||
Steel Ingot=Стоманено кюлче
|
||||
Stick=Пръчка
|
||||
Tin Ingot=Калаено кюлче
|
||||
Tin Lump=Купчина калай
|
||||
Furnace is empty=Фурната е празна
|
||||
100% (output full)=100% (изходът е пълен)
|
||||
@1%=@1%
|
||||
Not cookable=Това не се готви
|
||||
Empty=Празно
|
||||
Furnace active=Фурната работи
|
||||
Furnace inactive=Фурната не работи
|
||||
(Item: @1; Fuel: @2)=(Предмет: @1; гориво: @2)
|
||||
Furnace=Фурна
|
||||
Stone=Камък
|
||||
Cobblestone=Паваж
|
||||
Stone Brick=Каменна тухла
|
||||
Stone Block=Каменно блокче
|
||||
Mossy Cobblestone=Паваж покрит с мъх
|
||||
Desert Stone=Пустинен камък
|
||||
Desert Cobblestone=Пустинен паваж
|
||||
Desert Stone Brick=Тухла от пустинен камък
|
||||
Desert Stone Block=Блокче от пустинен камък
|
||||
Sandstone=Пясъчник
|
||||
Sandstone Brick=Тухла от пясъчник
|
||||
Sandstone Block=Блокче от пясъчник
|
||||
Desert Sandstone=Пустинен пясъчник
|
||||
Desert Sandstone Brick=Тухла от пустинен пясъчник
|
||||
Desert Sandstone Block=Блокче от пустинен пясъчник
|
||||
Silver Sandstone=Сребърен пясъчник
|
||||
Silver Sandstone Brick=Тухла от сребърен пясъчник
|
||||
Silver Sandstone Block=Блокче от сребърен пясъчник
|
||||
Obsidian=Обсидиан
|
||||
Obsidian Brick=Тухла от обсидиан
|
||||
Obsidian Block=Блокче от обсидиан
|
||||
Dirt=Почва
|
||||
Dirt with Grass=Почва с трева
|
||||
Dirt with Grass and Footsteps=Почва с трева и стъпки
|
||||
Dirt with Savanna Grass=Почва с трева от саваната
|
||||
Dirt with Snow=Почва със сняг
|
||||
Dirt with Rainforest Litter=Почва с растителна маса от тропическа гора
|
||||
Dirt with Coniferous Litter=Почва с растителна маса от иглолистна гора
|
||||
Savanna Dirt=Почва от саваната
|
||||
Savanna Dirt with Savanna Grass=Почва от саваната с трева от саваната
|
||||
Permafrost=Вечно замръзнала почва
|
||||
Permafrost with Stones=Вечно замръзнала почва с камъни
|
||||
Permafrost with Moss=Вечно замръзнала почва с мъх
|
||||
Sand=Пясък
|
||||
Desert Sand=Пустинен пясък
|
||||
Silver Sand=Сребърен пясък
|
||||
Gravel=Чакъл
|
||||
Clay=Глина
|
||||
Snow=Сняг
|
||||
Snow Block=Блокче сняг
|
||||
Ice=Лед
|
||||
Cave Ice=Блокче лед
|
||||
Apple Tree=Ябълково дърво
|
||||
Apple Wood Planks=Дъски от ябълково дърво
|
||||
Apple Tree Sapling=Фиданка от ябълково дърво
|
||||
Apple Tree Leaves=Листа на ябълково дърво
|
||||
Apple=Ябълка
|
||||
Apple Marker=Маркер на ябълка
|
||||
Jungle Tree=Боабаб
|
||||
Jungle Wood Planks=Дъски от боабаб
|
||||
Jungle Tree Leaves=Листа на боабаб
|
||||
Jungle Tree Sapling=Фиданка от боабаб
|
||||
Emergent Jungle Tree Sapling=Покълнала фиданка от боабаб
|
||||
Pine Tree=Борово дърво
|
||||
Pine Wood Planks=Дъски от борово дърво
|
||||
Pine Needles=Борови иглички
|
||||
Pine Tree Sapling=Фиданка от борово дърво
|
||||
Acacia Tree=Акациево дърво
|
||||
Acacia Wood Planks=Дъски от акациево дърво
|
||||
Acacia Tree Leaves=Листа на акациево дърво
|
||||
Acacia Tree Sapling=Фиданка от акациево дърво
|
||||
Aspen Tree=Трепетликово дърво
|
||||
Aspen Wood Planks=Дъски от трепетликово дърво
|
||||
Aspen Tree Leaves=Листа на трепетликово дърво
|
||||
Aspen Tree Sapling=Фиданка от трепетликово дърво
|
||||
Coal Ore=Въглищна руда
|
||||
Coal Block=Блокче въглища
|
||||
Iron Ore=Желязна руда
|
||||
Steel Block=Стеманено блокче
|
||||
Copper Ore=Медна руда
|
||||
Copper Block=Медно блокче
|
||||
Tin Ore=Калаена руда
|
||||
Tin Block=Калаено блокче
|
||||
Bronze Block=Бронзово блокче
|
||||
Mese Ore=Руда за месе
|
||||
Mese Block=Блокче от месе
|
||||
Gold Ore=Златна руда
|
||||
Gold Block=Златно блокче
|
||||
Diamond Ore=Диамантена руда
|
||||
Diamond Block=Диамантено блокче
|
||||
Cactus=Кактус
|
||||
Large Cactus Seedling=Семена на голям кактус
|
||||
Papyrus=Папирус
|
||||
Dry Shrub=Сух храст
|
||||
Jungle Grass=Трева от джунглата
|
||||
Grass=Трева
|
||||
Savanna Grass=Трева от саваната
|
||||
Fern=Папрат
|
||||
Marram Grass=Пясъчна трева
|
||||
Bush Stem=Ствол на храст
|
||||
Bush Leaves=Листа на храст
|
||||
Bush Sapling=Фиданка на храст
|
||||
Blueberry Bush Leaves with Berries=Листа на боровинков храст с боровинки
|
||||
Blueberry Bush Leaves=Листа на боровинков храст
|
||||
Blueberry Bush Sapling=Фиданка на боровинков храст
|
||||
Acacia Bush Stem=Ствол на акациев храст
|
||||
Acacia Bush Leaves=Листа на акациев храст
|
||||
Acacia Bush Sapling=Фиданка на акациев храст
|
||||
Pine Bush Stem=Ствол на боров храст
|
||||
Pine Bush Needles=Бодлички на боров храст
|
||||
Pine Bush Sapling=Фиданка на борох храст
|
||||
Kelp=Водорасли
|
||||
Green Coral=Зелен корал
|
||||
Pink Coral=Розов корал
|
||||
Cyan Coral=Син корал
|
||||
Brown Coral=Кафяв корал
|
||||
Orange Coral=Оранжев корал
|
||||
Coral Skeleton=Скелет на корал
|
||||
Water Source=Източник на вода
|
||||
Flowing Water=Течаща вода
|
||||
River Water Source=Източник на речна вода
|
||||
Flowing River Water=Течаща речна вода
|
||||
Lava Source=Източник на лава
|
||||
Flowing Lava=Течаща лава
|
||||
Empty Bookshelf=Празна библиотека
|
||||
Bookshelf (@1 written, @2 empty books)=Библиотека (@1 написани, @2 празни книги)
|
||||
Bookshelf=Библиотека
|
||||
Text too long=Текстът е двърде дълъг
|
||||
"@1"=„@1“
|
||||
Wooden Sign=Дървен знак
|
||||
Steel Sign=Стоманен знак
|
||||
Wooden Ladder=Дървена стълба
|
||||
Steel Ladder=Стоманена стълба
|
||||
Apple Wood Fence=Ограда от ябълково дърво
|
||||
Acacia Wood Fence=Ограда от акациево дърво
|
||||
Jungle Wood Fence=Ограда от боабаб
|
||||
Pine Wood Fence=Ограда от борово дърво
|
||||
Aspen Wood Fence=Ограда от трепетликово дърво
|
||||
Apple Wood Fence Rail=Парапет от ябълково дърво
|
||||
Acacia Wood Fence Rail=Парапет от акациево дърво
|
||||
Jungle Wood Fence Rail=Парапет от боабаб
|
||||
Pine Wood Fence Rail=Парапет от борово дърво
|
||||
Aspen Wood Fence Rail=Парапет от трепетликово дърво
|
||||
Glass=Стъкло
|
||||
Obsidian Glass=Обсидианово стъкло
|
||||
Brick Block=Блокче от тухли
|
||||
Mese Lamp=Лампа от кристал месе
|
||||
Apple Wood Mese Post Light=Поставка за лампа с месе от ябълково дърво
|
||||
Acacia Wood Mese Post Light=Поставка за лампа с месе от акациево дърво
|
||||
Jungle Wood Mese Post Light=Поставка за лампа с месе от боабаб
|
||||
Pine Wood Mese Post Light=Поставка за лампа с месе от борово дърво
|
||||
Aspen Wood Mese Post Light=Поставка за лампа с месе от трепетликово дърво
|
||||
Cloud=Облак
|
||||
Wooden Pickaxe=Дървена кирка
|
||||
Stone Pickaxe=Каменна кирка
|
||||
Bronze Pickaxe=Бронзова кирка
|
||||
Steel Pickaxe=Стоманена кирка
|
||||
Mese Pickaxe=Кирка от кристала месе
|
||||
Diamond Pickaxe=Диамантена кирка
|
||||
Wooden Shovel=Дървена лопата
|
||||
Stone Shovel=Каменна лопата
|
||||
Bronze Shovel=Бронзова лопата
|
||||
Steel Shovel=Стоманена лопата
|
||||
Mese Shovel=Лопата от кристала месе
|
||||
Diamond Shovel=Диамантена лопата
|
||||
Wooden Axe=Дървена брадва
|
||||
Stone Axe=Каменна брадва
|
||||
Bronze Axe=Бронзова брадва
|
||||
Steel Axe=Стоманена брадва
|
||||
Mese Axe=Брадва от кристала месе
|
||||
Diamond Axe=Диамантена брадва
|
||||
Wooden Sword=Дървен меч
|
||||
Stone Sword=Каменен меч
|
||||
Bronze Sword=Бронзов меч
|
||||
Steel Sword=Стоманен меч
|
||||
Mese Sword=Меч от кристала месе
|
||||
Diamond Sword=Диамантен меч
|
||||
Torch=Факел
|
||||
@1 will intersect protection on growth.=@1 ще наруши защитата при израстване.
|
215
mods/default/locale/default.lv.tr
Normal file
215
mods/default/locale/default.lv.tr
Normal file
@ -0,0 +1,215 @@
|
||||
# textdomain: default
|
||||
Locked Chest=Aizslēgta lāde
|
||||
Locked Chest (owned by @1)=Aizslēgta lāde (Saimnieks: @1)
|
||||
You do not own this chest.=Jums nepieder šī lāde.
|
||||
a locked chest=aizslēgta lāde
|
||||
Chest=Lāde
|
||||
Write=Rakstīt
|
||||
Read=Lasīt
|
||||
Title:=Virsraksts:
|
||||
Contents:=Saturs:
|
||||
Save=Saglabāt
|
||||
by @1=autors @1
|
||||
Page @1 of @2=@1 lappuse no @2
|
||||
The book you were writing to mysteriously disappeared.=Grāmata, kuru rakstījāt, pēkšņi pazuda.
|
||||
"@1" by @2="@1" @2
|
||||
Blueberries=Mellenes
|
||||
Book=Grāmata
|
||||
Book with Text=Grāmata ar tekstu
|
||||
Bronze Ingot=Bronzas stienis
|
||||
Clay Brick=Māla ķieģelis
|
||||
Clay Lump=Māla pika
|
||||
Coal Lump=Ogle
|
||||
Copper Ingot=Vara stienis
|
||||
Copper Lump=Vara rūdas gabals
|
||||
Diamond=Dimants
|
||||
Flint=Krams
|
||||
Gold Ingot=Zelta stienis
|
||||
Gold Lump=Zelta rūdas gabals
|
||||
Iron Lump=Dzelzs rūdas gabals
|
||||
Mese Crystal=Mēzes kristāls
|
||||
Mese Crystal Fragment=Mēzes kristāla fragments
|
||||
Obsidian Shard=Obsidiāna skaida
|
||||
Paper=Papīrs
|
||||
Steel Ingot=Tērauda stienis
|
||||
Stick=Puļķis
|
||||
Tin Ingot=Alvas stienis
|
||||
Tin Lump=Alvas rūdas gabals
|
||||
Furnace is empty=Krāsns ir tukša
|
||||
100% (output full)=100% (izeja pilna)
|
||||
@1%=@1%
|
||||
Not cookable=Nav gatavojams
|
||||
Empty=Tukšs
|
||||
Furnace active=Krāsns kurās
|
||||
Furnace inactive=Krāsns nekurās
|
||||
(Item: @1; Fuel: @2)=(Priekšmets: @1; Degviela: @2)
|
||||
Furnace=Krāsns
|
||||
Stone=Akmens
|
||||
Cobblestone=Mūrakmens
|
||||
Stone Brick=Akmens ķieģeļi
|
||||
Stone Block=Akmens bloks
|
||||
Mossy Cobblestone=Apsūnojis mūrakmens
|
||||
Desert Stone=Tuksneša akmens
|
||||
Desert Cobblestone=Tuksneša mūrakmens
|
||||
Desert Stone Brick=Tuksneša akmens ķieģeļi
|
||||
Desert Stone Block=Tuksneša akmens bloks
|
||||
Sandstone=Smilšakmens
|
||||
Sandstone Brick=Smilšakmens ķieģeļi
|
||||
Sandstone Block=Smilšakmens bloks
|
||||
Desert Sandstone=Tuksnesa smilšakmens
|
||||
Desert Sandstone Brick=Tuksneša smilšakmens ķieģeļi
|
||||
Desert Sandstone Block=Tuksneša smilšakmens bloks
|
||||
Silver Sandstone=Baltais smilšakmens
|
||||
Silver Sandstone Brick=Baltā smilšakmens ķieģeļi
|
||||
Silver Sandstone Block=Baltā smilšakmens bloks
|
||||
Obsidian=Obsidiāns
|
||||
Obsidian Brick=Obsidiāna ķieģeļi
|
||||
Obsidian Block=Obsidiāna bloks
|
||||
Dirt=Zeme
|
||||
Dirt with Grass=Zeme ar zāli
|
||||
Dirt with Grass and Footsteps=Pēdaina zeme ar zāli
|
||||
Dirt with Savanna Grass=Zeme ar savannas zāli
|
||||
Dirt with Snow=Zeme ar sniegu
|
||||
Dirt with Rainforest Litter=Zeme ar lietusmeža zemsedzi
|
||||
Dirt with Coniferous Litter=Zeme ar skujām
|
||||
Savanna Dirt=Savannas zeme
|
||||
Savanna Dirt with Savanna Grass=Savannas zeme ar savannas zāli
|
||||
Permafrost=Mūžīgais sasalums
|
||||
Permafrost with Stones=Mūžīgais sasalums ar akmentiņiem
|
||||
Permafrost with Moss=Mūžīgais sasalums ar sūnām
|
||||
Sand=Smilts
|
||||
Desert Sand=Tuksneša smilts
|
||||
Silver Sand=Baltā smilts
|
||||
Gravel=Grants
|
||||
Clay=Māla bloks
|
||||
Snow=Sniegs
|
||||
Snow Block=Sniega bloks
|
||||
Ice=Ledus
|
||||
Cave Ice=Alu ledus
|
||||
Apple Tree=Ābele
|
||||
Apple Wood Planks=Ābolkoka dēļi
|
||||
Apple Tree Sapling=Ābeles dzinums
|
||||
Apple Tree Leaves=Ābeles lapas
|
||||
Apple=Ābols
|
||||
Apple Marker=Ābola marķieris
|
||||
Jungle Tree=Džungļu koks
|
||||
Jungle Wood Planks=Džungļu koka dēļi
|
||||
Jungle Tree Leaves=Džungļu koka lapas
|
||||
Jungle Tree Sapling=Džungļu koka dzinums
|
||||
Emergent Jungle Tree Sapling=Augsta džungļu koka dzinums
|
||||
Pine Tree=Skujkoks
|
||||
Pine Wood Planks=Skujkoka dēļi
|
||||
Pine Needles=Skujas
|
||||
Pine Tree Sapling=Skujkoka dzinums
|
||||
Acacia Tree=Akācija
|
||||
Acacia Wood Planks=Akācijas dēļi
|
||||
Acacia Tree Leaves=Akācijas lapas
|
||||
Acacia Tree Sapling=Akācijas dzinums
|
||||
Aspen Tree=Apse
|
||||
Aspen Wood Planks=Apses koka dēļi
|
||||
Aspen Tree Leaves=Apses lapas
|
||||
Aspen Tree Sapling=Apses dzinums
|
||||
Coal Ore=Akmeņogļu rūda
|
||||
Coal Block=Akmeņogļu bloks
|
||||
Iron Ore=Dzelzs rūda
|
||||
Steel Block=Tērauda bloks
|
||||
Copper Ore=Vara rūda
|
||||
Copper Block=Vara bloks
|
||||
Tin Ore=Alvas rūda
|
||||
Tin Block=Alvas bloks
|
||||
Bronze Block=Bronzas bloks
|
||||
Mese Ore=Mēzes rūda
|
||||
Mese Block=Mēzes bloks
|
||||
Gold Ore=Zelta rūda
|
||||
Gold Block=Zelta bloks
|
||||
Diamond Ore=Dimanta rūda
|
||||
Diamond Block=Dimanta bloks
|
||||
Cactus=Kaktuss
|
||||
Large Cactus Seedling=Liela kaktusa dzinums
|
||||
Papyrus=Papiruss
|
||||
Dry Shrub=Izžuvis krūmiņš
|
||||
Jungle Grass=Džungļu zāle
|
||||
Grass=Zāle
|
||||
Savanna Grass=Savannas zāle
|
||||
Fern=Paparde
|
||||
Marram Grass=Kāpu niedre
|
||||
Bush Stem=Krūma stumbrājs
|
||||
Bush Leaves=Krūma lapas
|
||||
Bush Sapling=Krūma dzinums
|
||||
Blueberry Bush Leaves with Berries=Melleņu krūms ar ogām
|
||||
Blueberry Bush Leaves=Melleņu krūms
|
||||
Blueberry Bush Sapling=Melleņu krūma dzinums
|
||||
Acacia Bush Stem=Akācijas krūma stumbrājs
|
||||
Acacia Bush Leaves=Akācijas krūma lapas
|
||||
Acacia Bush Sapling=Akācijas krūma dzinums
|
||||
Pine Bush Stem=Skujaina krūma stumbrājs
|
||||
Pine Bush Needles=Skujaina krūma lapas
|
||||
Pine Bush Sapling=Skujaina krūma dzinums
|
||||
Kelp=Brūnaļģes
|
||||
Green Coral=Zaļš korallis
|
||||
Pink Coral=Rozā korallis
|
||||
Cyan Coral=Ciānkrāsas korallis
|
||||
Brown Coral=Brūns korallis
|
||||
Orange Coral=Oranžs korallis
|
||||
Coral Skeleton=Koraļļa skelets
|
||||
Water Source=Ūdens avots
|
||||
Flowing Water=Plūstošs ūdens
|
||||
River Water Source=Upes ūdens avots
|
||||
Flowing River Water=Tekošs upes ūdens
|
||||
Lava Source=Lavas avots
|
||||
Flowing Lava=Plūstoša lava
|
||||
Empty Bookshelf=Tukss grāmatplaukts
|
||||
Bookshelf (@1 written, @2 empty books)=Grāmatplauktā (@1 rakstītas, @2 tukšas grāmatas)
|
||||
Bookshelf=Grāmatplaukts
|
||||
Text too long=Teksts par garu
|
||||
"@1"="@1"
|
||||
Wooden Sign=Koka zīme
|
||||
Steel Sign=Tērauda zīme
|
||||
Wooden Ladder=Koka kāpnes
|
||||
Steel Ladder=Tērauda kāpnes
|
||||
Apple Wood Fence=Ābolkoka žogs
|
||||
Acacia Wood Fence=Akācijas žogs
|
||||
Jungle Wood Fence=Džungļu koka žogs
|
||||
Pine Wood Fence=Skujkoka žogs
|
||||
Aspen Wood Fence=Apses koka žogs
|
||||
Apple Wood Fence Rail=Ābolkoka žoga margas
|
||||
Acacia Wood Fence Rail=Akācijas žoga margas
|
||||
Jungle Wood Fence Rail=Džungļu koka žoga margas
|
||||
Pine Wood Fence Rail=Skujkoka žoga margas
|
||||
Aspen Wood Fence Rail=Apses žoga margas
|
||||
Glass=Stikls
|
||||
Obsidian Glass=Obsidiāna stikls
|
||||
Brick Block=Ķieģeļu bloks
|
||||
Mese Lamp=Mēzes lampa
|
||||
Apple Wood Mese Post Light=Ābolkoka mēzes lampa
|
||||
Acacia Wood Mese Post Light=Akācijas mēzes lampa
|
||||
Jungle Wood Mese Post Light=Džungļu koka mēzes lampa
|
||||
Pine Wood Mese Post Light=Skujkoka mēzes lampa
|
||||
Aspen Wood Mese Post Light=Apses koka mēzes lampa
|
||||
Cloud=Mākonis
|
||||
Wooden Pickaxe=Koka cērte
|
||||
Stone Pickaxe=Akmens cērte
|
||||
Bronze Pickaxe=Bronzas cērte
|
||||
Steel Pickaxe=Tērauda cērte
|
||||
Mese Pickaxe=Mēzes cērte
|
||||
Diamond Pickaxe=Dimanta cērte
|
||||
Wooden Shovel=Koka lāpsta
|
||||
Stone Shovel=Akmens lāpsta
|
||||
Bronze Shovel=Bronzas lāpsta
|
||||
Steel Shovel=Tērauda lāpsta
|
||||
Mese Shovel=Mēzes lāpsta
|
||||
Diamond Shovel=Dimanta lāpsta
|
||||
Wooden Axe=Koka cirvis
|
||||
Stone Axe=Akmens cirvis
|
||||
Bronze Axe=Bronzas cirvis
|
||||
Steel Axe=Tērauda cirvis
|
||||
Mese Axe=Mēzes cirvis
|
||||
Diamond Axe=Dimanta cirvis
|
||||
Wooden Sword=Koka zobens
|
||||
Stone Sword=Akmens zobens
|
||||
Bronze Sword=Bronzas zobens
|
||||
Steel Sword=Tērauda zobens
|
||||
Mese Sword=Mēzes zobens
|
||||
Diamond Sword=Dimanta zobens
|
||||
Torch=Lāpa
|
||||
@1 will intersect protection on growth.=@1 augot krustos aisargājamo zonu.
|
@ -271,6 +271,7 @@ minetest.register_node("default:cobble", {
|
||||
is_ground_content = false,
|
||||
groups = {cracky = 3, stone = 2},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
_tnt_loss = 4,
|
||||
})
|
||||
|
||||
minetest.register_node("default:stonebrick", {
|
||||
@ -297,9 +298,9 @@ minetest.register_node("default:mossycobble", {
|
||||
is_ground_content = false,
|
||||
groups = {cracky = 3, stone = 1},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
_tnt_loss = 4,
|
||||
})
|
||||
|
||||
|
||||
minetest.register_node("default:desert_stone", {
|
||||
description = S("Desert Stone"),
|
||||
tiles = {"default_desert_stone.png"},
|
||||
@ -315,6 +316,7 @@ minetest.register_node("default:desert_cobble", {
|
||||
is_ground_content = false,
|
||||
groups = {cracky = 3, stone = 2},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
_tnt_loss = 4,
|
||||
})
|
||||
|
||||
minetest.register_node("default:desert_stonebrick", {
|
||||
@ -444,6 +446,7 @@ minetest.register_node("default:dirt", {
|
||||
tiles = {"default_dirt.png"},
|
||||
groups = {crumbly = 3, soil = 1},
|
||||
sounds = default.node_sound_dirt_defaults(),
|
||||
_tnt_loss = 3,
|
||||
})
|
||||
|
||||
minetest.register_node("default:dirt_with_grass", {
|
||||
@ -530,6 +533,7 @@ minetest.register_node("default:dry_dirt", {
|
||||
tiles = {"default_dry_dirt.png"},
|
||||
groups = {crumbly = 3, soil = 1},
|
||||
sounds = default.node_sound_dirt_defaults(),
|
||||
_tnt_loss = 3,
|
||||
})
|
||||
|
||||
minetest.register_node("default:dry_dirt_with_dry_grass", {
|
||||
@ -576,6 +580,7 @@ minetest.register_node("default:sand", {
|
||||
tiles = {"default_sand.png"},
|
||||
groups = {crumbly = 3, falling_node = 1, sand = 1},
|
||||
sounds = default.node_sound_sand_defaults(),
|
||||
_tnt_loss = 2,
|
||||
})
|
||||
|
||||
minetest.register_node("default:desert_sand", {
|
||||
@ -583,6 +588,7 @@ minetest.register_node("default:desert_sand", {
|
||||
tiles = {"default_desert_sand.png"},
|
||||
groups = {crumbly = 3, falling_node = 1, sand = 1},
|
||||
sounds = default.node_sound_sand_defaults(),
|
||||
_tnt_loss = 2,
|
||||
})
|
||||
|
||||
minetest.register_node("default:silver_sand", {
|
||||
@ -590,6 +596,7 @@ minetest.register_node("default:silver_sand", {
|
||||
tiles = {"default_silver_sand.png"},
|
||||
groups = {crumbly = 3, falling_node = 1, sand = 1},
|
||||
sounds = default.node_sound_sand_defaults(),
|
||||
_tnt_loss = 2,
|
||||
})
|
||||
|
||||
|
||||
@ -604,7 +611,8 @@ minetest.register_node("default:gravel", {
|
||||
{items = {"default:flint"}, rarity = 16},
|
||||
{items = {"default:gravel"}}
|
||||
}
|
||||
}
|
||||
},
|
||||
_tnt_loss = 3,
|
||||
})
|
||||
|
||||
minetest.register_node("default:clay", {
|
||||
@ -639,6 +647,7 @@ minetest.register_node("default:snow", {
|
||||
},
|
||||
groups = {crumbly = 3, falling_node = 1, snowy = 1},
|
||||
sounds = default.node_sound_snow_defaults(),
|
||||
_tnt_loss = 1, -- means it will disappear entirely
|
||||
|
||||
on_construct = function(pos)
|
||||
pos.y = pos.y - 1
|
||||
@ -2807,6 +2816,7 @@ minetest.register_node("default:glass", {
|
||||
is_ground_content = false,
|
||||
groups = {cracky = 3, oddly_breakable_by_hand = 3},
|
||||
sounds = default.node_sound_glass_defaults(),
|
||||
_tnt_loss = 2,
|
||||
})
|
||||
|
||||
minetest.register_node("default:obsidian_glass", {
|
||||
|
@ -14,7 +14,7 @@ Re-implemented most of the door algorithms, added meshes, UV wrapped texture.
|
||||
Added doors API to facilitate coding mods accessing and operating doors.
|
||||
Added Fence Gate model, code, and sounds.
|
||||
|
||||
Various Minetest developers and contributors (MIT)
|
||||
Various Minetest Game developers and contributors (MIT)
|
||||
|
||||
|
||||
Authors of media (textures)
|
||||
|
@ -5,7 +5,7 @@ The MIT License (MIT)
|
||||
Copyright (C) 2012-2016 PilzAdam
|
||||
Copyright (C) 2014-2016 BlockMen
|
||||
Copyright (C) 2015-2016 sofar (sofar@foo-projects.org)
|
||||
Copyright (C) 2012-2016 Various Minetest developers and contributors
|
||||
Copyright (C) 2012-2016 Various Minetest Game developers and contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
||||
software and associated documentation files (the "Software"), to deal in the Software
|
||||
|
18
mods/doors/locale/doors.bg.tr
Executable file
18
mods/doors/locale/doors.bg.tr
Executable file
@ -0,0 +1,18 @@
|
||||
# textdomain: doors
|
||||
Hidden Door Segment=Част от скрита врата
|
||||
Owned by @1=Собственик е @1
|
||||
You do not own this locked door.=Не притежавате тази заключена врата.
|
||||
a locked door=заключена врата
|
||||
Wooden Door=Дървена врата
|
||||
Steel Door=Стоманена врата
|
||||
Glass Door=Стъклена врата
|
||||
Obsidian Glass Door=Врата от обсидианово стъкло
|
||||
You do not own this trapdoor.=Не притежавате този капак.
|
||||
a locked trapdoor=заключен капак
|
||||
Wooden Trapdoor=Дървен капак
|
||||
Steel Trapdoor=Стоманен капак
|
||||
Apple Wood Fence Gate=Врата за ограда от ябълково дърво
|
||||
Acacia Wood Fence Gate=Врата за ограда от акациево дърво
|
||||
Jungle Wood Fence Gate=Врата за ограда от боабаб
|
||||
Pine Wood Fence Gate=Врата за ограда от борово дърво
|
||||
Aspen Wood Fence Gate=Врата за ограда от трепетликово дърво
|
18
mods/doors/locale/doors.lv.tr
Normal file
18
mods/doors/locale/doors.lv.tr
Normal file
@ -0,0 +1,18 @@
|
||||
# textdomain: doors
|
||||
Hidden Door Segment=Palsēptais durvju segments
|
||||
Owned by @1=Saimnieks: @1
|
||||
You do not own this locked door.=Jums nepieder šīs aizslēgtās durvis.
|
||||
a locked door=Aizslēgtas durvis
|
||||
Wooden Door=Koka durvis
|
||||
Steel Door=Tērauda durvis
|
||||
Glass Door=Stikla durvis
|
||||
Obsidian Glass Door=Obsidiānstikla durvis
|
||||
You do not own this trapdoor.=Jums nepieder šī aizslēgtā lūka.
|
||||
a locked trapdoor=Aizslēgta lūka
|
||||
Wooden Trapdoor=Koka lūka
|
||||
Steel Trapdoor=Tērauda lūka
|
||||
Apple Wood Fence Gate=Ābolkoka žoga vārti
|
||||
Acacia Wood Fence Gate=Akācijas žoga vārti
|
||||
Jungle Wood Fence Gate=Džungļu koka žoga vārti
|
||||
Pine Wood Fence Gate=Skujkoka žoga vārti
|
||||
Aspen Wood Fence Gate=Apses žoga vārti
|
@ -6,7 +6,7 @@ See init.lua for documentation.
|
||||
Authors of source code
|
||||
----------------------
|
||||
Originally by Perttu Ahola (celeron55) <celeron55@gmail.com> (MIT)
|
||||
Various Minetest developers and contributors (MIT)
|
||||
Various Minetest Game developers and contributors (MIT)
|
||||
|
||||
Authors of media (textures)
|
||||
---------------------------
|
||||
|
@ -3,7 +3,7 @@ License of source code
|
||||
|
||||
The MIT License (MIT)
|
||||
Copyright (C) 2012-2016 Perttu Ahola (celeron55) <celeron55@gmail.com>
|
||||
Copyright (C) 2012-2016 Various Minetest developers and contributors
|
||||
Copyright (C) 2012-2016 Various Minetest Game developers and contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
||||
software and associated documentation files (the "Software"), to deal in the Software
|
||||
|
16
mods/dye/locale/dye.bg.tr
Executable file
16
mods/dye/locale/dye.bg.tr
Executable file
@ -0,0 +1,16 @@
|
||||
# textdomain: dye
|
||||
White Dye=Бяло багрило
|
||||
Grey Dye=Сиво багрило
|
||||
Dark Grey Dye=Тъмносиво багрило
|
||||
Black Dye=Черно багрило
|
||||
Violet Dye=Лилаво багрило
|
||||
Blue Dye=Синьо багрило
|
||||
Cyan Dye=Синьо-зелено багрило
|
||||
Dark Green Dye=Масленозелено багрило
|
||||
Green Dye=Зелено багрило
|
||||
Yellow Dye=Жълто багрило
|
||||
Brown Dye=Кафяво багрило
|
||||
Orange Dye=Оранжево багрило
|
||||
Red Dye=Червено багрило
|
||||
Magenta Dye=Пурпурно багрило
|
||||
Pink Dye=Розово багрило
|
16
mods/dye/locale/dye.lv.tr
Normal file
16
mods/dye/locale/dye.lv.tr
Normal file
@ -0,0 +1,16 @@
|
||||
# textdomain: dye
|
||||
White Dye=Baltā krāsa
|
||||
Grey Dye=Pelēkā krāsa
|
||||
Dark Grey Dye=Tumšpelēkā krāsa
|
||||
Black Dye=Melnā krāsa
|
||||
Violet Dye=Violetā krāsa
|
||||
Blue Dye=Zilā krāsa
|
||||
Cyan Dye=Ciāna krāsa
|
||||
Dark Green Dye=Tumšzaļā krāsa
|
||||
Green Dye=Zaļā krāsa
|
||||
Yellow Dye=Dzeltenā krāsa
|
||||
Brown Dye=Brūnā krāsa
|
||||
Orange Dye=Oranžā krāsa
|
||||
Red Dye=Sarkanā krāsa
|
||||
Magenta Dye=Fuksīna krāsa
|
||||
Pink Dye=Rozā krāsa
|
@ -6,7 +6,7 @@ Authors of source code
|
||||
----------------------
|
||||
Originally by PilzAdam (MIT)
|
||||
webdesigner97 (MIT)
|
||||
Various Minetest developers and contributors (MIT)
|
||||
Various Minetest Game developers and contributors (MIT)
|
||||
|
||||
Authors of media (textures)
|
||||
---------------------------
|
||||
|
@ -4,7 +4,7 @@ License of source code
|
||||
The MIT License (MIT)
|
||||
Copyright (C) 2012-2016 PilzAdam
|
||||
Copyright (C) 2014-2016 webdesigner97
|
||||
Copyright (C) 2012-2016 Various Minetest developers and contributors
|
||||
Copyright (C) 2012-2016 Various Minetest Game developers and contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
||||
software and associated documentation files (the "Software"), to deal in the Software
|
||||
|
28
mods/farming/locale/farming.bg.tr
Executable file
28
mods/farming/locale/farming.bg.tr
Executable file
@ -0,0 +1,28 @@
|
||||
# textdomain: farming
|
||||
Hoe=Мотика
|
||||
Seed=Семе
|
||||
Wooden Hoe=Дървена мотика
|
||||
Stone Hoe=Каменна мотика
|
||||
Steel Hoe=Стоманена мотика
|
||||
Bronze Hoe=Бронзова мотика
|
||||
Mese Hoe=Мотика от кристала мезе
|
||||
Diamond Hoe=Диамантена мотика
|
||||
Wheat Seed=Пшеничено семе
|
||||
Wheat=Пшеница
|
||||
Flour=Брашно
|
||||
Bread=Хляб
|
||||
Cotton Seed=Памучено семе
|
||||
Cotton=Памук
|
||||
String=Връв
|
||||
Soil=Почва
|
||||
Wet Soil=Влажна почва
|
||||
Savanna Soil=Почва от саваната
|
||||
Wet Savanna Soil=Влажна почва от саваната
|
||||
Desert Sand Soil=Пустинна пясъчна почва
|
||||
Wet Desert Sand Soil=Влажна пустинна пясъчна почва
|
||||
Straw=Слама
|
||||
Straw Stair=Сламено стълбище
|
||||
Inner Straw Stair=Вътрешно сламено стълбище
|
||||
Outer Straw Stair=Външно сламено стълбище
|
||||
Straw Slab=Сламена плоча
|
||||
Wild Cotton=Див памук
|
28
mods/farming/locale/farming.lv.tr
Normal file
28
mods/farming/locale/farming.lv.tr
Normal file
@ -0,0 +1,28 @@
|
||||
# textdomain: farming
|
||||
Hoe=Kaplis
|
||||
Seed=Sēklas
|
||||
Wooden Hoe=Koka kaplis
|
||||
Stone Hoe=Akmens kaplis
|
||||
Steel Hoe=Tērauda kaplis
|
||||
Bronze Hoe=Bronzas kaplis
|
||||
Mese Hoe=Mēzes kaplis
|
||||
Diamond Hoe=Dimanta kaplis
|
||||
Wheat Seed=Kviešu sēkla
|
||||
Wheat=Kvieši
|
||||
Flour=Milti
|
||||
Bread=Maize
|
||||
Cotton Seed=Kokvilnas sēklas
|
||||
Cotton=Kokvilna
|
||||
String=Stiegra
|
||||
Soil=Augsne
|
||||
Wet Soil=Slapja augsne
|
||||
Savanna Soil=Savannas augsne
|
||||
Wet Savanna Soil=Slapja savannas augsne
|
||||
Desert Sand Soil=Tuksneša smilts augsne
|
||||
Wet Desert Sand Soil=Slapja tuksneša smilts augsne
|
||||
Straw=Salmi
|
||||
Straw Stair=Salmu pakāpiens
|
||||
Inner Straw Stair=Iekšējais salmu pakāpiens
|
||||
Outer Straw Stair=Ārējais salmu pakāpiens
|
||||
Straw Slab=Salmu plātne
|
||||
Wild Cotton=Savvaļas kokvilna
|
@ -5,7 +5,7 @@ See license.txt for license information.
|
||||
Authors of source code
|
||||
----------------------
|
||||
Originally by Perttu Ahola (celeron55) <celeron55@gmail.com> (LGPLv2.1+)
|
||||
Various Minetest developers and contributors (LGPLv2.1+)
|
||||
Various Minetest Game developers and contributors (LGPLv2.1+)
|
||||
|
||||
Authors of media (textures and sounds)
|
||||
--------------------------------------
|
||||
|
@ -3,7 +3,7 @@ License of source code
|
||||
|
||||
GNU Lesser General Public License, version 2.1
|
||||
Copyright (C) 2012-2016 celeron55, Perttu Ahola <celeron55@gmail.com>
|
||||
Copyright (C) 2012-2016 Various Minetest developers and contributors
|
||||
Copyright (C) 2012-2016 Various Minetest Game developers and contributors
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it under the terms
|
||||
of the GNU Lesser General Public License as published by the Free Software Foundation;
|
||||
|
4
mods/fire/locale/fire.bg.tr
Executable file
4
mods/fire/locale/fire.bg.tr
Executable file
@ -0,0 +1,4 @@
|
||||
# textdomain: fire
|
||||
Fire=Огън
|
||||
Permanent Fire=Вечен огън
|
||||
Flint and Steel=Кремък и стомана
|
4
mods/fire/locale/fire.lv.tr
Normal file
4
mods/fire/locale/fire.lv.tr
Normal file
@ -0,0 +1,4 @@
|
||||
# textdomain: fire
|
||||
Fire=Uguns
|
||||
Permanent Fire=Mūžīgā uguns
|
||||
Flint and Steel=Krams un zāģītis
|
5
mods/fireflies/locale/fireflies.bg.tr
Executable file
5
mods/fireflies/locale/fireflies.bg.tr
Executable file
@ -0,0 +1,5 @@
|
||||
# textdomain: fireflies
|
||||
Firefly=Светулка
|
||||
Hidden Firefly=Скрита светулка
|
||||
Bug Net=Сак за насекоми
|
||||
Firefly in a Bottle=Светулка в буркан
|
5
mods/fireflies/locale/fireflies.lv.tr
Normal file
5
mods/fireflies/locale/fireflies.lv.tr
Normal file
@ -0,0 +1,5 @@
|
||||
# textdomain: fireflies
|
||||
Firefly=Jāņtārpiņš
|
||||
Hidden Firefly=Paslēpts jāņtārpiņš
|
||||
Bug Net=Ķeramtīkls
|
||||
Firefly in a Bottle=Jāņtārpiņš pudelē
|
@ -5,7 +5,7 @@ See license.txt for license information.
|
||||
Authors of source code
|
||||
----------------------
|
||||
Originally by Ironzorg (MIT) and VanessaE (MIT)
|
||||
Various Minetest developers and contributors (MIT)
|
||||
Various Minetest Game developers and contributors (MIT)
|
||||
|
||||
Authors of media (textures)
|
||||
---------------------------
|
||||
|
@ -1,6 +1,6 @@
|
||||
-- flowers/init.lua
|
||||
|
||||
-- Minetest 0.4 mod: default
|
||||
-- Minetest Game mod: flowers
|
||||
-- See README.txt for licensing and other information.
|
||||
|
||||
|
||||
|
@ -3,7 +3,7 @@ License of source code
|
||||
|
||||
The MIT License (MIT)
|
||||
Copyright (C) 2012-2016 Ironzorg, VanessaE
|
||||
Copyright (C) 2012-2016 Various Minetest developers and contributors
|
||||
Copyright (C) 2012-2016 Various Minetest Game developers and contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
||||
software and associated documentation files (the "Software"), to deal in the Software
|
||||
|
12
mods/flowers/locale/flowers.bg.tr
Executable file
12
mods/flowers/locale/flowers.bg.tr
Executable file
@ -0,0 +1,12 @@
|
||||
# textdomain: flowers
|
||||
Red Rose=Червена роза
|
||||
Orange Tulip=Оранжево лале
|
||||
Yellow Dandelion=Жълтурче
|
||||
Green Chrysanthemum=Зелена хризантема
|
||||
Blue Geranium=Син здравец
|
||||
Viola=Виолетка
|
||||
White Dandelion=Глухарче
|
||||
Black Tulip=Черно лале
|
||||
Red Mushroom=Червена гъба
|
||||
Brown Mushroom=Кафява гъба
|
||||
Waterlily=Водна лилия
|
12
mods/flowers/locale/flowers.lv.tr
Normal file
12
mods/flowers/locale/flowers.lv.tr
Normal file
@ -0,0 +1,12 @@
|
||||
# textdomain: flowers
|
||||
Red Rose=Sarkanā roze
|
||||
Orange Tulip=Oranžā tulpe
|
||||
Yellow Dandelion=Dzeltena pienene
|
||||
Green Chrysanthemum=Zaļā krizantema
|
||||
Blue Geranium=Zilā ģerānija
|
||||
Viola=Vijolīte
|
||||
White Dandelion=Balta pienene
|
||||
Black Tulip=Melnā tulpe
|
||||
Red Mushroom=Sarkanā sēne
|
||||
Brown Mushroom=Brūnā sēne
|
||||
Waterlily=Ūdensroze
|
4
mods/game_commands/locale/game_commands.bg.tr
Executable file
4
mods/game_commands/locale/game_commands.bg.tr
Executable file
@ -0,0 +1,4 @@
|
||||
# textdomain: game_commands
|
||||
Kill yourself to respawn=Загинете, за да се преродите
|
||||
No static_spawnpoint defined=Не е зададена стойност на static_spawnpoint
|
||||
You need to be online to be killed!=Трябва да бъдете на линия за да загинете!
|
4
mods/game_commands/locale/game_commands.lv.tr
Normal file
4
mods/game_commands/locale/game_commands.lv.tr
Normal file
@ -0,0 +1,4 @@
|
||||
# textdomain: game_commands
|
||||
Kill yourself to respawn=Nobeidzieties lai atdzīvotos
|
||||
No static_spawnpoint defined=static_spawnpoint nav definēts
|
||||
You need to be online to be killed!=Jums jābūt tiešsaistē lai nobeigtos.
|
@ -5,4 +5,4 @@ See license.txt for license information.
|
||||
Authors of source code
|
||||
----------------------
|
||||
Perttu Ahola (celeron55) <celeron55@gmail.com> (MIT)
|
||||
Various Minetest developers and contributors (MIT)
|
||||
Various Minetest Game developers and contributors (MIT)
|
||||
|
@ -3,7 +3,7 @@ License of source code
|
||||
|
||||
The MIT License (MIT)
|
||||
Copyright (C) 2012-2016 Perttu Ahola (celeron55) <celeron55@gmail.com>
|
||||
Copyright (C) 2012-2016 Various Minetest developers and contributors
|
||||
Copyright (C) 2012-2016 Various Minetest Game developers and contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
||||
software and associated documentation files (the "Software"), to deal in the Software
|
||||
|
@ -5,7 +5,7 @@ See license.txt for license information.
|
||||
Authors of source code
|
||||
----------------------
|
||||
Originally by celeron55, Perttu Ahola <celeron55@gmail.com> (LGPLv2.1+)
|
||||
Various Minetest developers and contributors (LGPLv2.1+)
|
||||
Various Minetest Game developers and contributors (LGPLv2.1+)
|
||||
|
||||
Authors of media (textures, sounds, models and schematics)
|
||||
----------------------------------------------------------
|
||||
|
@ -1,4 +1,4 @@
|
||||
-- Minetest mod: keys
|
||||
-- Minetest Game mod: keys
|
||||
local keys_path = minetest.get_modpath("keys")
|
||||
|
||||
dofile(keys_path.."/craftitems.lua")
|
||||
|
@ -3,7 +3,7 @@ License of source code
|
||||
|
||||
GNU Lesser General Public License, version 2.1
|
||||
Copyright (C) 2011-2018 celeron55, Perttu Ahola <celeron55@gmail.com>
|
||||
Copyright (C) 2011-2018 Various Minetest developers and contributors
|
||||
Copyright (C) 2011-2018 Various Minetest Game developers and contributors
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it under the terms
|
||||
of the GNU Lesser General Public License as published by the Free Software Foundation;
|
||||
|
4
mods/keys/locale/keys.bg.tr
Executable file
4
mods/keys/locale/keys.bg.tr
Executable file
@ -0,0 +1,4 @@
|
||||
# textdomain: keys
|
||||
Key=Ключ
|
||||
Key to @1's @2=Ключ за @2 на @1
|
||||
Skeleton Key=Заготовка за ключ
|
5
mods/keys/locale/keys.lv.tr
Normal file
5
mods/keys/locale/keys.lv.tr
Normal file
@ -0,0 +1,5 @@
|
||||
# textdomain: keys
|
||||
|
||||
Key=Atslēga
|
||||
Key to @1's @2=Atslēga priekš @1 @2
|
||||
Skeleton Key=Novīlēta atslēga
|
3
mods/map/locale/map.bg.tr
Executable file
3
mods/map/locale/map.bg.tr
Executable file
@ -0,0 +1,3 @@
|
||||
# textdomain: map
|
||||
Mapping Kit=Картографски комплект
|
||||
Use with 'Minimap' key=Използвайте с клавиша за „Миникарта“
|
3
mods/map/locale/map.lv.tr
Normal file
3
mods/map/locale/map.lv.tr
Normal file
@ -0,0 +1,3 @@
|
||||
# textdomain: map
|
||||
Mapping Kit=Kartēšanas komplekts
|
||||
Use with 'Minimap' key=Izmantojiet ar pogu 'Minikarte'
|
53
mods/mtg_craftguide/locale/mtg_craftguide.bg.tr
Executable file
53
mods/mtg_craftguide/locale/mtg_craftguide.bg.tr
Executable file
@ -0,0 +1,53 @@
|
||||
# textdomain: mtg_craftguide
|
||||
Any coal=Всякакви въглища
|
||||
Any sand=Всякакъв пясък
|
||||
Any wool=Всякаква вълна
|
||||
Any stick=Всякакви пръчки
|
||||
Any vessel=Всяква съдина
|
||||
Any wood planks=Всякакви дървени дъски
|
||||
Any kind of stone block=Всякакъв вид каменен блок
|
||||
Any red flower=Всякакво червено цвете
|
||||
Any blue flower=Всякакво синьо цвете
|
||||
Any black flower=Всякакво черно цвете
|
||||
Any green flower=Всякакво зелено цвете
|
||||
Any white flower=Всякакво бяло цвете
|
||||
Any orange flower=Всякакво оранжево цвете
|
||||
Any violet flower=Всякакво лилаво цвете
|
||||
Any yellow flower=Всякакво жълто цвете
|
||||
Any red dye=Всякакво червено багрило
|
||||
Any blue dye=Всякакво синьо багрило
|
||||
Any cyan dye=Всякакво светло-синьо багрило
|
||||
Any grey dye=Всякакво сиво багрило
|
||||
Any pink dye=Всякакво розово багрило
|
||||
Any black dye=Всякакво черно багрило
|
||||
Any brown dye=Всякакво кафяво багрило
|
||||
Any green dye=Всякакво зелено багрило
|
||||
Any white dye=Всякакво бяло багрило
|
||||
Any orange dye=Всякакво оранжево багрило
|
||||
Any violet dye=Всякакво лилаво багрило
|
||||
Any yellow dye=Всякакво жълто багрило
|
||||
Any magenta dye=Всякакво пурпурно багрило
|
||||
Any dark grey dye=Всякакво тъмносиво багрило
|
||||
Any dark green dye=Всякакво масленозелено багрило
|
||||
# Label for group ingredients
|
||||
G=Г
|
||||
Any item belonging to the group(s): @1=Всеки предмет от групата: @1
|
||||
Unknown Item=Неизвестен предмет
|
||||
Fuel=Гориво
|
||||
Usage @1 of @2=Използване @1 от @2
|
||||
Recipe @1 of @2=Рецепта @1 от @2
|
||||
Previous recipe=Предишна рецепта
|
||||
Next recipe=Следваща рецепта
|
||||
Recipe is too big to be displayed.=Рецептата е твърде голяма, за да бъде показана.
|
||||
Shapeless=Без определена подредба
|
||||
Cooking time: @1=Време за готвене: @1
|
||||
Search=Търсене
|
||||
Reset=Нулиране
|
||||
Previous page=Предишна страница
|
||||
Next page=Следваща страница
|
||||
No items to show.=Няма предмети.
|
||||
No usages.=Не се използва.
|
||||
Click again to show recipes.=Изберете отново, за да видите рецептите.
|
||||
No recipes.=Няма рецепти.
|
||||
Click again to show usages.=Изберете отново, за да видите къде се използва.
|
||||
Recipes=Рецепти
|
53
mods/mtg_craftguide/locale/mtg_craftguide.lv.tr
Normal file
53
mods/mtg_craftguide/locale/mtg_craftguide.lv.tr
Normal file
@ -0,0 +1,53 @@
|
||||
# textdomain: mtg_craftguide
|
||||
Any coal=Jebkura ogle
|
||||
Any sand=Jebkura smilts
|
||||
Any wool=Jebkura vilna
|
||||
Any stick=Jebkurš puļķis
|
||||
Any vessel=Jebkurš trauks
|
||||
Any wood planks=Jebkuri dēļi
|
||||
Any kind of stone block=Jebkads akmens bloks
|
||||
Any red flower=Jebkāda sarkana puķe
|
||||
Any blue flower=Jebkāda zila puķe
|
||||
Any black flower=Jebkāda melna puķe
|
||||
Any green flower=Jebkāda zaļa puķe
|
||||
Any white flower=Jebkāda balta puķe
|
||||
Any orange flower=Jebkāda oranža puķe
|
||||
Any violet flower=Jebkāda violeta puķe
|
||||
Any yellow flower=Jebkāda dzeltena puķe
|
||||
Any red dye=Jebkāda sarkanā krāsa
|
||||
Any blue dye=Jebkāda zilā krāsa
|
||||
Any cyan dye=Jebkāda ciānkrāsas krāsa
|
||||
Any grey dye=Jebkāda pelēkā krāsa
|
||||
Any pink dye=Jebkāda rozā krāsa
|
||||
Any black dye=Jebkāda melnā krāsa
|
||||
Any brown dye=Jebkāda brūnā krāsa
|
||||
Any green dye=Jebkāda zaļā krāsa
|
||||
Any white dye=Jebkāda baltā krāsa
|
||||
Any orange dye=Jebkāda oranžā krāsa
|
||||
Any violet dye=Jebkāda violetā krāsa
|
||||
Any yellow dye=Jebkāda dzeltanā krāsa
|
||||
Any magenta dye=Jebkāda fuksīna krāsa
|
||||
Any dark grey dye=Jebkāda tumšpelēkā krāsa
|
||||
Any dark green dye=Jebkāka tumši zaļā krāsa
|
||||
# Label for group ingredients
|
||||
G=G
|
||||
Any item belonging to the group(s): @1=Jebkurš priekšmets no grupas/ām: @1
|
||||
Unknown Item=Nezināms priekšmets
|
||||
Fuel=Degviela
|
||||
Usage @1 of @2=Izmantošana @1 no @2
|
||||
Recipe @1 of @2=Recepte @1 no @2
|
||||
Previous recipe=Iepriekšējā recepte
|
||||
Next recipe=Nākošā recepte
|
||||
Recipe is too big to be displayed.=Recepte ir pārāk liela lai to attēlotu.
|
||||
Shapeless=Bezformas
|
||||
Cooking time: @1=Apstādāšanas laiks @1
|
||||
Search=Meklēšana
|
||||
Reset=Atiestatīt
|
||||
Previous page=Iepriekšējā lapa
|
||||
Next page=Nākošā lapa
|
||||
No items to show.=Nav priekšmetu ko parādīt.
|
||||
No usages.=Nav pielietojumu.
|
||||
Click again to show recipes.=Uzklikšķiniet atkal lai parādītu receptes.
|
||||
No recipes.=Nav recepšu.
|
||||
Click again to show usages.=Uzklikšķiniet atkal lai parādītu izmantojamības.
|
||||
Recipes=Receptes
|
@ -9,7 +9,7 @@ This mod is only for content related to the Player API and the player object.
|
||||
Authors of source code
|
||||
----------------------
|
||||
Originally by celeron55, Perttu Ahola <celeron55@gmail.com> (LGPLv2.1+)
|
||||
Various Minetest developers and contributors (LGPLv2.1+)
|
||||
Various Minetest Game developers and contributors (LGPLv2.1+)
|
||||
|
||||
Authors of media (textures, models and sounds)
|
||||
----------------------------------------------
|
||||
|
@ -3,7 +3,7 @@ License of source code
|
||||
|
||||
GNU Lesser General Public License, version 2.1
|
||||
Copyright (C) 2011 celeron55, Perttu Ahola <celeron55@gmail.com>
|
||||
Copyright (C) 2011 Various Minetest developers and contributors
|
||||
Copyright (C) 2011 Various Minetest Game developers and contributors
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it under the terms
|
||||
of the GNU Lesser General Public License as published by the Free Software Foundation;
|
||||
|
@ -5,7 +5,7 @@ See license.txt for license information.
|
||||
License of source code
|
||||
----------------------
|
||||
Originally by RealBadAngel, Maciej Kasatkin (LGPLv2.1+)
|
||||
Various Minetest developers and contributors (LGPLv2.1+)
|
||||
Various Minetest Game developers and contributors (LGPLv2.1+)
|
||||
|
||||
License of media (textures)
|
||||
---------------------------
|
||||
|
@ -3,7 +3,7 @@ License of source code
|
||||
|
||||
GNU Lesser General Public License, version 2.1
|
||||
Copyright (C) 2013-2016 RealBadAngel, Maciej Kasatkin
|
||||
Copyright (C) 2013-2016 Various Minetest developers and contributors
|
||||
Copyright (C) 2013-2016 Various Minetest Game developers and contributors
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it under the terms
|
||||
of the GNU Lesser General Public License as published by the Free Software Foundation;
|
||||
|
4
mods/screwdriver/locale/screwdriver.bg.tr
Executable file
4
mods/screwdriver/locale/screwdriver.bg.tr
Executable file
@ -0,0 +1,4 @@
|
||||
# textdomain: screwdriver
|
||||
Screwdriver=Отвертка
|
||||
(left-click rotates face, right-click rotates axis)=
|
||||
# (ляв бутон завърта лицето, десен бутон върти оста)
|
3
mods/screwdriver/locale/screwdriver.lv.tr
Normal file
3
mods/screwdriver/locale/screwdriver.lv.tr
Normal file
@ -0,0 +1,3 @@
|
||||
# textdomain: screwdriver
|
||||
Screwdriver=Skrūvgrieznis
|
||||
(left-click rotates face, right-click rotates axis)=(kreisais klikšķis rotē plakni, labais klikšķis rotē asi)
|
9
mods/sethome/locale/sethome.bg.tr
Executable file
9
mods/sethome/locale/sethome.bg.tr
Executable file
@ -0,0 +1,9 @@
|
||||
# textdomain: sethome
|
||||
This command can only be executed in-game!=Тази команда може да бъде изпълнявана само в играта!
|
||||
Can use /sethome and /home=Може да използва командите /sethome и /home
|
||||
Teleport you to your home point=Телепортира ви до домашното местоположение
|
||||
Teleported to home!=Телепортирани сте вкъщи!
|
||||
Set a home using /sethome=Задайте домашното местоположение с командата /sethome
|
||||
Set your home point=Задава домашното местоположение
|
||||
Home set!=Домашното местоположение е зададено!
|
||||
Player not found!=Играчът не е намерен!
|
9
mods/sethome/locale/sethome.lv.tr
Normal file
9
mods/sethome/locale/sethome.lv.tr
Normal file
@ -0,0 +1,9 @@
|
||||
# textdomain: sethome
|
||||
This command can only be executed in-game!=Šī komanda var tikt izpildīta tikai atrodoties spēlē!
|
||||
Can use /sethome and /home=Var izmantot /sethome un /home
|
||||
Teleport you to your home point=Teleportēt jūs uz mājas punktu
|
||||
Teleported to home!=Esiet teleportēts mājās!
|
||||
Set a home using /sethome=Uzstādiet māju punktu izmantojot /sethome
|
||||
Set your home point=Uzstādiet savu mājas punktu
|
||||
Home set!=Mājas punkts uzstādīts!
|
||||
Player not found!=Spēlētājs nav atrasts!
|
@ -3,10 +3,10 @@ Minetest Game mod: sfinv
|
||||
See license.txt for license information.
|
||||
|
||||
Simple Fast Inventory.
|
||||
A cleaner, simpler, solution to having an advanced inventory in Minetest.
|
||||
A cleaner, simpler, solution to having an advanced inventory in Luanti.
|
||||
See game_api.txt for this mod's API.
|
||||
Available for use outside of MTG here:
|
||||
https://forum.minetest.net/viewtopic.php?t=19765
|
||||
https://forum.luanti.org/viewtopic.php?t=19765
|
||||
|
||||
Authors of source code
|
||||
----------------------
|
||||
|
2
mods/sfinv/locale/sfinv.bg.tr
Executable file
2
mods/sfinv/locale/sfinv.bg.tr
Executable file
@ -0,0 +1,2 @@
|
||||
# textdomain: sfinv
|
||||
Crafting=Изработване
|
2
mods/sfinv/locale/sfinv.lv.tr
Normal file
2
mods/sfinv/locale/sfinv.lv.tr
Normal file
@ -0,0 +1,2 @@
|
||||
# textdomain: sfinv
|
||||
Crafting=Taisīšana
|
@ -6,7 +6,7 @@ Authors of source code
|
||||
----------------------
|
||||
Originally by Kahrl <kahrl@gmx.net> (LGPLv2.1+) and
|
||||
celeron55, Perttu Ahola <celeron55@gmail.com> (LGPLv2.1+)
|
||||
Various Minetest developers and contributors (LGPLv2.1+)
|
||||
Various Minetest Game developers and contributors (LGPLv2.1+)
|
||||
|
||||
Authors of media (textures)
|
||||
---------------------------
|
||||
|
@ -1,6 +1,6 @@
|
||||
-- stairs/init.lua
|
||||
|
||||
-- Minetest 0.4 mod: stairs
|
||||
-- Minetest Game mod: stairs
|
||||
-- See README.txt for licensing and other information.
|
||||
|
||||
|
||||
|
@ -4,7 +4,7 @@ License of source code
|
||||
GNU Lesser General Public License, version 2.1
|
||||
Copyright (C) 2011-2017 Kahrl <kahrl@gmx.net>
|
||||
Copyright (C) 2011-2017 celeron55, Perttu Ahola <celeron55@gmail.com>
|
||||
Copyright (C) 2012-2017 Various Minetest developers and contributors
|
||||
Copyright (C) 2012-2017 Various Minetest Game developers and contributors
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it under the terms
|
||||
of the GNU Lesser General Public License as published by the Free Software Foundation;
|
||||
|
145
mods/stairs/locale/stairs.bg.tr
Executable file
145
mods/stairs/locale/stairs.bg.tr
Executable file
@ -0,0 +1,145 @@
|
||||
# textdomain: stairs
|
||||
Glass Slab=Стъклена плоча
|
||||
Glass Stair=Стъклено стъпало
|
||||
Inner Glass Stair=Вътрешно стъклено стъпало
|
||||
Outer Glass Stair=Външно стъклено стъпало
|
||||
Obsidian Glass Slab=Плоча от обсидианено стъкло
|
||||
Obsidian Glass Stair=Стъпало от обсидианено стъкло
|
||||
Inner Obsidian Glass Stair=Вътрешно стъпало от обсидианено стъкло
|
||||
Outer Obsidian Glass Stair=Външно стъпало от обсидианено стъкло
|
||||
Wooden Slab=Дървена плоча
|
||||
Wooden Stair=Дървено стъпало
|
||||
Inner Wooden Stair=Вътрешно дървено стъпало
|
||||
Outer Wooden Stair=Външно дървено стъпало
|
||||
Jungle Wood Slab=Плоча от боабаб
|
||||
Jungle Wood Stair=Стъпало от боабаб
|
||||
Inner Jungle Wood Stair=Вътрешно стъпало от боабаб
|
||||
Outer Jungle Wood Stair=Външно стъпало от боабаб
|
||||
Pine Wood Slab=Плоча от борово дърво
|
||||
Pine Wood Stair=Стъпало от борово дърво
|
||||
Inner Pine Wood Stair=Вътрешно стъпало от борово дърво
|
||||
Outer Pine Wood Stair=Външно стъпало от борово дърво
|
||||
Acacia Wood Slab=Плоча от акациево дърво
|
||||
Acacia Wood Stair=Стъпало от акациево дърво
|
||||
Inner Acacia Wood Stair=Вътрешно стъпало от акациево дърво
|
||||
Outer Acacia Wood Stair=Външно стъпало от акациево дърво
|
||||
Aspen Wood Slab=Плоча от трепетлика
|
||||
Aspen Wood Stair=Стъпало от трепетлика
|
||||
Inner Aspen Wood Stair=Вътрешно стъпало от трепетлика
|
||||
Outer Aspen Wood Stair=Външно стъпало от трепетлика
|
||||
Stone Slab=Каменна плоча
|
||||
Stone Stair=Каменна стъпало
|
||||
Inner Stone Stair=Вътрешно каменно стъпало
|
||||
Outer Stone Stair=Външно каменна стъпало
|
||||
Cobblestone Stair=Стъпало от речни камъни
|
||||
Inner Cobblestone Stair=Вътрешно стъпало от речни камъни
|
||||
Outer Cobblestone Stair=Външно стъпало от речни камъни
|
||||
Cobblestone Slab=Плоча от речни камъни
|
||||
Mossy Cobblestone Stair=Стъпало от речни камъни покрити с мъх
|
||||
Inner Mossy Cobblestone Stair=Вътрешно стъпало от речни камъни покрити с мъх
|
||||
Outer Mossy Cobblestone Stair=Външно стъпало от речни камъни покрити с мъх
|
||||
Mossy Cobblestone Slab=Плоча от речни камъни покрити с мъх
|
||||
Stone Brick Stair=Стъпало от тухли от речни камъни
|
||||
Inner Stone Brick Stair=Вътрешно стъпало от тухли от речни камъни
|
||||
Outer Stone Brick Stair=Външно стъпало от тухли от речни камъни
|
||||
Stone Brick Slab=Плоча от тухли от речни камъни
|
||||
Stone Block Stair=Стъпало от блок от речни камъни
|
||||
Inner Stone Block Stair=Вътрешно стъпало от блок от речни камъни
|
||||
Outer Stone Block Stair=Външно стъпало от блок от речни камъни
|
||||
Stone Block Slab=Плоча от блок от речни камъни
|
||||
Desert Stone Stair=Стъпало от пустинен камък
|
||||
Inner Desert Stone Stair=Вътрешно стъпало от пустинен камък
|
||||
Outer Desert Stone Stair=Външно стъпало от пустинен камък
|
||||
Desert Stone Slab=Плоча от пустинен камък
|
||||
Desert Cobblestone Stair=Стъпало от речен пустинен камък
|
||||
Inner Desert Cobblestone Stair=Вътрешно стъпало от речен пустинен камък
|
||||
Outer Desert Cobblestone Stair=Външно стъпало от речен пустинен камък
|
||||
Desert Cobblestone Slab=Плоча от речен пустинен камък
|
||||
Desert Stone Brick Stair=Стъпало от тухли от пустинен камък
|
||||
Inner Desert Stone Brick Stair=Вътрешно стъпало от тухли от пустинен камък
|
||||
Outer Desert Stone Brick Stair=Външно стъпало от тухли от пустинен камък
|
||||
Desert Stone Brick Slab=Плоча от тухли от пустинен камък
|
||||
Desert Stone Block Stair=Стъпало от блок от пустинен камък
|
||||
Inner Desert Stone Block Stair=Вътрешно стъпало от блок от пустинен камък
|
||||
Outer Desert Stone Block Stair=Външно стъпало от блок от пустинен камък
|
||||
Desert Stone Block Slab=Плоча от блок от пустинен камък
|
||||
Sandstone Stair=Стъпало от пясъчник
|
||||
Inner Sandstone Stair=Вътрешно стъпало от пясъчник
|
||||
Outer Sandstone Stair=Външно стъпало от пясъчник
|
||||
Sandstone Slab=Плоча от пясъчник
|
||||
Sandstone Brick Stair=Стъпало от пясъчникови тухли
|
||||
Inner Sandstone Brick Stair=Вътрешно стъпало от пясъчникови тухли
|
||||
Outer Sandstone Brick Stair=Външно стъпало от пясъчникови тухли
|
||||
Sandstone Brick Slab=Плоча от пясъчникови тухли
|
||||
Sandstone Block Stair=Стъпало от пясъчников блок
|
||||
Inner Sandstone Block Stair=Вътрешно стъпало от пясъчников блок
|
||||
Outer Sandstone Block Stair=Външно стъпало от пясъчников блок
|
||||
Sandstone Block Slab=Плоча от пясъчников блок
|
||||
Desert Sandstone Stair=Стъпало от пустинен пясъчник
|
||||
Inner Desert Sandstone Stair=Вътрешно стъпало от пустинен пясъчник
|
||||
Outer Desert Sandstone Stair=Външно стъпало от пустинен пясъчник
|
||||
Desert Sandstone Slab=Плоча от пустинен пясъчник
|
||||
Desert Sandstone Brick Stair=Стъпало от пустинни пясъчникови тухли
|
||||
Inner Desert Sandstone Brick Stair=Вътрешно стъпало от пустинни пясъчникови тухли
|
||||
Outer Desert Sandstone Brick Stair=Външно стъпало от пустинни пясъчникови тухли
|
||||
Desert Sandstone Brick Slab=Плоча от пустинни пясъчникови тухли
|
||||
Desert Sandstone Block Stair=Стъпало от пустинен пясъчников блок
|
||||
Inner Desert Sandstone Block Stair=Вътрешно стъпало от пустинен пясъчников блок
|
||||
Outer Desert Sandstone Block Stair=Външно стъпало от пустинен пясъчников блок
|
||||
Desert Sandstone Block Slab=Плоча от пустинен пясъчников блок
|
||||
Silver Sandstone Stair=Стъпало от сребърен пясъчник
|
||||
Inner Silver Sandstone Stair=Вътрешно стъпало от сребърен пясъчник
|
||||
Outer Silver Sandstone Stair=Външно стъпало от сребърен пясъчник
|
||||
Silver Sandstone Slab=Плоча от сребърен пясъчник
|
||||
Silver Sandstone Brick Stair=Стъпало от сребърни пясъчникови тухли
|
||||
Inner Silver Sandstone Brick Stair=Вътрешно стъпало от сребърни пясъчникови тухли
|
||||
Outer Silver Sandstone Brick Stair=Външно стъпало от сребърни пясъчникови тухли
|
||||
Silver Sandstone Brick Slab=Плоча от сребърни пясъчникови тухли
|
||||
Silver Sandstone Block Stair=Стъпало от сребърен пясъчников блок
|
||||
Inner Silver Sandstone Block Stair=Вътрешно стъпало от сребърен пясъчников блок
|
||||
Outer Silver Sandstone Block Stair=Външно стъпало от сребърен пясъчников блок
|
||||
Silver Sandstone Block Slab=Плоча от сребърен пясъчников блок
|
||||
Obsidian Stair=Стъпало от обсидиан
|
||||
Inner Obsidian Stair=Вътрешно стъпало от обсидиан
|
||||
Outer Obsidian Stair=Външно стъпало от обсидиан
|
||||
Obsidian Slab=Плоча от обсидиан
|
||||
Obsidian Brick Stair=Стъпало от обсидианени тухли
|
||||
Inner Obsidian Brick Stair=Вътрешно стъпало от обсидианени тухли
|
||||
Outer Obsidian Brick Stair=Външно стъпало от обсидианени тухли
|
||||
Obsidian Brick Slab=Плоча от обсидианени тухли
|
||||
Obsidian Block Stair=Стъпало от обсидианен блок
|
||||
Inner Obsidian Block Stair=Вътрешно стъпало от обсидианен блок
|
||||
Outer Obsidian Block Stair=Външно стъпало от обсидианен блок
|
||||
Obsidian Block Slab=Плоча от обсидианен блок
|
||||
Brick Stair=Тухлено стъпало
|
||||
Inner Brick Stair=Вътрешно тухлено стъпало
|
||||
Outer Brick Stair=Външно тохлено стъпало
|
||||
Brick Slab=Тухлена плоча
|
||||
Steel Block Stair=Стъпало от стоманен блок
|
||||
Inner Steel Block Stair=Вътрешно стъпало от стоманен блок
|
||||
Outer Steel Block Stair=Външно стъпало от стоманен блок
|
||||
Steel Block Slab=Плоча от стоманен блок
|
||||
Tin Block Stair=Стъпало от калаен блок
|
||||
Inner Tin Block Stair=Вътрешно стъпало от калаен блок
|
||||
Outer Tin Block Stair=Външно стъпало от калаен блок
|
||||
Tin Block Slab=Плоча от калаен блок
|
||||
Copper Block Stair=Стъпало от мед блок
|
||||
Inner Copper Block Stair=Вътрешно стъпало от мед блок
|
||||
Outer Copper Block Stair=Външно тъпало от мед блок
|
||||
Copper Block Slab=Плоча от меден блок
|
||||
Bronze Block Stair=Стъпало от бронзов къс
|
||||
Inner Bronze Block Stair=Вътрешно стъпало от бронзов къс
|
||||
Outer Bronze Block Stair=Външно стъпало от бронзов къс
|
||||
Bronze Block Slab=Плоча от бронзов къс
|
||||
Gold Block Stair=Стъпало от златен къс
|
||||
Inner Gold Block Stair=Вътрешно стъпало от златен къс
|
||||
Outer Gold Block Stair=Външно стъпало от златен къс
|
||||
Gold Block Slab=Плоча от златен къс
|
||||
Ice Stair=Ледено стъпало
|
||||
Inner Ice Stair=Вътрешно ледено стъпало
|
||||
Outer Ice Stair=Външно ледено стъпало
|
||||
Ice Slab=Плоча от лед
|
||||
Snow Block Stair=Стъпало от снежен къс
|
||||
Inner Snow Block Stair=Вътрешно стъпало от снежен къс
|
||||
Outer Snow Block Stair=Външно стъпало от снежен къс
|
||||
Snow Block Slab=Плоча от снежен къс
|
145
mods/stairs/locale/stairs.lv.tr
Normal file
145
mods/stairs/locale/stairs.lv.tr
Normal file
@ -0,0 +1,145 @@
|
||||
# textdomain: stairs
|
||||
Glass Stair=Stikla pakāpiens
|
||||
Glass Slab=Stikla plātne
|
||||
Inner Glass Stair=Iekšējs stikla pakāpiens
|
||||
Outer Glass Stair=Ārējs stikla pakāpiens
|
||||
Obsidian Glass Stair=Obsidiāna stikla pakāpiens
|
||||
Obsidian Glass Slab=Obsidiāna stikla plātne
|
||||
Inner Obsidian Glass Stair=Iekšējs obsidiāna stikla pakāpiens
|
||||
Outer Obsidian Glass Stair=Ārējs obsidiāna stikla pakāpiens
|
||||
Wooden Stair=Koka pakāpiens
|
||||
Inner Wooden Stair=Iekšējs koka pakāpiens
|
||||
Outer Wooden Stair=Ārējs koka pakāpiens
|
||||
Wooden Slab=Koka plātne
|
||||
Jungle Wood Stair=Džungļu koka pakāpiens
|
||||
Inner Jungle Wood Stair=Iekšējs džungļu koka pakāpiens
|
||||
Outer Jungle Wood Stair=Ārējs džungļu koka pakāpiens
|
||||
Jungle Wood Slab=Džungļu koka plātne
|
||||
Pine Wood Stair=Skujkoka koka pakāpiens
|
||||
Inner Pine Wood Stair=Iekšējs skujkoka koka pakāpiens
|
||||
Outer Pine Wood Stair= Arējs skujkoka koka pakāpiens
|
||||
Pine Wood Slab=Skujkoka koka plātne
|
||||
Acacia Wood Stair=Akācijas koka pakāpiens
|
||||
Inner Acacia Wood Stair=Iekšējs akācijas koka pakāpiens
|
||||
Outer Acacia Wood Stair=Ārējs akācijas koka pakāpiens
|
||||
Acacia Wood Slab=Akācijas koka plātne
|
||||
Aspen Wood Stair=Apses koka pakāpiens
|
||||
Inner Aspen Wood Stair=Iekšējs apses koka pakāpiens
|
||||
Outer Aspen Wood Stair=Ārējs apses koka pakāpiens
|
||||
Aspen Wood Slab=Apses koka plātne
|
||||
Stone Stair=Akmens pakāpiens
|
||||
Inner Stone Stair=Iekšējs akmens pakāpiens
|
||||
Outer Stone Stair=Ārējs akmens pakāpiens
|
||||
Stone Slab=Akmens plātne
|
||||
Cobblestone Stair=Mūrakmens pakāpiens
|
||||
Inner Cobblestone Stair=Iekšējs mūrakmens pakāpiens
|
||||
Outer Cobblestone Stair=Ārējs mūrakmens pakāpiens
|
||||
Cobblestone Slab=Mūrakmens plātne
|
||||
Mossy Cobblestone Stair=Apsūnējuša mūrakmens pakāpiens
|
||||
Inner Mossy Cobblestone Stair=Apsūnējuša mūrakmens iekšējs pakāpiens
|
||||
Outer Mossy Cobblestone Stair=Apsūnējuša mūrakmens ārējs pakāpiens
|
||||
Mossy Cobblestone Slab=Apsūnējuša mūrakmens plātne
|
||||
Stone Brick Stair=Akmens ķieģeļu pakāpiens
|
||||
Inner Stone Brick Stair=Iekšējs akmens ķieģeļu pakāpiens
|
||||
Outer Stone Brick Stair=Ārējs akmens ķieģeļu pakāpiens
|
||||
Stone Brick Slab=Akmens ķieģeļu plātne
|
||||
Stone Block Stair=Akmens bloka pakāpiens
|
||||
Inner Stone Block Stair=Iekšējs akmens bloka pakāpiens
|
||||
Outer Stone Block Stair=Ārējs akmens bloka pakāpiens
|
||||
Stone Block Slab=Akmens bloka plātne
|
||||
Desert Stone Stair=Tuksneša akmens pakāpiens
|
||||
Inner Desert Stone Stair=Iekšējs tuksneša akmens pakāpiens
|
||||
Outer Desert Stone Stair=Ārējs tuksneša akmens pakāpiens
|
||||
Desert Stone Slab=Tuksneša akmens plātne
|
||||
Desert Cobblestone Stair=Tuksneša mūrakmens pakāpiens
|
||||
Inner Desert Cobblestone Stair=Iekšējs tuksneša mūrakmens pakāpiens
|
||||
Outer Desert Cobblestone Stair=Ārējs tuksneša mūrakmens pakāpiens
|
||||
Desert Cobblestone Slab=Tuksneša mūrakmens plātne
|
||||
Desert Stone Brick Stair=Tuksneša akmens ķieģeļu pakāpiens
|
||||
Inner Desert Stone Brick Stair=Iekšējs tuksneša akmens ķieģeļu pakāpiens
|
||||
Outer Desert Stone Brick Stair=Ārējs tuksneša ķieģeļu pakāpiens
|
||||
Desert Stone Brick Slab=Tuksneša ķieģeļu plātne
|
||||
Desert Stone Block Stair=Tuksneša akmens bloka pakāpiens
|
||||
Inner Desert Stone Block Stair=Iekšējs tuksneša akmens bloka pakāpiens
|
||||
Outer Desert Stone Block Stair=Ārējs tuksneša akmens bloka pakāpiens
|
||||
Desert Stone Block Slab=Tuksneša akmens bloka plātne
|
||||
Sandstone Stair=Smilšakmens pakāpiens
|
||||
Inner Sandstone Stair=Iekšējs smilšakmens pakāpiens
|
||||
Outer Sandstone Stair=Ārējs smilšakmens pakāpiens
|
||||
Sandstone Slab=Smilšakmens plātne
|
||||
Sandstone Brick Stair=Smilšakmens ķieģeļu pakāpiens
|
||||
Inner Sandstone Brick Stair=Iekšējs smilšakmens ķieģeļu pakāpiens
|
||||
Outer Sandstone Brick Stair=Ārējs smilšakmens ķieģeļu pakāpiens
|
||||
Sandstone Brick Slab=Smilšakmens ķieģeļu plātne
|
||||
Sandstone Block Stair=Smilšakmens bloka pakāpiens
|
||||
Inner Sandstone Block Stair=Iekšējs smilšakmens bloka pakāpiens
|
||||
Outer Sandstone Block Stair=Ārējs smilšakmens bloka pakāpiens
|
||||
Sandstone Block Slab=Smilšakmens bloka plātne
|
||||
Desert Sandstone Stair=Tuksneša smilšakmens pakāpiens
|
||||
Inner Desert Sandstone Stair=Iekšējs tuksneša smilšakmens pakāpiens
|
||||
Outer Desert Sandstone Stair=Ārējs tuksneša smilšakmens pakāpiens
|
||||
Desert Sandstone Slab=Tuksneša smilšakmens plātne
|
||||
Desert Sandstone Brick Stair=Tuksneša smilšakmens ķieģeļu pakāpiens
|
||||
Inner Desert Sandstone Brick Stair=Iekšējs tuksneša smilšakmens ķieģeļu pakāpiens
|
||||
Outer Desert Sandstone Brick Stair=Ārējs tuksneša smilšakmens ķieģeļu pakāpiens
|
||||
Desert Sandstone Brick Slab=Tuksneša smilšakmens ķieģeļu plātne
|
||||
Desert Sandstone Block Stair=Tuksneša smilšakmens bloka pakāpiens
|
||||
Inner Desert Sandstone Block Stair=Iekšējs tuksneša smilšakmens bloka pakāpiens
|
||||
Outer Desert Sandstone Block Stair=Ārējs tuksneša smilšakmens bloka pakāpiens
|
||||
Desert Sandstone Block Slab=Tuksneša smilšakmens bloka plātne
|
||||
Silver Sandstone Stair=Baltā smilšakmens pakāpiens
|
||||
Inner Silver Sandstone Stair=Iekšējs baltā smilšakmens pakāpiens
|
||||
Outer Silver Sandstone Stair=Ārējs baltā smilšakmens pakāpiens
|
||||
Silver Sandstone Slab=Baltā smilšakmens plātne
|
||||
Silver Sandstone Brick Stair=Baltā smilšakmens ķieģeļu pakāpiens
|
||||
Inner Silver Sandstone Brick Stair=Iekšējs baltā smilšakmens ķieģeļu pakāpiens
|
||||
Outer Silver Sandstone Brick Stair=Ārējs baltā smilšakmens ķieģeļu pakāpiens
|
||||
Silver Sandstone Brick Slab=Baltā smilšakmens ķieģeļu plātne
|
||||
Silver Sandstone Block Stair=Baltā smilšakmens bloka pakāpiens
|
||||
Inner Silver Sandstone Block Stair=Iekšējs baltā smilšakmens bloka pakāpiens
|
||||
Outer Silver Sandstone Block Stair=Ārējs baltā smilšakmens bloka pakāpiens
|
||||
Silver Sandstone Block Slab=Baltā smilšakmens bloka plātne
|
||||
Obsidian Stair=Obsidiāna pakāpiens
|
||||
Inner Obsidian Stair=Iekšējs obsidiāna pakāpiens
|
||||
Outer Obsidian Stair=Ārējs obsidiāna pakāpiens
|
||||
Obsidian Slab=Obsidiāna plātne
|
||||
Obsidian Brick Stair=Obsidiāna ķieģeļu pakāpiens
|
||||
Inner Obsidian Brick Stair=Iekšējs obsidiāna ķieģeļu pakāpiens
|
||||
Outer Obsidian Brick Stair=Ārējs obsidiāna ķieģeļu pakāpiens
|
||||
Obsidian Brick Slab=Obsidiāna ķieģeļu plātne
|
||||
Obsidian Block Stair=Obsidiāna bloka pakāpiens
|
||||
Inner Obsidian Block Stair=Iekšējs obsidiāna bloka pakāpiens
|
||||
Outer Obsidian Block Stair=Ārejs obsidiāna bloka pakāpiens
|
||||
Obsidian Block Slab=Obsidiāna bloka plātne
|
||||
Brick Stair=Ķieģeļu pakāpiens
|
||||
Inner Brick Stair=Iekšējs ķieģeļu pakāpiens
|
||||
Outer Brick Stair=Ārējs ķieģeļu pakāpiens
|
||||
Brick Slab=Ķieģeļu plātne
|
||||
Steel Block Stair=Tērauda pakāpiens
|
||||
Inner Steel Block Stair=Iekšējs tērauda pakāpiens
|
||||
Outer Steel Block Stair=Ārējs tērauda pakāpiens
|
||||
Steel Block Slab=Tērauda plātne
|
||||
Tin Block Stair=Alvas pakāpiens
|
||||
Inner Tin Block Stair=Iekšējs alvas pakāpiens
|
||||
Outer Tin Block Stair=Ārējs alvas pakāpiens
|
||||
Tin Block Slab=Alvas plātne
|
||||
Copper Block Stair=Vara pakāpiens
|
||||
Inner Copper Block Stair=Iekšējs vara pakāpiens
|
||||
Outer Copper Block Stair=Ārējs vara pakāpiens
|
||||
Copper Block Slab=Vara plātne
|
||||
Bronze Block Stair=Bronzas pakāpiens
|
||||
Inner Bronze Block Stair=Iekšējs bronza pakāpiens
|
||||
Outer Bronze Block Stair=Ārējs bronzas pakāpiens
|
||||
Bronze Block Slab=Bronzas plātne
|
||||
Gold Block Stair=Zelta pakāpiens
|
||||
Inner Gold Block Stair=Iekšējs zelta pakāpiens
|
||||
Outer Gold Block Stair=Ārējs zelta pakāpiens
|
||||
Gold Block Slab=Zelta plātne
|
||||
Ice Stair=Ledus pakāpiens
|
||||
Inner Ice Stair=Iekšējs ledus pakāpiens
|
||||
Outer Ice Stair=Ārējs ledus pakāpiens
|
||||
Ice Slab=Ledus plātne
|
||||
Snow Block Stair=Sniega pakāpiens
|
||||
Inner Snow Block Stair=Iekšējs sniega pakāpiens
|
||||
Outer Snow Block Stair=Ārējs sniega pakāpiens
|
||||
Snow Block Slab=Sniega plātne
|
@ -7,7 +7,7 @@ Authors of source code
|
||||
PilzAdam (MIT)
|
||||
ShadowNinja (MIT)
|
||||
sofar (sofar@foo-projects.org) (MIT)
|
||||
Various Minetest developers and contributors (MIT)
|
||||
Various Minetest Game developers and contributors (MIT)
|
||||
|
||||
Authors of media
|
||||
----------------
|
||||
@ -45,8 +45,7 @@ by frankelmedico (CC0 1.0)
|
||||
|
||||
Introduction
|
||||
------------
|
||||
This mod adds TNT to Minetest. TNT is a tool to help the player
|
||||
in mining.
|
||||
This mod adds TNT. TNT is a tool to help the player in mining.
|
||||
|
||||
How to use the mod:
|
||||
|
||||
|
@ -12,12 +12,6 @@ if enable_tnt == nil then
|
||||
enable_tnt = minetest.is_singleplayer()
|
||||
end
|
||||
|
||||
-- loss probabilities array (one in X will be lost)
|
||||
local loss_prob = {}
|
||||
|
||||
loss_prob["default:cobble"] = 3
|
||||
loss_prob["default:dirt"] = 4
|
||||
|
||||
local tnt_radius = tonumber(minetest.settings:get("tnt_radius") or 3)
|
||||
|
||||
-- Fill a list with data for content IDs, after all nodes are registered
|
||||
@ -27,12 +21,20 @@ minetest.register_on_mods_loaded(function()
|
||||
cid_data[minetest.get_content_id(name)] = {
|
||||
name = name,
|
||||
drops = def.drops,
|
||||
flammable = def.groups.flammable,
|
||||
flammable = def.groups and (def.groups.flammable or 0) ~= 0,
|
||||
on_blast = def.on_blast,
|
||||
}
|
||||
end
|
||||
end)
|
||||
|
||||
local function particle_texture(name)
|
||||
local ret = {name = name}
|
||||
if minetest.features.particle_blend_clip then
|
||||
ret.blend = "clip"
|
||||
end
|
||||
return ret
|
||||
end
|
||||
|
||||
local function rand_pos(center, pos, radius)
|
||||
local def
|
||||
local reg_nodes = minetest.registered_nodes
|
||||
@ -76,11 +78,14 @@ end
|
||||
|
||||
local function add_drop(drops, item)
|
||||
item = ItemStack(item)
|
||||
local name = item:get_name()
|
||||
if loss_prob[name] ~= nil and math.random(1, loss_prob[name]) == 1 then
|
||||
-- Note that this needs to be set on the dropped item, not the node.
|
||||
-- Value represents "one in X will be lost"
|
||||
local lost = item:get_definition()._tnt_loss or 0
|
||||
if lost > 0 and (lost == 1 or math.random(1, lost) == 1) then
|
||||
return
|
||||
end
|
||||
|
||||
local name = item:get_name()
|
||||
local drop = drops[name]
|
||||
if drop == nil then
|
||||
drops[name] = item
|
||||
@ -214,7 +219,7 @@ local function add_effects(pos, radius, drops)
|
||||
size = radius * 10,
|
||||
collisiondetection = false,
|
||||
vertical = false,
|
||||
texture = "tnt_boom.png",
|
||||
texture = particle_texture("tnt_boom.png"),
|
||||
glow = 15,
|
||||
})
|
||||
minetest.add_particlespawner({
|
||||
@ -230,12 +235,12 @@ local function add_effects(pos, radius, drops)
|
||||
maxexptime = 2.5,
|
||||
minsize = radius * 3,
|
||||
maxsize = radius * 5,
|
||||
texture = "tnt_smoke.png",
|
||||
texture = particle_texture("tnt_smoke.png"),
|
||||
})
|
||||
|
||||
-- we just dropped some items. Look at the items entities and pick
|
||||
-- one of them to use as texture
|
||||
local texture = "tnt_blast.png" --fallback texture
|
||||
-- we just dropped some items. Look at the items and pick
|
||||
-- one of them to use as texture.
|
||||
local texture = "tnt_blast.png" -- fallback
|
||||
local node
|
||||
local most = 0
|
||||
for name, stack in pairs(drops) do
|
||||
@ -345,6 +350,13 @@ local function tnt_explode(pos, radius, ignore_protection, ignore_on_blast, owne
|
||||
local on_construct_queue = {}
|
||||
basic_flame_on_construct = minetest.registered_nodes["fire:basic_flame"].on_construct
|
||||
|
||||
-- Used to efficiently remove metadata of nodes that were destroyed.
|
||||
-- Metadata is probably sparse, so this may save us some work.
|
||||
local has_meta = {}
|
||||
for _, p in ipairs(minetest.find_nodes_with_meta(p1, p2)) do
|
||||
has_meta[a:indexp(p)] = true
|
||||
end
|
||||
|
||||
local c_fire = minetest.get_content_id("fire:basic_flame")
|
||||
for z = -radius, radius do
|
||||
for y = -radius, radius do
|
||||
@ -355,9 +367,16 @@ local function tnt_explode(pos, radius, ignore_protection, ignore_on_blast, owne
|
||||
local cid = data[vi]
|
||||
local p = {x = pos.x + x, y = pos.y + y, z = pos.z + z}
|
||||
if cid ~= c_air and cid ~= c_ignore then
|
||||
data[vi] = destroy(drops, p, cid, c_air, c_fire,
|
||||
local new_cid = destroy(drops, p, cid, c_air, c_fire,
|
||||
on_blast_queue, on_construct_queue,
|
||||
ignore_protection, ignore_on_blast, owner)
|
||||
|
||||
if new_cid ~= data[vi] then
|
||||
data[vi] = new_cid
|
||||
if has_meta[vi] then
|
||||
minetest.get_meta(p):from_table(nil)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
vi = vi + 1
|
||||
|
@ -5,7 +5,7 @@ The MIT License (MIT)
|
||||
Copyright (C) 2014-2016 PilzAdam
|
||||
Copyright (C) 2014-2016 ShadowNinja
|
||||
Copyright (C) 2016 sofar (sofar@foo-projects.org)
|
||||
Copyright (C) 2014-2016 Various Minetest developers and contributors
|
||||
Copyright (C) 2014-2016 Various Minetest Game developers and contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
||||
software and associated documentation files (the "Software"), to deal in the Software
|
||||
|
4
mods/tnt/locale/tnt.bg.tr
Executable file
4
mods/tnt/locale/tnt.bg.tr
Executable file
@ -0,0 +1,4 @@
|
||||
# textdomain: tnt
|
||||
Gun Powder=Барут
|
||||
TNT Stick=Пръчка динамит
|
||||
TNT=Динамит
|
4
mods/tnt/locale/tnt.lv.tr
Normal file
4
mods/tnt/locale/tnt.lv.tr
Normal file
@ -0,0 +1,4 @@
|
||||
# textdomain: tnt
|
||||
Gun Powder=Šaujampulveris
|
||||
TNT Stick=Dinamīta kociņš
|
||||
TNT=Dinamīts
|
@ -6,7 +6,7 @@ Authors of source code
|
||||
----------------------
|
||||
Originally by Vanessa Ezekowitz (LGPLv2.1+)
|
||||
Modified by Perttu Ahola <celeron55@gmail.com> (LGPLv2.1+)
|
||||
Various Minetest developers and contributors (LGPLv2.1+)
|
||||
Various Minetest Game developers and contributors (LGPLv2.1+)
|
||||
|
||||
Authors of media (textures)
|
||||
---------------------------
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user