mirror of
https://github.com/minetest-mods/maptools.git
synced 2025-06-29 22:00:24 +02:00
Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
b537954edf | |||
7cce8f495f | |||
75d3253c5f | |||
246d525c20 | |||
f9bf6a0951 | |||
235e02b0be | |||
e6f61c31ce | |||
4683434e0a | |||
f0d25e85ad | |||
caa92be9dd | |||
40f840dd33 | |||
ae3cc4b075 |
@ -3,6 +3,10 @@ unused_args = false
|
|||||||
allow_defined_top = true
|
allow_defined_top = true
|
||||||
max_line_length = 90
|
max_line_length = 90
|
||||||
|
|
||||||
|
globals = {
|
||||||
|
"maptools"
|
||||||
|
}
|
||||||
|
|
||||||
stds.minetest = {
|
stds.minetest = {
|
||||||
read_globals = {
|
read_globals = {
|
||||||
"DIR_DELIM",
|
"DIR_DELIM",
|
||||||
@ -23,7 +27,3 @@ stds.minetest = {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
read_globals = {
|
|
||||||
"intllib",
|
|
||||||
}
|
|
||||||
|
14
CHANGELOG.md
14
CHANGELOG.md
@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [2.1.0] - 2020-06-08
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- 10 coins of each type can now be crafted using 2 ingots (bronze, silver or gold).
|
||||||
|
- Silver coins require [More Ores](https://github.com/minetest-mods/moreores)
|
||||||
|
to be crafted, since minetest_game doesn't have silver ingots.
|
||||||
|
- Coins are now displayed in the creative inventory.
|
||||||
|
- Moved translations from intllib to Minetest's built-in localization system.
|
||||||
|
- This allows translations to show up independently of the server's language.
|
||||||
|
|
||||||
## [2.0.0] - 2019-11-25
|
## [2.0.0] - 2019-11-25
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
@ -32,6 +43,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||||||
|
|
||||||
- Initial versioned release.
|
- Initial versioned release.
|
||||||
|
|
||||||
[Unreleased]: https://github.com/minetest-mods/maptools/compare/v2.0.0...HEAD
|
[Unreleased]: https://github.com/minetest-mods/maptools/compare/v2.1.0...HEAD
|
||||||
|
[2.1.0]: https://github.com/minetest-mods/maptools/compare/v2.0.0...v2.1.0
|
||||||
[2.0.0]: https://github.com/minetest-mods/maptools/compare/v1.1.0...v2.0.0
|
[2.0.0]: https://github.com/minetest-mods/maptools/compare/v1.1.0...v2.0.0
|
||||||
[1.1.0]: https://github.com/minetest-mods/maptools/compare/v1.0.0...v1.1.0
|
[1.1.0]: https://github.com/minetest-mods/maptools/compare/v1.0.0...v1.1.0
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# zlib license
|
# zlib license
|
||||||
|
|
||||||
Copyright © 2012-2019 Hugo Locurcio and contributors
|
Copyright © 2012-2020 Hugo Locurcio and contributors
|
||||||
|
|
||||||
**This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.**
|
**This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.**
|
||||||
|
|
||||||
|
@ -23,6 +23,7 @@ as they cannot be removed by hand (they can only be removed with
|
|||||||
| `maptools:no_interact` | Prevents interacting through the block (opening chests, furnaces, attacking entities, …), but can still be walked through. |
|
| `maptools:no_interact` | Prevents interacting through the block (opening chests, furnaces, attacking entities, …), but can still be walked through. |
|
||||||
| `maptools:damage_{1…5}` | :warning: Damaging blocks which damage players by 1 to 5 HP per second. |
|
| `maptools:damage_{1…5}` | :warning: Damaging blocks which damage players by 1 to 5 HP per second. |
|
||||||
| `maptools:kill` | :warning: Instant kill blocks (damages players by 20 HP per second). |
|
| `maptools:kill` | :warning: Instant kill blocks (damages players by 20 HP per second). |
|
||||||
|
| `maptools:drowning` | :warning: Simulates drowning in water. |
|
||||||
| `maptools:light_block` | :warning: Invisible non-solid block, prevents light from passing through. |
|
| `maptools:light_block` | :warning: Invisible non-solid block, prevents light from passing through. |
|
||||||
| `maptools:light_bulb` | :warning: Invisible non-solid block, emitting the maximum amount of light. |
|
| `maptools:light_bulb` | :warning: Invisible non-solid block, emitting the maximum amount of light. |
|
||||||
|
|
||||||
|
@ -21,9 +21,7 @@ git clone https://github.com/minetest-mods/maptools.git
|
|||||||
|
|
||||||
You can also
|
You can also
|
||||||
[download a ZIP archive](https://github.com/minetest-mods/maptools/archive/master.zip)
|
[download a ZIP archive](https://github.com/minetest-mods/maptools/archive/master.zip)
|
||||||
of Map Tools. If you do so, you will need to extract the archive then rename
|
of Map Tools.
|
||||||
the resulting folder from `maptools-master` to `maptools` – this is
|
|
||||||
**absolutely** required, as the mod won't work otherwise.
|
|
||||||
|
|
||||||
### Enable the mod
|
### Enable the mod
|
||||||
|
|
||||||
@ -69,7 +67,7 @@ versions than 5.0.0 will generally not be fixed.
|
|||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Copyright © 2012-2019 Hugo Locurcio and contributors
|
Copyright © 2012-2020 Hugo Locurcio and contributors
|
||||||
|
|
||||||
- Map Tools code is licensed under the zlib license, see
|
- Map Tools code is licensed under the zlib license, see
|
||||||
[`LICENSE.md`](LICENSE.md) for details.
|
[`LICENSE.md`](LICENSE.md) for details.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
--[[
|
--[[
|
||||||
Map Tools: alias definitions
|
Map Tools: alias definitions
|
||||||
|
|
||||||
Copyright © 2012-2019 Hugo Locurcio and contributors.
|
Copyright © 2012-2020 Hugo Locurcio and contributors.
|
||||||
Licensed under the zlib license. See LICENSE.md for more information.
|
Licensed under the zlib license. See LICENSE.md for more information.
|
||||||
--]]
|
--]]
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
--[[
|
--[[
|
||||||
Map Tools: configuration handling
|
Map Tools: configuration handling
|
||||||
|
|
||||||
Copyright © 2012-2019 Hugo Locurcio and contributors.
|
Copyright © 2012-2020 Hugo Locurcio and contributors.
|
||||||
Licensed under the zlib license. See LICENSE.md for more information.
|
Licensed under the zlib license. See LICENSE.md for more information.
|
||||||
--]]
|
--]]
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
--[[
|
--[[
|
||||||
Map Tools: item definitions
|
Map Tools: item definitions
|
||||||
|
|
||||||
Copyright © 2012-2019 Hugo Locurcio and contributors.
|
Copyright © 2012-2020 Hugo Locurcio and contributors.
|
||||||
Licensed under the zlib license. See LICENSE.md for more information.
|
Licensed under the zlib license. See LICENSE.md for more information.
|
||||||
--]]
|
--]]
|
||||||
|
|
||||||
@ -14,7 +14,12 @@ minetest.register_craftitem("maptools:copper_coin", {
|
|||||||
inventory_image = "maptools_copper_coin.png",
|
inventory_image = "maptools_copper_coin.png",
|
||||||
wield_scale = {x = 0.5, y = 0.5, z = 0.25},
|
wield_scale = {x = 0.5, y = 0.5, z = 0.25},
|
||||||
stack_max = 10000,
|
stack_max = 10000,
|
||||||
groups = {not_in_creative_inventory = maptools.creative},
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "maptools:copper_coin 10",
|
||||||
|
type = "shapeless",
|
||||||
|
recipe = { "default:copper_ingot", "default:copper_ingot" }
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craftitem("maptools:silver_coin", {
|
minetest.register_craftitem("maptools:silver_coin", {
|
||||||
@ -22,15 +27,27 @@ minetest.register_craftitem("maptools:silver_coin", {
|
|||||||
inventory_image = "maptools_silver_coin.png",
|
inventory_image = "maptools_silver_coin.png",
|
||||||
wield_scale = {x = 0.5, y = 0.5, z = 0.25},
|
wield_scale = {x = 0.5, y = 0.5, z = 0.25},
|
||||||
stack_max = 10000,
|
stack_max = 10000,
|
||||||
groups = {not_in_creative_inventory = maptools.creative},
|
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if minetest.get_modpath("moreores") then
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "maptools:silver_coin 10",
|
||||||
|
type = "shapeless",
|
||||||
|
recipe = { "moreores:silver_ingot", "moreores:silver_ingot" }
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|
||||||
minetest.register_craftitem("maptools:gold_coin", {
|
minetest.register_craftitem("maptools:gold_coin", {
|
||||||
description = S("Gold Coin"),
|
description = S("Gold Coin"),
|
||||||
inventory_image = "maptools_gold_coin.png",
|
inventory_image = "maptools_gold_coin.png",
|
||||||
wield_scale = {x = 0.5, y = 0.5, z = 0.25},
|
wield_scale = {x = 0.5, y = 0.5, z = 0.25},
|
||||||
stack_max = 10000,
|
stack_max = 10000,
|
||||||
groups = {not_in_creative_inventory = maptools.creative},
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "maptools:gold_coin 10",
|
||||||
|
type = "shapeless",
|
||||||
|
recipe = { "default:gold_ingot", "default:gold_ingot" }
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craftitem("maptools:infinitefuel", {
|
minetest.register_craftitem("maptools:infinitefuel", {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
--[[
|
--[[
|
||||||
Map Tools: unbreakable default nodes
|
Map Tools: unbreakable default nodes
|
||||||
|
|
||||||
Copyright © 2012-2019 Hugo Locurcio and contributors.
|
Copyright © 2012-2020 Hugo Locurcio and contributors.
|
||||||
Licensed under the zlib license. See LICENSE.md for more information.
|
Licensed under the zlib license. See LICENSE.md for more information.
|
||||||
--]]
|
--]]
|
||||||
|
|
||||||
|
5
init.lua
5
init.lua
@ -3,7 +3,7 @@
|
|||||||
** Map Tools **
|
** Map Tools **
|
||||||
By Calinou.
|
By Calinou.
|
||||||
|
|
||||||
Copyright © 2012-2019 Hugo Locurcio and contributors.
|
Copyright © 2012-2020 Hugo Locurcio and contributors.
|
||||||
Licensed under the zlib license. See LICENSE.md for more information.
|
Licensed under the zlib license. See LICENSE.md for more information.
|
||||||
=====================================================================
|
=====================================================================
|
||||||
--]]
|
--]]
|
||||||
@ -12,9 +12,8 @@ maptools = {}
|
|||||||
|
|
||||||
local modpath = minetest.get_modpath("maptools")
|
local modpath = minetest.get_modpath("maptools")
|
||||||
|
|
||||||
local S, NS = dofile(modpath .. "/intllib.lua")
|
local S = minetest.get_translator("maptools")
|
||||||
maptools.S = S
|
maptools.S = S
|
||||||
maptools.NS = NS
|
|
||||||
|
|
||||||
maptools.drop_msg = function(itemstack, player)
|
maptools.drop_msg = function(itemstack, player)
|
||||||
local name = player:get_player_name()
|
local name = player:get_player_name()
|
||||||
|
44
intllib.lua
44
intllib.lua
@ -1,44 +0,0 @@
|
|||||||
-- Fallback functions for when `intllib` is not installed.
|
|
||||||
-- Code released under Unlicense <http://unlicense.org>.
|
|
||||||
|
|
||||||
-- Get the latest version of this file at:
|
|
||||||
-- https://raw.githubusercontent.com/minetest-mods/intllib/master/lib/intllib.lua
|
|
||||||
|
|
||||||
local function format(str, ...)
|
|
||||||
local args = { ... }
|
|
||||||
local function repl(escape, open, num, close)
|
|
||||||
if escape == "" then
|
|
||||||
local replacement = tostring(args[tonumber(num)])
|
|
||||||
if open == "" then
|
|
||||||
replacement = replacement..close
|
|
||||||
end
|
|
||||||
return replacement
|
|
||||||
else
|
|
||||||
return "@"..open..num..close
|
|
||||||
end
|
|
||||||
end
|
|
||||||
return (str:gsub("(@?)@(%(?)(%d+)(%)?)", repl))
|
|
||||||
end
|
|
||||||
|
|
||||||
local gettext, ngettext
|
|
||||||
if minetest.get_modpath("intllib") then
|
|
||||||
if intllib.make_gettext_pair then
|
|
||||||
-- New method using gettext.
|
|
||||||
gettext, ngettext = intllib.make_gettext_pair()
|
|
||||||
else
|
|
||||||
-- Old method using text files.
|
|
||||||
gettext = intllib.Getter()
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
-- Fill in missing functions.
|
|
||||||
|
|
||||||
gettext = gettext or function(msgid, ...)
|
|
||||||
return format(msgid, ...)
|
|
||||||
end
|
|
||||||
|
|
||||||
ngettext = ngettext or function(msgid, msgid_plural, n, ...)
|
|
||||||
return format(n==1 and msgid or msgid_plural, ...)
|
|
||||||
end
|
|
||||||
|
|
||||||
return gettext, ngettext
|
|
@ -1,39 +0,0 @@
|
|||||||
# Translation by kaeza
|
|
||||||
|
|
||||||
[maptools] loaded. = [maptools] cargado.
|
|
||||||
|
|
||||||
Cloud = Nube
|
|
||||||
Infinite Fuel = Combustible Infinito
|
|
||||||
Admin Pickaxe = Pico de Administrador
|
|
||||||
Copper Coin = Moneda de Cobre
|
|
||||||
Silver Coin = Moneda de Plata
|
|
||||||
Gold Coin = Moneda de Oro
|
|
||||||
Super Apple = Super Manzana
|
|
||||||
Fake Ladder = Escalera Falsa
|
|
||||||
Smoke Block = Bloque de Humo
|
|
||||||
Damaging Block: %s = Bloque Dañino: %s
|
|
||||||
Kill Block = Bloque Mortal
|
|
||||||
Build Prevention = Bloqueador de Construcción
|
|
||||||
Interact Prevention = Bloqueador de Interacción
|
|
||||||
Climb Block = Bloque Escalable
|
|
||||||
Light Block = Bloqueador de Luz
|
|
||||||
Light Bulb = Lamparilla
|
|
||||||
Player Clip = Bloqueo de Jugador
|
|
||||||
Full Clip = Bloqueo Total
|
|
||||||
|
|
||||||
Unbreakable Stone = Piedra Irrompible
|
|
||||||
Unbreakable Sand = Arena Irrompible
|
|
||||||
Unbreakable Desert Stone = Piedra Desértica Irrompible
|
|
||||||
Unbreakable Desert Sand = Arena Desértica Irrompible
|
|
||||||
Unbreakable Gravel = Gravilla Irrompible
|
|
||||||
Unbreakable Dirt = Tierra Irrompible
|
|
||||||
Unbreakable Dirt with Grass = Hierba Irrompible
|
|
||||||
Unbreakable Full Grass= Bloque de Hierba Irrompible
|
|
||||||
Unbreakable Brick = Ladrillos Irrompibles
|
|
||||||
Unbreakable Wooden Planks = Planchas de Madera Irrompibles
|
|
||||||
Unbreakable Tree = Tronco de Árbol Irrompible
|
|
||||||
Unbreakable Glass = Cristal Irrompible
|
|
||||||
Unbreakable Sandstone = Arenisca Irrompible
|
|
||||||
Unbreakable Leaves = Foliaje Irrompible
|
|
||||||
Unbreakable Cobblestone = Guijarros Irrompibles
|
|
||||||
Unbreakable Mossy Cobblestone = Guijarros Enmohecidos Irrompibles
|
|
@ -1,47 +0,0 @@
|
|||||||
# Translation by Calinou
|
|
||||||
|
|
||||||
[maptools] loaded. = [maptools] a été chargé.
|
|
||||||
|
|
||||||
Cloud = Nuage
|
|
||||||
Infinite Fuel = Carburant infini
|
|
||||||
Admin Pickaxe = Pioche d'administrateur
|
|
||||||
Admin Pickaxe With Drops = Pioche d'administrateur qui donne des objets
|
|
||||||
Copper Coin = Pièce de cuivre
|
|
||||||
Silver Coin = Pièce d'argent
|
|
||||||
Gold Coin = Pièce d'or
|
|
||||||
Super Apple = Super pomme
|
|
||||||
Fake Ladder = Fausse échelle
|
|
||||||
Smoke Block = Bloc de fumée
|
|
||||||
Damaging Block: %s = Bloc de dégâts : %s
|
|
||||||
Kill Block = Bloc qui tue
|
|
||||||
Build Prevention = Prévention de construction
|
|
||||||
Interact Prevention = Prévention d'interaction
|
|
||||||
Climb Block = Bloc à grimper
|
|
||||||
Light Block = Bloqueur de lumière
|
|
||||||
Light Bulb = Bloc lumineux
|
|
||||||
Player Clip = Bloque-joueurs
|
|
||||||
Player Clip Bottom Face = Face inférieure de bloque-joueurs
|
|
||||||
Player Clip Top Face = Face supérieure de bloque-joueurs
|
|
||||||
Full Clip = Bloque-tout
|
|
||||||
Full Clip Face = Face de bloque-tout
|
|
||||||
Permanent Fire = Feu permanent
|
|
||||||
Fake Fire = Faux feu
|
|
||||||
Igniter = Incendieur
|
|
||||||
Pusher: %s = Pousseur : %s
|
|
||||||
|
|
||||||
Unbreakable Stone = Pierre incassable
|
|
||||||
Unbreakable Sand = Sable incassable
|
|
||||||
Unbreakable Desert Stone = Pierre de désert incassable
|
|
||||||
Unbreakable Desert Sand = Sable de désert incassable
|
|
||||||
Unbreakable Gravel = Gravier incassable
|
|
||||||
Unbreakable Dirt = Terre incassable
|
|
||||||
Unbreakable Dirt with Grass = Herbe incassable
|
|
||||||
Unbreakable Full Grass= Bloc d'herbe incassable
|
|
||||||
Unbreakable Brick = Briques incassables
|
|
||||||
Unbreakable Wooden Planks = Planches de bois incassables
|
|
||||||
Unbreakable Tree = Tronc d'arbre incassable
|
|
||||||
Unbreakable Glass = Verre incassable
|
|
||||||
Unbreakable Sandstone = Grès incassable
|
|
||||||
Unbreakable Leaves = Feuillage incassable
|
|
||||||
Unbreakable Cobblestone = Pierre taillée incassable
|
|
||||||
Unbreakable Mossy Cobblestone = Pierre taillée mousseusse incassable
|
|
@ -1,47 +0,0 @@
|
|||||||
# Translation by Emon
|
|
||||||
|
|
||||||
[maptools] loaded. = [maptools] caricato.
|
|
||||||
|
|
||||||
Cloud = Nuvola
|
|
||||||
Infinite Fuel = Combustibile infinito
|
|
||||||
Admin Pickaxe = Piccone della amministrazione
|
|
||||||
Admin Pickaxe With Drops = Piccone della amministrazione che lascia cadere a terra
|
|
||||||
Copper Coin = Moneta di rame
|
|
||||||
Silver Coin = Moneta di argento
|
|
||||||
Gold Coin = Moneta di oro
|
|
||||||
Super Apple = Super mela
|
|
||||||
Fake Ladder = Finta scala a pioli
|
|
||||||
Smoke Block = Blocco di fumo
|
|
||||||
Damaging Block: %s = Blocco che danneggia : %s
|
|
||||||
Kill Block = Blocco che uccide
|
|
||||||
Build Prevention = Impedimento alla costruzione
|
|
||||||
Interact Prevention = Impedimento alla interazione
|
|
||||||
Climb Block = Blocco su cui ci si può arrampicare
|
|
||||||
Light Block = Blocco di luce
|
|
||||||
Light Bulb = Lampadina
|
|
||||||
Player Clip = Blocca giocatori
|
|
||||||
Player Clip Bottom Face = Blocca giocatori - faccia inferiore
|
|
||||||
Player Clip Top Face = Glocca giocatori - faccia superiore
|
|
||||||
Full Clip = Blocca tutti
|
|
||||||
Full Clip Face = Faccia del blocca tutti
|
|
||||||
Permanent Fire = Fuoco eterno
|
|
||||||
Fake Fire = Fuoco finto
|
|
||||||
Igniter = Accendino
|
|
||||||
Pusher: %s = Che ha spinto : %s
|
|
||||||
|
|
||||||
Unbreakable Stone = Pietra infrangibile
|
|
||||||
Unbreakable Sand = Sabbia infrangibile
|
|
||||||
Unbreakable Desert Stone = Pietra del deserto infrangibile
|
|
||||||
Unbreakable Desert Sand = Sabbia del deserto infrangibile
|
|
||||||
Unbreakable Gravel = Ghiaia infrangibile
|
|
||||||
Unbreakable Dirt = Terra infrangibile
|
|
||||||
Unbreakable Dirt with Grass = Erba infrangibile
|
|
||||||
Unbreakable Full Grass= Blocco d'erba infrangibile
|
|
||||||
Unbreakable Brick = Mattoni infrangibile
|
|
||||||
Unbreakable Wooden Planks = Assi in legno infrangibili
|
|
||||||
Unbreakable Tree = Albero infrangibile
|
|
||||||
Unbreakable Glass = Vetro infrangibile
|
|
||||||
Unbreakable Sandstone = Arenaria infrangibile
|
|
||||||
Unbreakable Leaves = Foglie infrangibili
|
|
||||||
Unbreakable Cobblestone = Ciottolo infrangibile
|
|
||||||
Unbreakable Mossy Cobblestone = Ciottolo muschioso infrangibile
|
|
38
locale/maptools.es.tr
Normal file
38
locale/maptools.es.tr
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
# textdomain: maptools
|
||||||
|
[maptools] loaded.=[maptools] cargado.
|
||||||
|
|
||||||
|
Cloud=Nube
|
||||||
|
Infinite Fuel=Combustible Infinito
|
||||||
|
Admin Pickaxe=Pico de Administrador
|
||||||
|
Copper Coin=Moneda de Cobre
|
||||||
|
Silver Coin=Moneda de Plata
|
||||||
|
Gold Coin=Moneda de Oro
|
||||||
|
Super Apple=Super Manzana
|
||||||
|
Fake Ladder=Escalera Falsa
|
||||||
|
Smoke Block=Bloque de Humo
|
||||||
|
Damaging Block: %s=Bloque Dañino: %s
|
||||||
|
Kill Block=Bloque Mortal
|
||||||
|
Build Prevention=Bloqueador de Construcción
|
||||||
|
Interact Prevention=Bloqueador de Interacción
|
||||||
|
Climb Block=Bloque Escalable
|
||||||
|
Light Block=Bloqueador de Luz
|
||||||
|
Light Bulb=Lamparilla
|
||||||
|
Player Clip=Bloqueo de Jugador
|
||||||
|
Full Clip=Bloqueo Total
|
||||||
|
|
||||||
|
Unbreakable Stone=Piedra Irrompible
|
||||||
|
Unbreakable Sand=Arena Irrompible
|
||||||
|
Unbreakable Desert Stone=Piedra Desértica Irrompible
|
||||||
|
Unbreakable Desert Sand=Arena Desértica Irrompible
|
||||||
|
Unbreakable Gravel=Gravilla Irrompible
|
||||||
|
Unbreakable Dirt=Tierra Irrompible
|
||||||
|
Unbreakable Dirt with Grass=Hierba Irrompible
|
||||||
|
Unbreakable Full Grass=Bloque de Hierba Irrompible
|
||||||
|
Unbreakable Brick=Ladrillos Irrompibles
|
||||||
|
Unbreakable Wooden Planks=Planchas de Madera Irrompibles
|
||||||
|
Unbreakable Tree=Tronco de Árbol Irrompible
|
||||||
|
Unbreakable Glass=Cristal Irrompible
|
||||||
|
Unbreakable Sandstone=Arenisca Irrompible
|
||||||
|
Unbreakable Leaves=Foliaje Irrompible
|
||||||
|
Unbreakable Cobblestone=Guijarros Irrompibles
|
||||||
|
Unbreakable Mossy Cobblestone=Guijarros Enmohecidos Irrompibles
|
46
locale/maptools.fr.tr
Normal file
46
locale/maptools.fr.tr
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
# textdomain: maptools
|
||||||
|
[maptools] loaded.=[maptools] a été chargé.
|
||||||
|
|
||||||
|
Cloud=Nuage
|
||||||
|
Infinite Fuel=Carburant infini
|
||||||
|
Admin Pickaxe=Pioche d'administrateur
|
||||||
|
Admin Pickaxe With Drops=Pioche d'administrateur qui donne des objets
|
||||||
|
Copper Coin=Pièce de cuivre
|
||||||
|
Silver Coin=Pièce d'argent
|
||||||
|
Gold Coin=Pièce d'or
|
||||||
|
Super Apple=Super pomme
|
||||||
|
Fake Ladder=Fausse échelle
|
||||||
|
Smoke Block=Bloc de fumée
|
||||||
|
Damaging Block: %s=Bloc de dégâts : %s
|
||||||
|
Kill Block=Bloc qui tue
|
||||||
|
Build Prevention=Prévention de construction
|
||||||
|
Interact Prevention=Prévention d'interaction
|
||||||
|
Climb Block=Bloc à grimper
|
||||||
|
Light Block=Bloqueur de lumière
|
||||||
|
Light Bulb=Bloc lumineux
|
||||||
|
Player Clip=Bloque-joueurs
|
||||||
|
Player Clip Bottom Face=Face inférieure de bloque-joueurs
|
||||||
|
Player Clip Top Face=Face supérieure de bloque-joueurs
|
||||||
|
Full Clip=Bloque-tout
|
||||||
|
Full Clip Face=Face de bloque-tout
|
||||||
|
Permanent Fire=Feu permanent
|
||||||
|
Fake Fire=Faux feu
|
||||||
|
Igniter=Incendieur
|
||||||
|
Pusher: %s=Pousseur : %s
|
||||||
|
|
||||||
|
Unbreakable Stone=Pierre incassable
|
||||||
|
Unbreakable Sand=Sable incassable
|
||||||
|
Unbreakable Desert Stone=Pierre de désert incassable
|
||||||
|
Unbreakable Desert Sand=Sable de désert incassable
|
||||||
|
Unbreakable Gravel=Gravier incassable
|
||||||
|
Unbreakable Dirt=Terre incassable
|
||||||
|
Unbreakable Dirt with Grass=Herbe incassable
|
||||||
|
Unbreakable Full Grass=Bloc d'herbe incassable
|
||||||
|
Unbreakable Brick=Briques incassables
|
||||||
|
Unbreakable Wooden Planks=Planches de bois incassables
|
||||||
|
Unbreakable Tree=Tronc d'arbre incassable
|
||||||
|
Unbreakable Glass=Verre incassable
|
||||||
|
Unbreakable Sandstone=Grès incassable
|
||||||
|
Unbreakable Leaves=Feuillage incassable
|
||||||
|
Unbreakable Cobblestone=Pierre taillée incassable
|
||||||
|
Unbreakable Mossy Cobblestone=Pierre taillée mousseusse incassable
|
46
locale/maptools.it.tr
Normal file
46
locale/maptools.it.tr
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
# textdomain: maptools
|
||||||
|
[maptools] loaded.=[maptools] caricato.
|
||||||
|
|
||||||
|
Cloud=Nuvola
|
||||||
|
Infinite Fuel=Combustibile infinito
|
||||||
|
Admin Pickaxe=Piccone della amministrazione
|
||||||
|
Admin Pickaxe With Drops=Piccone della amministrazione che lascia cadere a terra
|
||||||
|
Copper Coin=Moneta di rame
|
||||||
|
Silver Coin=Moneta di argento
|
||||||
|
Gold Coin=Moneta di oro
|
||||||
|
Super Apple=Super mela
|
||||||
|
Fake Ladder=Finta scala a pioli
|
||||||
|
Smoke Block=Blocco di fumo
|
||||||
|
Damaging Block: %s=Blocco che danneggia : %s
|
||||||
|
Kill Block=Blocco che uccide
|
||||||
|
Build Prevention=Impedimento alla costruzione
|
||||||
|
Interact Prevention=Impedimento alla interazione
|
||||||
|
Climb Block=Blocco su cui ci si può arrampicare
|
||||||
|
Light Block=Blocco di luce
|
||||||
|
Light Bulb=Lampadina
|
||||||
|
Player Clip=Blocca giocatori
|
||||||
|
Player Clip Bottom Face=Blocca giocatori - faccia inferiore
|
||||||
|
Player Clip Top Face=Glocca giocatori - faccia superiore
|
||||||
|
Full Clip=Blocca tutti
|
||||||
|
Full Clip Face=Faccia del blocca tutti
|
||||||
|
Permanent Fire=Fuoco eterno
|
||||||
|
Fake Fire=Fuoco finto
|
||||||
|
Igniter=Accendino
|
||||||
|
Pusher: %s=Che ha spinto : %s
|
||||||
|
|
||||||
|
Unbreakable Stone=Pietra infrangibile
|
||||||
|
Unbreakable Sand=Sabbia infrangibile
|
||||||
|
Unbreakable Desert Stone=Pietra del deserto infrangibile
|
||||||
|
Unbreakable Desert Sand=Sabbia del deserto infrangibile
|
||||||
|
Unbreakable Gravel=Ghiaia infrangibile
|
||||||
|
Unbreakable Dirt=Terra infrangibile
|
||||||
|
Unbreakable Dirt with Grass=Erba infrangibile
|
||||||
|
Unbreakable Full Grass=Blocco d'erba infrangibile
|
||||||
|
Unbreakable Brick=Mattoni infrangibile
|
||||||
|
Unbreakable Wooden Planks=Assi in legno infrangibili
|
||||||
|
Unbreakable Tree=Albero infrangibile
|
||||||
|
Unbreakable Glass=Vetro infrangibile
|
||||||
|
Unbreakable Sandstone=Arenaria infrangibile
|
||||||
|
Unbreakable Leaves=Foglie infrangibili
|
||||||
|
Unbreakable Cobblestone=Ciottolo infrangibile
|
||||||
|
Unbreakable Mossy Cobblestone=Ciottolo muschioso infrangibile
|
46
locale/maptools.template.tr
Normal file
46
locale/maptools.template.tr
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
# textdomain: maptools
|
||||||
|
[maptools] loaded.=
|
||||||
|
|
||||||
|
Cloud=Nuage
|
||||||
|
Infinite Fuel=
|
||||||
|
Admin Pickaxe=
|
||||||
|
Admin Pickaxe With Drops=
|
||||||
|
Copper Coin=
|
||||||
|
Silver Coin=
|
||||||
|
Gold Coin=
|
||||||
|
Super Apple=
|
||||||
|
Fake Ladder=
|
||||||
|
Smoke Block=
|
||||||
|
Damaging Block: %s=
|
||||||
|
Kill Block=
|
||||||
|
Build Prevention=
|
||||||
|
Interact Prevention=
|
||||||
|
Climb Block=
|
||||||
|
Light Block=
|
||||||
|
Light Bulb=
|
||||||
|
Player Clip=
|
||||||
|
Player Clip Bottom Face=
|
||||||
|
Player Clip Top Face=
|
||||||
|
Full Clip=
|
||||||
|
Full Clip Face=
|
||||||
|
Permanent Fire=
|
||||||
|
Fake Fire=
|
||||||
|
Igniter=
|
||||||
|
Pusher: %s=
|
||||||
|
|
||||||
|
Unbreakable Stone=
|
||||||
|
Unbreakable Sand=
|
||||||
|
Unbreakable Desert Stone=
|
||||||
|
Unbreakable Desert Sand=
|
||||||
|
Unbreakable Gravel=
|
||||||
|
Unbreakable Dirt=
|
||||||
|
Unbreakable Dirt with Grass=
|
||||||
|
Unbreakable Full Grass=
|
||||||
|
Unbreakable Brick=
|
||||||
|
Unbreakable Wooden Planks=
|
||||||
|
Unbreakable Tree=
|
||||||
|
Unbreakable Glass=
|
||||||
|
Unbreakable Sandstone=
|
||||||
|
Unbreakable Leaves=
|
||||||
|
Unbreakable Cobblestone=
|
||||||
|
Unbreakable Mossy Cobblestone=
|
3
mod.conf
3
mod.conf
@ -1,4 +1,5 @@
|
|||||||
name = maptools
|
name = maptools
|
||||||
description = Adds various special versions of normal blocks, tools, and other map maintainer tools.
|
description = Adds various special versions of normal blocks, tools, and other map maintainer tools.
|
||||||
depends = default
|
depends = default
|
||||||
optional_depends = intllib
|
optional_depends = moreores
|
||||||
|
min_minetest_version = 5.0.0
|
||||||
|
18
nodes.lua
18
nodes.lua
@ -1,7 +1,7 @@
|
|||||||
--[[
|
--[[
|
||||||
Map Tools: node definitions
|
Map Tools: node definitions
|
||||||
|
|
||||||
Copyright © 2012-2019 Hugo Locurcio and contributors.
|
Copyright © 2012-2020 Hugo Locurcio and contributors.
|
||||||
Licensed under the zlib license. See LICENSE.md for more information.
|
Licensed under the zlib license. See LICENSE.md for more information.
|
||||||
--]]
|
--]]
|
||||||
|
|
||||||
@ -467,3 +467,19 @@ minetest.register_node("maptools:superapple", {
|
|||||||
sounds = default.node_sound_defaults(),
|
sounds = default.node_sound_defaults(),
|
||||||
on_drop = maptools.drop_msg
|
on_drop = maptools.drop_msg
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_node("maptools:drowning", {
|
||||||
|
description = S("Drownable Air"),
|
||||||
|
range = 12,
|
||||||
|
stack_max = 10000,
|
||||||
|
inventory_image = "default_steel_block.png^dye_black.png",
|
||||||
|
drawtype = "airlike",
|
||||||
|
paramtype = "light",
|
||||||
|
pointable = false,
|
||||||
|
walkable = false,
|
||||||
|
drowning = 1,
|
||||||
|
sunlight_propagates = true,
|
||||||
|
drop = "",
|
||||||
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative},
|
||||||
|
on_drop = maptools.drop_msg
|
||||||
|
})
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
--[[
|
--[[
|
||||||
Map Tools: tool definitions
|
Map Tools: tool definitions
|
||||||
|
|
||||||
Copyright © 2012-2019 Hugo Locurcio and contributors.
|
Copyright © 2012-2020 Hugo Locurcio and contributors.
|
||||||
Licensed under the zlib license. See LICENSE.md for more information.
|
Licensed under the zlib license. See LICENSE.md for more information.
|
||||||
--]]
|
--]]
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user