Compare commits
10 Commits
d9acd10977
...
8313f92ef8
Author | SHA1 | Date | |
---|---|---|---|
|
8313f92ef8 | ||
|
30d16e9661 | ||
|
3aef341fa1 | ||
|
5171b49871 | ||
|
70ed75d769 | ||
|
21b7b9f470 | ||
|
2919564bb9 | ||
|
db294b3bc0 | ||
|
28bcc8b73b | ||
|
cba746e669 |
@ -1,4 +1,4 @@
|
||||
# Item Help [`doc_items`] (Version 1.3.2)
|
||||
# Item Help [`doc_items`] (Version 1.4.1)
|
||||
## Description
|
||||
Automatically generated help texts of blocks, tools, weapons, crafting
|
||||
items and other items.
|
||||
|
39
init.lua
39
init.lua
@ -1,5 +1,5 @@
|
||||
local S = minetest.get_translator("doc_items")
|
||||
local N = function(s) return s end
|
||||
local NS = function(s) return s end
|
||||
|
||||
doc.sub.items = {}
|
||||
|
||||
@ -625,11 +625,18 @@ doc.add_category("nodes", {
|
||||
--- Direct interaction with the player
|
||||
---- Damage (very important)
|
||||
if not forbidden_core_factoids.node_damage then
|
||||
if data.def.damage_per_second ~= nil and data.def.damage_per_second > 1 then
|
||||
datastring = datastring .. S("This block causes a damage of @1 hit points per second.", data.def.damage_per_second) .. "\n"
|
||||
elseif data.def.damage_per_second == 1 then
|
||||
datastring = datastring .. S("This block causes a damage of @1 hit point per second.", data.def.damage_per_second) .. "\n"
|
||||
if data.def.damage_per_second ~= nil then
|
||||
if data.def.damage_per_second > 1 then
|
||||
datastring = datastring .. S("This block causes a damage of @1 hit points per second.", data.def.damage_per_second) .. "\n"
|
||||
elseif data.def.damage_per_second == 1 then
|
||||
datastring = datastring .. S("This block causes a damage of @1 hit point per second.", data.def.damage_per_second) .. "\n"
|
||||
elseif data.def.damage_per_second == -1 then
|
||||
datastring = datastring .. S("This block heals @1 hit point per second.", math.abs(data.def.damage_per_second)) .. "\n"
|
||||
elseif data.def.damage_per_second < -1 then
|
||||
datastring = datastring .. S("This block heals @1 hit points per second.", math.abs(data.def.damage_per_second)) .. "\n"
|
||||
end
|
||||
end
|
||||
|
||||
if data.def.drowning then
|
||||
if data.def.drowning > 1 then
|
||||
datastring = datastring .. S("This block decreases your breath and causes a drowning damage of @1 hit points every 2 seconds.", data.def.drowning) .. "\n"
|
||||
@ -654,7 +661,14 @@ doc.add_category("nodes", {
|
||||
---- Movement
|
||||
if not forbidden_core_factoids.node_movement then
|
||||
if data.def.groups.disable_jump == 1 then
|
||||
datastring = datastring .. S("You can not jump while standing on this block.").."\n"
|
||||
if data.def.walkable == true then
|
||||
datastring = datastring .. S("You can not jump while standing on this block.").."\n"
|
||||
elseif not data.def.climbable then
|
||||
datastring = datastring .. S("You can not jump while inside this block.").."\n"
|
||||
end
|
||||
end
|
||||
if data.def.move_resistance and data.def.move_resistance >= 1 then
|
||||
datastring = datastring .. S("This block slows down your movement.").."\n"
|
||||
end
|
||||
if data.def.climbable == true then
|
||||
if data.def.groups.disable_jump == 1 and data.def.groups.disable_descend == 1 then
|
||||
@ -849,15 +863,15 @@ doc.add_category("nodes", {
|
||||
local dropstring = ""
|
||||
local dropstring_base = ""
|
||||
if max == nil then
|
||||
dropstring_base = N("This block will drop the following items when mined: @1.")
|
||||
dropstring_base = NS("This block will drop the following items when mined: @1.")
|
||||
elseif max == 1 then
|
||||
if #data.def.drop.items == 1 then
|
||||
dropstring_base = N("This block will drop the following when mined: @1.")
|
||||
dropstring_base = NS("This block will drop the following when mined: @1.")
|
||||
else
|
||||
dropstring_base = N("This block will randomly drop one of the following when mined: @1.")
|
||||
dropstring_base = NS("This block will randomly drop one of the following when mined: @1.")
|
||||
end
|
||||
else
|
||||
dropstring_base = N("This block will randomly drop up to @1 drops of the following possible drops when mined: @2.")
|
||||
dropstring_base = NS("This block will randomly drop up to @1 drops of the following possible drops when mined: @2.")
|
||||
end
|
||||
-- Save calculated probabilities into a table for later output
|
||||
local probtables = {}
|
||||
@ -1332,6 +1346,11 @@ local function reveal_item(playername, itemstring)
|
||||
else
|
||||
return false
|
||||
end
|
||||
-- Don't reveal if player doesn't exist
|
||||
local player = minetest.get_player_by_name(playername)
|
||||
if not player then
|
||||
return false
|
||||
end
|
||||
doc.mark_entry_as_revealed(playername, category_id, itemstring)
|
||||
return true
|
||||
end
|
||||
|
@ -1,144 +1,141 @@
|
||||
# textdomain:doc_items
|
||||
Item Help=Gegenstandshilfe
|
||||
Adds automatically generated help texts for items.=Fügt automatisch generierte Hilfetexte für Gegenstände hinzu.
|
||||
Using it as fuel turns it into: @1.= Wird dieser Gegenstand als Brennstoff verwendet, verwandelt er sich zu: @1.
|
||||
This is a decorative block.=Dieser Block dient zur Dekoration.
|
||||
This block is a building block for creating various buildings.=Dieser Block ist für den Bau diverser Gebäude vorgesehen.
|
||||
This item is primarily used for crafting other items.=Dieser Gegenstand wird primär für die Fertigung von anderen Gegenständen benutzt.
|
||||
Hold it in your hand, then leftclick to eat it.=Halten Sie es in Ihrer Hand, dann klicken Sie mit der linken Maustaste, um es zu essen.
|
||||
Hold it in your hand, then leftclick to eat it. But why would you want to do this?=Halten Sie es in Ihrer Hand, dann klicken Sie mit der linken Maustaste, um es zu essen. Aber warum sollten Sie das tun wollen?
|
||||
This block's rotation is affected by the way you place it: Place it on the floor or ceiling for a vertical orientation; place it at the side for a horizontal orientation. Sneaking while placing it leads to a perpendicular orientation instead.=Die Rotation dieses Blocks hängt davon ab, wie sie ihn platzieren: Platzieren Sie ihn auf den Boden oder an die Decke, um ihn vertikal aufzustellen; platzieren Sie in an der Seite für eine horizontale Ausrichtung. Wenn Sie während des Bauens schleichen, wird der Block stattdessen senkrecht zur üblichen Ausrichtung rotiert.
|
||||
Hand=Hand
|
||||
Yes=Ja
|
||||
No=Nein
|
||||
# List separator (e.g. “one, two, three”)
|
||||
, =,
|
||||
Unknown item (@1)=Unbekannter Gegenstand (@1)
|
||||
unknown=unbekannt
|
||||
1 second=1 Sekunde
|
||||
@1 seconds=@1 Sekunden
|
||||
• @1: @2=• @1: @2
|
||||
• @1, rating @2: @3 s - @4 s=• @1, Wertung @2: @3 s - @4 s
|
||||
• @1, rating @2: @3 s=• @1, Wertung @2: @3 s
|
||||
• @1, level @2: @3 uses=• @1, Stufe @2: @3 Benutzungen
|
||||
• @1, level @2: Unlimited=• @1, Stufe @2: Unbegrenzt
|
||||
This tool is capable of mining.=Dies ist ein Grabewerkzeug.
|
||||
Maximum toughness levels:=Maximale Härtegrade:
|
||||
Mining times:=Grabezeiten:
|
||||
Mining durability:=Grabehaltbarkeit:
|
||||
This is a melee weapon which deals damage by punching.=Dies ist eine Nahkampfwaffe, welche Schaden durch Schläge verursacht.
|
||||
Maximum damage per hit:=Maximaler Schaden pro Treffer:
|
||||
• @1: @2 HP=• @1: @2 TP
|
||||
Full punch interval: @1 s=Schlagintervall: @1 s
|
||||
This block can be mined by any mining tool in half a second.=Dieser Block kann von einem beliebigen Grabewerkzeug in einer halben Sekunde abgebaut werden.
|
||||
This block can be mined by any mining tool immediately.=Dieser Block kann von einem beliebigen Grabewerkzeug sofort abgebaut werden.
|
||||
This block can not be mined by ordinary mining tools.=Dieser Block kann nicht von gewöhnlichen Grabewerkzeugen abgebaut werden.
|
||||
This block can be destroyed by any mining tool in half a second.=Dieser Block kann von einem beliebigen Grabewerkzeug in einer halben Sekunde zerstört werden.
|
||||
This block can be destroyed by any mining tool immediately.=Dieser Block kann von einem beliebigen Grabewerkzeug sofort zerstört werden.
|
||||
This block can not be destroyed by ordinary mining tools.=Dieser Block kann nicht von Grabewerkzeugen zerstört werden.
|
||||
This block can be mined by mining tools which match any of the following mining ratings and its toughness level.=Dieser Block kann von Grabewerkzeugen abgebaut werden, falls sie auf eine der folgenden Grabewertungen sowie seinem Härtegrad passen.
|
||||
Mining ratings:=Grabewertungen:
|
||||
Toughness level: @1=Härtegrad: @1
|
||||
Range: @1=Reichweite: @1
|
||||
Range: 4=Reichweite: 4
|
||||
# Range: <Hand> (<Range>)
|
||||
Range: @1 (@2)=Reichweite: @1 (@2)
|
||||
This tool can serve as a smelting fuel with a burning time of @1.=Dieses Werkzeug kann als Brennstoff mit einer Brenndauer von @1 dienen.
|
||||
This block can serve as a smelting fuel with a burning time of @1.=Dieser Block kann als Brennstoff mit einer Brenndauer von @1 dienen.
|
||||
This item can serve as a smelting fuel with a burning time of @1.=Dieser Gegenstand kann als Brennstoff mit einer Brenndauer von @1 dienen.
|
||||
Using it as fuel turns it into: @1.= Wird dieser Gegenstand als Brennstoff verwendet, verwandelt er sich zu: @1.
|
||||
Itemstring: "@1"=Itemstring: „@1“
|
||||
Description: @1=Beschreibung: @1
|
||||
Usage help: @1=Benutzung: @1
|
||||
Maximum stack size: @1=Maximale Stapelgröße: @1
|
||||
This block points to liquids.=Mit diesem Block zeigt man auf Flüssigkeiten.
|
||||
This tool points to liquids.=Mit diesem Werkzeug zeigt man auf Flüssigkeiten.
|
||||
This item points to liquids.=Mit diesem Gegenstand zeigt man auf Flüssigkeiten.
|
||||
Punches with this block don't work as usual; melee combat and mining are either not possible or work differently.=Schläge mit diesem Block funktionieren nicht auf die übliche Weise; Nahkampf und Graben sind damit entweder nicht möglich oder funktionieren auf andere Weise.
|
||||
Punches with this tool don't work as usual; melee combat and mining are either not possible or work differently.=Schläge mit diesem Werkzeug funktionieren nicht auf die übliche Weise; Nahkampf und Graben sind damit entweder nicht möglich oder funktionieren auf andere Weise.
|
||||
Punches with this item don't work as usual; melee combat and mining are either not possible or work differently.=Schläge mit diesem Gegenstand funktionieren nicht auf die übliche Weise; Nahkampf und Graben sind damit entweder nicht möglich oder funktionieren auf andere Weise.
|
||||
This block belongs to the @1 group.=Dieser Block gehört zur Gruppe „@1“.
|
||||
This tool belongs to the @1 group.=Dieses Werkzeug gehört zur Gruppe „@1“.
|
||||
This item belongs to the @1 group.=Dieser Gegenstand gehört zur Gruppe „@1“.
|
||||
This block belongs to these groups: @1.=Dieser Block gehört zu den folgenden Gruppen: @1.
|
||||
This tool belongs to these groups: @1.=Dieses Werkzeug gehört zu den folgenden Gruppen: @1.
|
||||
This item belongs to these groups: @1.=Dieser Gegenstand gehört zu den folgenden Gruppen: @1.
|
||||
Blocks=Blöcke
|
||||
Item reference of blocks and other things which are capable of occupying space=Gegenstandsreferenz aller Blöcke und anderen Dingen, die Raum belegen
|
||||
Collidable: @1=Kollidiert: @1
|
||||
Pointable: Yes=Zeigbar: Ja
|
||||
Pointable: Only by special items=Zeigbar: Nur von besonderen Gegenständen
|
||||
Pointable: No=Zeigbar: Nein
|
||||
This block is a liquid with these properties:=Dieser Block ist eine Flüssigkeit mit folgenden Eigenschaften:
|
||||
• Renewable=• Erneuerbar
|
||||
• Not renewable=• Nicht erneuerbar
|
||||
• No flowing=• Kein Fließen
|
||||
• Flowing range: @1=• Fließweite: @1
|
||||
• Viscosity: @1=• Zähflüssigkeit: @1
|
||||
This block causes a damage of @1 hit points per second.=Dieser Block richtet einen Schaden von @1 Trefferpunkten pro Sekunde an.
|
||||
This block causes a damage of @1 hit point per second.=Dieser Block richtet einen Schaden von @1 Trefferpunkt pro Sekunde an.
|
||||
This block heals @1 hit point per second.=Dieser Block heilt @1 Trefferpunkt pro Sekunde.
|
||||
This block heals @1 hit points per second.=Dieser Block heilt @1 Trefferpunkte pro Sekunde.
|
||||
This block decreases your breath and causes a drowning damage of @1 hit points every 2 seconds.=Dieser Block reduziert Ihren Atem und verursacht beim Ertrinken einen Schaden von @1 Trefferpunkten alle 2 Sekunden.
|
||||
This block decreases your breath and causes a drowning damage of @1 hit point every 2 seconds.=Dieser Block reduziert Ihren Atem und verursacht beim Ertrinken einen Schaden von @1 Trefferpunkt alle 2 Sekunden.
|
||||
The fall damage on this block is increased by @1%.=Der Fallschaden auf diesem Block ist um @1% erhöht.
|
||||
This block negates all fall damage.=Auf diesem Block gibt es keinen Fallschaden.
|
||||
The fall damage on this block is reduced by @1%.=Der Fallschaden auf diesem Block ist um @1% reduziert.
|
||||
You can not jump while standing on this block.=Man kann von diesem Block nicht abspringen.
|
||||
You can not jump while inside this block.=Man kann nicht in diesem Block springen.
|
||||
This block slows down your movement.=Dieser Block verlangsamt die Bewegung.
|
||||
This block can be climbed, but only horizontally.=Dieser Block kann beklettert werden, aber nur horizontal.
|
||||
This block can be climbed, but only downwards.=Dieser Block kann beklettert werden, aber nur abwärts.
|
||||
This block can be climbed, but only upwards.=Dieser Block kann beklettert werden, aber nur aufwärts.
|
||||
This block can be climbed.=Dieser Block kann beklettert werden.
|
||||
This block will make you bounce off with an elasticity of @1%.=Dieser Block wird Sie mit einer Elastizität von @1% abprallen lassen.
|
||||
This block is slippery.=Dieser Block ist rutschig.
|
||||
This block is completely silent when walked on, mined or built.=Es ist vollkommen lautlos, wenn man auf diesen Block geht, ihn baut oder abbaut.
|
||||
This block is completely silent when mined or built.=Dieser Block kann vollkommen lautlos gebaut oder abgebaut werden.
|
||||
Walking on this block is completely silent.=Auf diesem Block sind Schritte lautlos.
|
||||
Mining this block is completely silent.=Das Abbauen dieses Blocks ist völlig lautlos.
|
||||
Building this block is completely silent.=Das Bauen dieses Blocks ist völlig lautlos.
|
||||
This block is affected by gravity and can fall.=Dieser Block wird von der Schwerkraft beeinflusst und kann fallen.
|
||||
Building another block at this block will place it inside and replace it.=Wird ein anderer Block an diesem Block gebaut, wird dieser andere Block seine Stelle einnehmen.
|
||||
Falling blocks can go through this block; they destroy it when doing so.=Fallende Blöcke können diesen Block durchdringen; sie zerstören ihn dabei.
|
||||
This block will drop as an item when a falling block ends up inside it.=Dieser Block wird sich als Gegenstand abwerfen, wenn ein fallender Block in ihn landet.
|
||||
This block is destroyed when a falling block ends up inside it.=Dieser Block wird zerstört, wenn ein fallender Block in ihm landet.
|
||||
This block will drop as an item when it is not attached to a surrounding block.=Dieser Block wird sich als Gegenstand abwerfen, wenn er nicht an einen benachbarten Block befestigt ist.
|
||||
This block will drop as an item when no collidable block is below it.=Dieser Block wird sich als Gegenstand abwerfen, wenn kein kollidierender Block unter ihn liegt.
|
||||
Liquids can flow into this block and destroy it.=Flüssigkeiten können in diesen Block hereinfließen und ihn zerstören.
|
||||
This block is a light source with a light level of @1.=Dieser Block ist eine Lichtquelle mit einer Helligkeitsstufe von @1.
|
||||
This block glows faintly with a light level of @1.=Dieser Block leuchtet schwach mit einer Helligkeitsstufe von @1.
|
||||
This block allows light to propagate with a small loss of brightness, and sunlight can even go through losslessly.=Dieser Block ist lichtdurchlässig mit einen geringfügigen Helligkeitsverlust; Sonnenlicht passiert jedoch ohne Verlust.
|
||||
This block allows light to propagate with a small loss of brightness.=Dieser Block ist lichtdurchlässig mit einen geringfügigen Helligkeitsverlust.
|
||||
This block allows sunlight to propagate without loss in brightness.=Dieser Block ist vollkommen durchlässig für Sonnenlicht.
|
||||
Unknown Node=Unbekannter Node
|
||||
This block connects to this block: @1.=Dieser Block verbindet sich mit diesem Block: @1.
|
||||
This block connects to these blocks: @1.=Dieser Block verbindet sich mit den folgenden Blöcken: @1.
|
||||
This block connects to blocks of the @1 group.=Dieser Block verbindet sich mit Blöcken der Gruppe „@1“.
|
||||
This block connects to blocks of the following groups: @1.=Dieser Block verbindet sich mit Blöcken der folgenden Gruppen: @1.
|
||||
This block won't drop anything when mined.=Dieser Block wird nach dem Abbauen nichts abwerfen.
|
||||
This block will drop the following when mined: @1×@2.=Dieser Block wird nach dem Abbauen folgendes abwerfen: @1×@2.
|
||||
This block will drop the following when mined: @1.=Dieser Block wird nach dem Abbauen folgendes abwerfen: @1.
|
||||
This block will drop the following items when mined: @1.=Dieser Block wird nach dem Abbauen die folgenden Gegenstände abwerfen: @1.
|
||||
This block will randomly drop one of the following when mined: @1.=Dieser Block wird nach dem Abbauen zufällig eines von den folgenden Dingen abwerfen: @1.
|
||||
This block will randomly drop up to @1 drops of the following possible drops when mined: @2.=Dieser Block nach dem Abbauen wird zufällig bis zu @1 Abwürfe von den folgenden möglichen Abwürfen abwerfen: @2.
|
||||
# Final list separator (e.g. “One, two and three”)
|
||||
and = und
|
||||
# Item count times item name
|
||||
@1×@2=@1×@2
|
||||
# Itemname (25%)
|
||||
@1 (@2%)=@1 (@2%)
|
||||
# Itemname (<0.5%)
|
||||
@1 (<0.5%)=@1 (<0,5%)
|
||||
# Itemname (ca. 25%)
|
||||
@1 (ca. @2%)=@1 (ca. @2%)
|
||||
# List separator (e.g. “one, two, three”)
|
||||
, =,
|
||||
# Final list separator (e.g. “One, two and three”)
|
||||
and = und
|
||||
1 second=1 Sekunde
|
||||
A transparent block, basically empty space. It is usually left behind after digging something.=Ein transparenter Block, praktisch leerer Raum. Er wird üblicherweise hinterlassen, nachdem man etwas ausgegraben hat.
|
||||
Blocks=Blöcke
|
||||
Building another block at this block will place it inside and replace it.=Wird ein anderer Block an diesem Block gebaut, wird dieser andere Block seine Stelle einnehmen.
|
||||
Building this block is completely silent.=Das Bauen dieses Blocks ist völlig lautlos.
|
||||
Collidable: @1=Kollidiert: @1
|
||||
Description: @1=Beschreibung: @1
|
||||
Falling blocks can go through this block; they destroy it when doing so.=Fallende Blöcke können diesen Block durchdringen; sie zerstören ihn dabei.
|
||||
Full punch interval: @1 s=Schlagintervall: @1 s
|
||||
Hand=Hand
|
||||
Hold it in your hand, then leftclick to eat it.=Halten Sie es in Ihrer Hand, dann klicken Sie mit der linken Maustaste, um es zu essen.
|
||||
Hold it in your hand, then leftclick to eat it. But why would you want to do this?=Halten Sie es in Ihrer Hand, dann klicken Sie mit der linken Maustaste, um es zu essen. Aber warum sollten Sie das tun wollen?
|
||||
Item reference of all wieldable tools and weapons=Gegenstandsreferenz aller tragbaren Werkzeugen und Waffen
|
||||
Item reference of blocks and other things which are capable of occupying space=Gegenstandsreferenz aller Blöcke und anderen Dingen, die Raum belegen
|
||||
Item reference of items which are neither blocks, tools or weapons (esp. crafting items)=Gegenstandsreferenz aller Gegenstände, welche weder Blöcke, Werkzeuge oder Waffen sind (insb. Fertigungsgegenstände)
|
||||
Liquids can flow into this block and destroy it.=Flüssigkeiten können in diesen Block hereinfließen und ihn zerstören.
|
||||
Maximum stack size: @1=Maximale Stapelgröße: @1
|
||||
Mining level: @1=Grabestufe: @1
|
||||
Mining ratings:=Grabewertungen:
|
||||
• @1, rating @2: @3 s - @4 s=• @1, Wertung @2: @3 s - @4 s
|
||||
• @1, rating @2: @3 s=• @1, Wertung @2: @3 s
|
||||
Mining times:=Grabezeiten:
|
||||
Mining this block is completely silent.=Das Abbauen dieses Blocks ist völlig lautlos.
|
||||
Miscellaneous items=Sonstige Gegenstände
|
||||
No=Nein
|
||||
Pointable: No=Zeigbar: Nein
|
||||
Pointable: Only by special items=Zeigbar: Nur von besonderen Gegenständen
|
||||
Pointable: Yes=Zeigbar: Ja
|
||||
Punches with this block don't work as usual; melee combat and mining are either not possible or work differently.=Schläge mit diesem Block funktionieren nicht auf die übliche Weise; Nahkampf und Graben sind damit entweder nicht möglich oder funktionieren auf andere Weise.
|
||||
Punches with this item don't work as usual; melee combat and mining are either not possible or work differently.=Schläge mit diesem Gegenstand funktionieren nicht auf die übliche Weise; Nahkampf und Graben sind damit entweder nicht möglich oder funktionieren auf andere Weise.
|
||||
Punches with this tool don't work as usual; melee combat and mining are either not possible or work differently.=Schläge mit diesem Werkzeug funktionieren nicht auf die übliche Weise; Nahkampf und Graben sind damit entweder nicht möglich oder funktionieren auf andere Weise.
|
||||
Range: @1=Reichweite: @1
|
||||
# Range: <Hand> (<Range>)
|
||||
Range: @1 (@2)=Reichweite: @1 (@2)
|
||||
Range: 4=Reichweite: 4
|
||||
# Rating used for digging times
|
||||
Rating @1=Wertung @1
|
||||
Rating @1-@2=Wertung @1-@2
|
||||
The fall damage on this block is increased by @1%.=Der Fallschaden auf diesem Block ist um @1% erhöht.
|
||||
The fall damage on this block is reduced by @1%.=Der Fallschaden auf diesem Block ist um @1% reduziert.
|
||||
This block allows light to propagate with a small loss of brightness, and sunlight can even go through losslessly.=Dieser Block ist lichtdurchlässig mit einen geringfügigen Helligkeitsverlust; Sonnenlicht passiert jedoch ohne Verlust.
|
||||
This block allows light to propagate with a small loss of brightness.=Dieser Block ist lichtdurchlässig mit einen geringfügigen Helligkeitsverlust.
|
||||
This block allows sunlight to propagate without loss in brightness.=Dieser Block ist vollkommen durchlässig für Sonnenlicht.
|
||||
This block belongs to the @1 group.=Dieser Block gehört zur Gruppe „@1“.
|
||||
This block belongs to these groups: @1.=Dieser Block gehört zu den folgenden Gruppen: @1.
|
||||
This block can be climbed.=Dieser Block kann beklettert werden.
|
||||
This block can be destroyed by any mining tool immediately.=Dieser Block kann von einem beliebigen Grabewerkzeug sofort zerstört werden.
|
||||
This block can be destroyed by any mining tool in half a second.=Dieser Block kann von einem beliebigen Grabewerkzeug in einer halben Sekunde zerstört werden.
|
||||
This block can be mined by any mining tool immediately.=Dieser Block kann von einem beliebigen Grabewerkzeug sofort abgebaut werden.
|
||||
This block can be mined by any mining tool in half a second.=Dieser Block kann von einem beliebigen Grabewerkzeug in einer halben Sekunde abgebaut werden.
|
||||
This block can be mined by mining tools which match any of the following mining ratings and its toughness level.=Dieser Block kann von Grabewerkzeugen abgebaut werden, falls sie auf eine der folgenden Grabewertungen sowie seinem Härtegrad passen.
|
||||
This block can not be destroyed by ordinary mining tools.=Dieser Block kann nicht von Grabewerkzeugen zerstört werden.
|
||||
This block can not be mined by ordinary mining tools.=Dieser Block kann nicht von gewöhnlichen Grabewerkzeugen abgebaut werden.
|
||||
This block can serve as a smelting fuel with a burning time of @1.=Dieser Block kann als Brennstoff mit einer Brenndauer von @1 dienen.
|
||||
This block causes a damage of @1 hit point per second.=Dieser Block richtet einen Schaden von @1 Trefferpunkt pro Sekunde an.
|
||||
This block causes a damage of @1 hit points per second.=Dieser Block richtet einen Schaden von @1 Trefferpunkten pro Sekunde an.
|
||||
This block connects to blocks of the @1 group.=Dieser Block verbindet sich mit Blöcken der Gruppe „@1“.
|
||||
This block connects to blocks of the following groups: @1.=Dieser Block verbindet sich mit Blöcken der folgenden Gruppen: @1.
|
||||
This block connects to these blocks: @1.=Dieser Block verbindet sich mit den folgenden Blöcken: @1.
|
||||
This block connects to this block: @1.=Dieser Block verbindet sich mit diesem Block: @1.
|
||||
This block decreases your breath and causes a drowning damage of @1 hit point every 2 seconds.=Dieser Block reduziert Ihren Atem und verursacht beim Ertrinken einen Schaden von @1 Trefferpunkt alle 2 Sekunden.
|
||||
This block decreases your breath and causes a drowning damage of @1 hit points every 2 seconds.=Dieser Block reduziert Ihren Atem und verursacht beim Ertrinken einen Schaden von @1 Trefferpunkten alle 2 Sekunden.
|
||||
This block glows faintly. It is barely noticable.=Dieser Block leuchtet schwach. Es ist kaum merklich.
|
||||
This block is a light source with a light level of @1.=Dieser Block ist eine Lichtquelle mit einer Helligkeitsstufe von @1.
|
||||
This block glows faintly with a light level of @1.=Dieser Block leuchtet schwach mit einer Helligkeitsstufe von @1.
|
||||
This block is a building block for creating various buildings.=Dieser Block ist für den Bau diverser Gebäude vorgesehen.
|
||||
This block is a liquid with these properties:=Dieser Block ist eine Flüssigkeit mit folgenden Eigenschaften:
|
||||
This block is affected by gravity and can fall.=Dieser Block wird von der Schwerkraft beeinflusst und kann fallen.
|
||||
This block is completely silent when mined or built.=Dieser Block kann vollkommen lautlos gebaut oder abgebaut werden.
|
||||
This block is completely silent when walked on, mined or built.=Es ist vollkommen lautlos, wenn man auf diesen Block geht, ihn baut oder abbaut.
|
||||
This block is destroyed when a falling block ends up inside it.=Dieser Block wird zerstört, wenn ein fallender Block in ihm landet.
|
||||
This block negates all fall damage.=Auf diesem Block gibt es keinen Fallschaden.
|
||||
This block points to liquids.=Mit diesem Block zeigt man auf Flüssigkeiten.
|
||||
This block will drop as an item when a falling block ends up inside it.=Dieser Block wird sich als Gegenstand abwerfen, wenn ein fallender Block in ihn landet.
|
||||
This block will drop as an item when it is not attached to a surrounding block.=Dieser Block wird sich als Gegenstand abwerfen, wenn er nicht an einen benachbarten Block befestigt ist.
|
||||
This block will drop as an item when no collidable block is below it.=Dieser Block wird sich als Gegenstand abwerfen, wenn kein kollidierender Block unter ihn liegt.
|
||||
This block will drop the following items when mined: @1.=Dieser Block wird nach dem Abbauen die folgenden Gegenstände abwerfen: @1.
|
||||
This block will drop the following when mined: @1×@2.=Dieser Block wird nach dem Abbauen folgendes abwerfen: @1×@2.
|
||||
This block will drop the following when mined: @1.=Dieser Block wird nach dem Abbauen folgendes abwerfen: @1.
|
||||
This block will drop the following when mined: @1.=Dieser Block wird nach dem Abbauen folgendes abwerfen: @1.
|
||||
This block will make you bounce off with an elasticity of @1%.=Dieser Block wird Sie mit einer Elastizität von @1% abprallen lassen.
|
||||
This block will randomly drop one of the following when mined: @1.=Dieser Block wird nach dem Abbauen zufällig eines von den folgenden Dingen abwerfen: @1.
|
||||
This block will randomly drop up to @1 drops of the following possible drops when mined: @2.=Dieser Block nach dem Abbauen wird zufällig bis zu @1 Abwürfe von den folgenden möglichen Abwürfen abwerfen: @2.
|
||||
This block won't drop anything when mined.=Dieser Block wird nach dem Abbauen nichts abwerfen.
|
||||
This is a decorative block.=Dieser Block dient zur Dekoration.
|
||||
This is a melee weapon which deals damage by punching.=Dies ist eine Nahkampfwaffe, welche Schaden durch Schläge verursacht.
|
||||
Maximum damage per hit:=Maximaler Schaden pro Treffer:
|
||||
This item belongs to the @1 group.=Dieser Gegenstand gehört zur Gruppe „@1“.
|
||||
This item belongs to these groups: @1.=Dieser Gegenstand gehört zu den folgenden Gruppen: @1.
|
||||
This item can serve as a smelting fuel with a burning time of @1.=Dieser Gegenstand kann als Brennstoff mit einer Brenndauer von @1 dienen.
|
||||
This item is primarily used for crafting other items.=Dieser Gegenstand wird primär für die Fertigung von anderen Gegenständen benutzt.
|
||||
This item points to liquids.=Mit diesem Gegenstand zeigt man auf Flüssigkeiten.
|
||||
This tool belongs to the @1 group.=Dieses Werkzeug gehört zur Gruppe „@1“.
|
||||
This tool belongs to these groups: @1.=Dieses Werkzeug gehört zu den folgenden Gruppen: @1.
|
||||
This tool can serve as a smelting fuel with a burning time of @1.=Dieses Werkzeug kann als Brennstoff mit einer Brenndauer von @1 dienen.
|
||||
This tool is capable of mining.=Dies ist ein Grabewerkzeug.
|
||||
Maximum toughness levels:=Maximale Härtegrade:
|
||||
This tool points to liquids.=Mit diesem Werkzeug zeigt man auf Flüssigkeiten.
|
||||
# Itemname (25%)
|
||||
@1 (@2%)=@1 (@2%)
|
||||
Tools and weapons=Werkzeuge und Waffen
|
||||
Unknown Node=Unbekannter Node
|
||||
Usage help: @1=Benutzung: @1
|
||||
Walking on this block is completely silent.=Auf diesem Block sind Schritte lautlos.
|
||||
Whenever you are not wielding any item, you use the hand which acts as a tool with its own capabilities. When you are wielding an item which is not a mining tool or a weapon it will behave as if it would be the hand.=Wenn Sie keinen Gegenstand halten, benutzen Sie die Hand, welches als ein Werkzeug mit seinen eigenen Fägihkeiten dient. Wenn Sie einen Gegenstand halten, der kein Grabewerkzeug oder eine Waffe ist, wird er sich verhalten als wäre er die Hand.
|
||||
Yes=Ja
|
||||
You can not jump while standing on this block.=Man kann von diesem Block nicht abspringen.
|
||||
any level=beliebige Stufe
|
||||
level 0=Stufe 0
|
||||
level 0-@1=Stufen 0-@1
|
||||
unknown=unbekannt
|
||||
Unknown item (@1)=Unbekannter Gegenstand (@1)
|
||||
• @1: @2=• @1: @2
|
||||
• @1: @2 HP=• @1: @2 TP
|
||||
• @1: @2, @3=• @1: @2, @3
|
||||
• Flowing range: @1=• Fließweite: @1
|
||||
• No flowing=• Kein Fließen
|
||||
• Not renewable=• Nicht erneuerbar
|
||||
• Renewable=• Erneuerbar
|
||||
• Viscosity: @1=• Zähflüssigkeit: @1
|
||||
Itemstring: "@1"=Itemstring: „@1“
|
||||
Item reference of all wieldable tools and weapons=Gegenstandsreferenz aller tragbaren Werkzeugen und Waffen
|
||||
Durability: @1 uses=Haltbarkeit: @1 Benutzungen
|
||||
Durability: @1=Haltbarkeit: @1
|
||||
Mining durability:=Grabehaltbarkeit:
|
||||
• @1, level @2: @3 uses=• @1, Stufe @2: @3 Benutzungen
|
||||
• @1, level @2: Unlimited=• @1, Stufe @2: Unbegrenzt
|
||||
This block's rotation is affected by the way you place it: Place it on the floor or ceiling for a vertical orientation; place it at the side for a horizontal orientation. Sneaking while placing it leads to a perpendicular orientation instead.=Die Rotation dieses Blocks hängt davon ab, wie sie ihn platzieren: Platzieren Sie ihn auf den Boden oder an die Decke, um ihn vertikal aufzustellen; platzieren Sie in an der Seite für eine horizontale Ausrichtung. Wenn Sie während des Bauens schleichen, wird der Block stattdessen senkrecht zur üblichen Ausrichtung rotiert.
|
||||
Toughness level: @1=Härtegrad: @1
|
||||
This block is slippery.=Dieser Block ist rutschig.
|
||||
Miscellaneous items=Sonstige Gegenstände
|
||||
Item reference of items which are neither blocks, tools or weapons (esp. crafting items)=Gegenstandsreferenz aller Gegenstände, welche weder Blöcke, Werkzeuge oder Waffen sind (insb. Fertigungsgegenstände)
|
||||
A transparent block, basically empty space. It is usually left behind after digging something.=Ein transparenter Block, praktisch leerer Raum. Er wird üblicherweise hinterlassen, nachdem man etwas ausgegraben hat.
|
||||
Whenever you are not wielding any item, you use the hand which acts as a tool with its own capabilities. When you are wielding an item which is not a mining tool or a weapon it will behave as if it would be the hand.=Wenn Sie keinen Gegenstand halten, benutzen Sie die Hand, welches als ein Werkzeug mit seinen eigenen Fägihkeiten dient. Wenn Sie einen Gegenstand halten, der kein Grabewerkzeug oder eine Waffe ist, wird er sich verhalten als wäre er die Hand.
|
||||
|
@ -1,143 +1,156 @@
|
||||
# textdomain:doc_items
|
||||
Item Help=
|
||||
Adds automatically generated help texts for items.=
|
||||
Using it as fuel turns it into: @1.=L'utiliser comme combustible le transforme en : @1.
|
||||
This is a decorative block.=C'est un bloc de décoration.
|
||||
This block is a building block for creating various buildings.=Ce bloc est un bloc de construction pour créer différentes bâtisses.
|
||||
This item is primarily used for crafting other items.=Cet objet est principalement utilisé pour fabriquer d'autres objets.
|
||||
Hold it in your hand, then leftclick to eat it.=Tenez-le en main, puis cliquez-gauche pour le manger.
|
||||
Hold it in your hand, then leftclick to eat it. But why would you want to do this?=Tenez-le en main, puis cliquez-gauche pour le manger. Mais pourquoi feriez-vous cela ?
|
||||
This block's rotation is affected by the way you place it: Place it on the floor or ceiling for a vertical orientation; place it at the side for a horizontal orientation. Sneaking while placing it leads to a perpendicular orientation instead.=La manière dont vous placez ce bloc affecte sa rotation : placez-le au sol ou au plafond pour une orientation verticale ; placez-le sur un coté pour une orientation horizontale. Pour le placer de manière perpendiculaire, utilisez la touche déplacement discrêt en le plaçant.
|
||||
Hand=Main
|
||||
Yes=Oui
|
||||
No=Non
|
||||
# List separator (e.g. “one, two, three”)
|
||||
, =,
|
||||
Unknown item (@1)=Objet inconnu (@1)
|
||||
unknown=inconnu
|
||||
1 second=1 seconde
|
||||
@1 seconds=@1 secondes
|
||||
# Item count times item name
|
||||
%@1×@2=%@1×@2
|
||||
# Itemname (25%)
|
||||
@1 (@2%)=@1 (@2%)
|
||||
• @1: @2=• @1 : @2
|
||||
• @1, rating @2: @3 s - @4 s=• @1, note @2 : @3s - @4s
|
||||
• @1, rating @2: @3 s=• @1, note @2 : @3s
|
||||
• @1, level @2: @3 uses=• @1, niveau @2 : @3 utilisations
|
||||
• @1, level @2: Unlimited=• @1, niveau @2 : Illimité
|
||||
This tool is capable of mining.=Cet outil peut miner.
|
||||
Maximum toughness levels:=Niveau de robustesse maximum :
|
||||
Mining times:=Temps de minage :
|
||||
Mining durability:=Durabilité de minage :
|
||||
This is a melee weapon which deals damage by punching.=C'est une arme de mêlée qui inflige des dommages en frappant.
|
||||
Maximum damage per hit:=Dommages maximaux par frappe :
|
||||
• @1: @2 HP=• @1 : @2 PV
|
||||
Full punch interval: @1 s=Intervalle de frappe : @1
|
||||
This block can be mined by any mining tool in half a second.=Ce bloc peut être miné avec n'importe quel outil de minage en une demi-seconde.
|
||||
This block can be mined by any mining tool immediately.=Ce bloc peut être miné avec n'importe quel outil de minage instantanément.
|
||||
This block can not be mined by ordinary mining tools.=Ce bloc ne peut pas être miné avec les outils de minage ordinaires.
|
||||
This block can be destroyed by any mining tool in half a second.=Ce bloc peut être détruit pas n'importe quel outil de minage en une demi-seconde.
|
||||
This block can be destroyed by any mining tool immediately.=Ce bloc peut être détruit pas n'importe quel outil de minage instantanément.
|
||||
This block can not be destroyed by ordinary mining tools.=Ce bloc ne peut pas être détruit avec les outils de minage ordinaires.
|
||||
This block can be mined by mining tools which match any of the following mining ratings and its toughness level.=Ce bloc peut être miné avec les outils de minages qui ont les notes de minage et les niveaux de robustesse suivants :
|
||||
Mining ratings:=Notes de minage :
|
||||
Toughness level: @1=Niveau de robustesse : @1
|
||||
Range: @1=Portée : @1
|
||||
Range: 4=Portée : 4
|
||||
# Range: <Hand> (<Range>)
|
||||
Range: @1 (@2)=Portée : @1 (@2)
|
||||
This tool can serve as a smelting fuel with a burning time of @1.=Cet outil peut servir de combustible pendant @1.
|
||||
This block can serve as a smelting fuel with a burning time of @1.=Ce bloc peut servir de combustible pendant @1.
|
||||
This item can serve as a smelting fuel with a burning time of @1.=Cet objet peut servir de combustible pendant @1.
|
||||
Using it as fuel turns it into: @1.=
|
||||
Itemstring: "@1"=Identifiant d'objet : "@1"
|
||||
Description: @1=Description : @1
|
||||
Usage help: @1=Aide d'utilisation : @1
|
||||
Maximum stack size: @1=Taille maximum de pile : @1
|
||||
This block points to liquids.=Ce bloc peut pointer les liquides.
|
||||
This tool points to liquids.=Cet outil peut pointer les liquides.
|
||||
This item points to liquids.=Cet objet peut pointer les liquides.
|
||||
Punches with this block don't work as usual; melee combat and mining are either not possible or work differently.=Les frappes avec ce bloc ne fonctionnent pas de la manière usuelle ; le combat au corps à corps et le minage ne sont soit pas possible ou fonctionnent différemment.
|
||||
Punches with this tool don't work as usual; melee combat and mining are either not possible or work differently.=Les frappes avec cet outil ne fonctionnent pas de la manière usuelle ; le combat au corps à corps et le minage ne sont soit pas possible ou fonctionnent différemment.
|
||||
Punches with this item don't work as usual; melee combat and mining are either not possible or work differently.=Les frappes avec cet objet ne fonctionnent pas de la manière usuelle ; le combat au corps à corps et le minage ne sont soit pas possible ou fonctionnent différemment.
|
||||
This block belongs to the @1 group.=Ce bloc appartient au groupe @1.
|
||||
This tool belongs to the @1 group.=Cet outil appartient au groupe @1.
|
||||
This item belongs to the @1 group.=Cet objet appartient au groupe @1.
|
||||
This block belongs to these groups: @1.=Ce bloc appartient aux groupes : @1.
|
||||
This tool belongs to these groups: @1.=Cet outil appartient aux groupes suivants : @1.
|
||||
This item belongs to these groups: @1.=Cet objet appartient aux groupes suivants : @1
|
||||
Blocks=Blocs
|
||||
Item reference of blocks and other things which are capable of occupying space=L'index des blocs et autres choses qui peuvent occuper l'espace
|
||||
Collidable: @1=Percutable : @1
|
||||
Pointable: Yes=Pointable : Oui
|
||||
Pointable: Only by special items=Pointable : Seulement avec des objets spéciaux
|
||||
Pointable: No=Pointable : Non
|
||||
This block is a liquid with these properties:=Ce bloc est un liquide aux proprités suivantes :
|
||||
• Renewable=• Renouvelable
|
||||
• Not renewable=• Ne se renouvelle pas
|
||||
• No flowing=• Ne coule pas
|
||||
• Flowing range: @1=• Distance de flux : @1
|
||||
• Viscosity: @1=• Viscosité : @1
|
||||
This block causes a damage of @1 hit points per second.=Ce bloc cause des domages de @1 points de vie par seconde.
|
||||
This block causes a damage of @1 hit point per second.=Ce bloc cause des domages de @1 point de vie par seconde.
|
||||
This block heals @1 hit point per second.=
|
||||
This block heals @1 hit points per second.=
|
||||
This block decreases your breath and causes a drowning damage of @1 hit points every 2 seconds.=Ce bloc réduit votre souffle et cause des domages de noyade de @1 points de vie toutes les 2 secondes.
|
||||
This block decreases your breath and causes a drowning damage of @1 hit point every 2 seconds.=Ce bloc réduit votre souffle et cause des domages de noyade de @1 point de vie toutes les 2 secondes.
|
||||
The fall damage on this block is increased by @1%.=Les domages de chute sur ce bloc sont augmentés de @1%.
|
||||
This block negates all fall damage.=Ce bloc annule tous les domages de chute.
|
||||
The fall damage on this block is reduced by @1%.=Les domages de chute sur ce bloc sont réduits de @1%.
|
||||
You can not jump while standing on this block.=Vous ne pouvez pas sauter en étant sur ce bloc.
|
||||
You can not jump while inside this block.=
|
||||
This block slows down your movement.=
|
||||
This block can be climbed, but only horizontally.=
|
||||
This block can be climbed, but only downwards.=
|
||||
This block can be climbed, but only upwards.=
|
||||
This block can be climbed.=Ce bloc peut être escaladé.
|
||||
This block will make you bounce off with an elasticity of @1%.=Ce bloc vous fera rebondir avec une élasticité de @1%.
|
||||
This block is slippery.=
|
||||
This block is completely silent when walked on, mined or built.=Ce bloc ne fait pas de bruit lorsque l'on marche dessus, le mine ou le construit.
|
||||
This block is completely silent when mined or built.=Ce bloc ne fait pas de bruit lorsque l'on le mine ou le construit.
|
||||
Walking on this block is completely silent.=Marcher sur ce bloc est silencieux.
|
||||
Mining this block is completely silent.=Miner ce bloc est complètement silencieux.
|
||||
Building this block is completely silent.=Construire ce bloc est complètement silentieux
|
||||
This block is affected by gravity and can fall.=Ce bloc est affecté par la gravité et peut tomber.
|
||||
Building another block at this block will place it inside and replace it.=Construire un autre bloc sur ce bloc le placera à l'intérieur et le remplacera.
|
||||
Falling blocks can go through this block; they destroy it when doing so.=Les blocs en chute peuvent traverser ce bloc; ils le détruisent en faisant cela.
|
||||
This block will drop as an item when a falling block ends up inside it.=Ce bloc se transformera en objet lorsqu'un autre bloc tombe dessus.
|
||||
This block is destroyed when a falling block ends up inside it.=Ce bloc est détruit lorsqu'un autre bloc tombe dessus.
|
||||
This block will drop as an item when it is not attached to a surrounding block.=Ce bloc se transformera en objet lorsqu'il n'est plus rattaché à un bloc alentour.
|
||||
This block will drop as an item when no collidable block is below it.=Ce bloc se transformera en objet lorsqu'il n'y aura plus de bloc percutable en dessous.
|
||||
Liquids can flow into this block and destroy it.=Les liquides peuvent couler sur ce bloc et le détruire.
|
||||
This block is a light source with a light level of @1.=Ce bloc est une source de lumière de niveau @1.
|
||||
This block glows faintly with a light level of @1.=Ce bloc brille xxx avec une lumière de niveau @1.
|
||||
This block allows light to propagate with a small loss of brightness, and sunlight can even go through losslessly.=Ce bloc laisse passer la lumière avec une petite perte de luminosité, et la lumière du soleil peut la traverser sans perte.
|
||||
This block allows light to propagate with a small loss of brightness.=Ce bloc laisse passer la lumière avec une petite perte de luminosité.
|
||||
This block allows sunlight to propagate without loss in brightness.=The bloc laisse passer la lumière du soleil sans perte de luminosité.
|
||||
Unknown Node=Nœud inconnu
|
||||
This block connects to this block: @1.=Ce bloc se connecte à ce bloc : @1.
|
||||
This block connects to these blocks: @1.=Ce bloc se connecte à ces blocs : @1
|
||||
This block connects to blocks of the @1 group.=Ce bloc se connecte aux blocs du groupe @1.
|
||||
This block connects to blocks of the following groups: @1.=Ce bloc se connecte aux blocs des groupes suivants : @1
|
||||
This block won't drop anything when mined.=Ce bloc ne donnera rien lorsque miné.
|
||||
This block will drop the following when mined: @1×@2.=Ce bloc donnera les objets suivant lorsque miné : @1×@2.
|
||||
This block will drop the following when mined: @1.=Ce bloc donnera les objets suivant lorsque miné : @1.
|
||||
This block will drop the following items when mined: @1.=Ce bloc donnera les objets suivant lorsque miné : @1.
|
||||
This block will randomly drop one of the following when mined: @1.=Ce bloc laissera tomber de manière aléatoire un des éléments suivants lorsque miné : @1.
|
||||
This block will randomly drop up to @1 drops of the following possible drops when mined: @2.=Ce bloc laissera tomber de manière aléatoire jusqu'à @1 des éléments suivants lorque miné : @2.
|
||||
# Final list separator (e.g. “One, two and three”)
|
||||
and = et
|
||||
@1×@2=
|
||||
# Itemname (<0.5%)
|
||||
@1 (<0.5%)=@1 (<0.5%)
|
||||
# Itemname (ca. 25%)
|
||||
@1 (ca. @2%)=@1 (ca. @2%)
|
||||
# List separator (e.g. “one, two, three”)
|
||||
, =,
|
||||
# Final list separator (e.g. “One, two and three”)
|
||||
and = et
|
||||
1 second=1 seconde
|
||||
A transparent block, basically empty space. It is usually left behind after digging something.=Un bloc transparent, tout simplement un espace vide. Il apparaît généralement après avoir creusé quelque chose.
|
||||
Blocks=Blocs
|
||||
Building another block at this block will place it inside and replace it.=Construire un autre bloc sur ce bloc le placera à l'intérieur et le remplacera.
|
||||
Building this block is completely silent.=Construire ce bloc est complètement silentieux
|
||||
Collidable: @1=Percutable : @1
|
||||
Description: @1=Description : @1
|
||||
Falling blocks can go through this block; they destroy it when doing so.=Les blocs en chute peuvent traverser ce bloc; ils le détruisent en faisant cela.
|
||||
Full punch interval: @1 s=Intervalle de frappe : @1
|
||||
Hand=Main
|
||||
Hold it in your hand, then leftclick to eat it.=Tenez-le en main, puis cliquez-gauche pour le manger.
|
||||
Hold it in your hand, then leftclick to eat it. But why would you want to do this?=Tenez-le en main, puis cliquez-gauche pour le manger. Mais pourquoi feriez-vous cela ?
|
||||
# Itemname (25%)
|
||||
@1 (@2%)=@1 (@2%)
|
||||
Tools and weapons=Outils et armes
|
||||
Item reference of all wieldable tools and weapons=L'index des outils et armes manipulables
|
||||
Item reference of blocks and other things which are capable of occupying space=L'index des blocs et autres choses qui peuvent occuper l'espace
|
||||
Item reference of items which are neither blocks, tools or weapons (esp. crafting items)=L'index des choses qui ne sont ni des blocs, ni des outils ou armes (particulièrement les objets d'assemblage)
|
||||
Liquids can flow into this block and destroy it.=Les liquides peuvent couler sur ce bloc et le détruire.
|
||||
Maximum stack size: @1=Taille maximum de pile : @1
|
||||
Mining level: @1=Niveau de minage : @1
|
||||
Mining ratings:=Notes de minage :
|
||||
• @1, rating @2: @3 s - @4 s=• @1, note @2 : @3s - @4s
|
||||
• @1, rating @2: @3 s=• @1, note @2 : @3s
|
||||
Mining times:=Temps de minage :
|
||||
Mining this block is completely silent.=Miner ce bloc est complètement silencieux.
|
||||
Durability: @1 uses=Durabilité : @1 utilisations
|
||||
Durability: @1=Durabilité : @1
|
||||
Miscellaneous items=Objets divers
|
||||
No=Non
|
||||
Pointable: No=Pointable : Non
|
||||
Pointable: Only by special items=Pointable : Seulement avec des objets spéciaux
|
||||
Pointable: Yes=Pointable : Oui
|
||||
Punches with this block don't work as usual; melee combat and mining are either not possible or work differently.=Les frappes avec ce bloc ne fonctionnent pas de la manière usuelle ; le combat au corps à corps et le minage ne sont soit pas possible ou fonctionnent différemment.
|
||||
Punches with this item don't work as usual; melee combat and mining are either not possible or work differently.=Les frappes avec cet objet ne fonctionnent pas de la manière usuelle ; le combat au corps à corps et le minage ne sont soit pas possible ou fonctionnent différemment.
|
||||
Punches with this tool don't work as usual; melee combat and mining are either not possible or work differently.=Les frappes avec cet outil ne fonctionnent pas de la manière usuelle ; le combat au corps à corps et le minage ne sont soit pas possible ou fonctionnent différemment.
|
||||
Range: @1=Portée : @1
|
||||
# Range: <Hand> (<Range>)
|
||||
Range: @1 (@2)=Portée : @1 (@2)
|
||||
Range: 4=Portée : 4
|
||||
Item reference of items which are neither blocks, tools or weapons (esp. crafting items)=L'index des choses qui ne sont ni des blocs, ni des outils ou armes (particulièrement les objets d'assemblage)
|
||||
A transparent block, basically empty space. It is usually left behind after digging something.=Un bloc transparent, tout simplement un espace vide. Il apparaît généralement après avoir creusé quelque chose.
|
||||
Whenever you are not wielding any item, you use the hand which acts as a tool with its own capabilities. When you are wielding an item which is not a mining tool or a weapon it will behave as if it would be the hand.=Quand vous ne maniez aucun objet, vous utilisez la main qui se comporte comme un outil avec ses propres capacités. Lorsque vous maniez un objet qui n'est pas un outil ou une arme il se comportera comme si c'était la main.
|
||||
|
||||
|
||||
##### not used anymore #####
|
||||
|
||||
Using it as fuel turns it into: @1.=L'utiliser comme combustible le transforme en : @1.
|
||||
# Item count times item name
|
||||
%@1×@2=%@1×@2
|
||||
Mining level: @1=Niveau de minage : @1
|
||||
# Rating used for digging times
|
||||
Rating @1=Note @1
|
||||
# @1 is minimal rating, @2 is maximum rating
|
||||
Rating @1-@2=Note @1-@2
|
||||
The fall damage on this block is increased by @1%.=Les domages de chute sur ce bloc sont augmentés de @1%.
|
||||
The fall damage on this block is reduced by @1%.=Les domages de chute sur ce bloc sont réduits de @1%.
|
||||
This block allows light to propagate with a small loss of brightness, and sunlight can even go through losslessly.=Ce bloc laisse passer la lumière avec une petite perte de luminosité, et la lumière du soleil peut la traverser sans perte.
|
||||
This block allows light to propagate with a small loss of brightness.=Ce bloc laisse passer la lumière avec une petite perte de luminosité.
|
||||
This block allows sunlight to propagate without loss in brightness.=The bloc laisse passer la lumière du soleil sans perte de luminosité.
|
||||
This block belongs to the @1 group.=Ce bloc appartient au groupe @1.
|
||||
This block belongs to these groups: @1.=Ce bloc appartient aux groupes : @1.
|
||||
This block can be climbed.=Ce bloc peut être escaladé.
|
||||
This block can be destroyed by any mining tool immediately.=Ce bloc peut être détruit pas n'importe quel outil de minage instantanément.
|
||||
This block can be destroyed by any mining tool in half a second.=Ce bloc peut être détruit pas n'importe quel outil de minage en une demi-seconde.
|
||||
This block can be mined by any mining tool immediately.=Ce bloc peut être miné avec n'importe quel outil de minage instantanément.
|
||||
This block can be mined by any mining tool in half a second.=Ce bloc peut être miné avec n'importe quel outil de minage en une demi-seconde.
|
||||
This block can be mined by mining tools which match any of the following mining ratings and its toughness level.=Ce bloc peut être miné avec les outils de minages qui ont les notes de minage et les niveaux de robustesse suivants :
|
||||
This block can not be destroyed by ordinary mining tools.=Ce bloc ne peut pas être détruit avec les outils de minage ordinaires.
|
||||
This block can not be mined by ordinary mining tools.=Ce bloc ne peut pas être miné avec les outils de minage ordinaires.
|
||||
This block can serve as a smelting fuel with a burning time of @1.=Ce bloc peut servir de combustible pendant @1.
|
||||
This block causes a damage of @1 hit point per second.=Ce bloc cause des domages de @1 point de vie par seconde.
|
||||
This block causes a damage of @1 hit points per second.=Ce bloc cause des domages de @1 points de vie par seconde.
|
||||
This block connects to blocks of the @1 group.=Ce bloc se connecte aux blocs du groupe @1.
|
||||
This block connects to blocks of the following groups: @1.=Ce bloc se connecte aux blocs des groupes suivants : @1
|
||||
This block connects to these blocks: @1.=Ce bloc se connecte à ces blocs : @1
|
||||
This block connects to this block: @1.=Ce bloc se connecte à ce bloc : @1.
|
||||
This block decreases your breath and causes a drowning damage of @1 hit point every 2 seconds.=Ce bloc réduit votre souffle et cause des domages de noyade de @1 point de vie toutes les 2 secondes.
|
||||
This block decreases your breath and causes a drowning damage of @1 hit points every 2 seconds.=Ce bloc réduit votre souffle et cause des domages de noyade de @1 points de vie toutes les 2 secondes.
|
||||
This block is a light source with a light level of @1.=Ce bloc est une source de lumière de niveau @1.
|
||||
This block glows faintly with a light level of @1.=Ce bloc brille xxx avec une lumière de niveau @1.
|
||||
This block is a building block for creating various buildings.=Ce bloc est un bloc de construction pour créer différentes bâtisses.
|
||||
This block is a liquid with these properties:=Ce bloc est un liquide aux proprités suivantes :
|
||||
This block is affected by gravity and can fall.=Ce bloc est affecté par la gravité et peut tomber.
|
||||
This block is completely silent when mined or built.=Ce bloc ne fait pas de bruit lorsque l'on le mine ou le construit.
|
||||
This block is completely silent when walked on, mined or built.=Ce bloc ne fait pas de bruit lorsque l'on marche dessus, le mine ou le construit.
|
||||
This block is destroyed when a falling block ends up inside it.=Ce bloc est détruit lorsqu'un autre bloc tombe dessus.
|
||||
This block negates all fall damage.=Ce bloc annule tous les domages de chute.
|
||||
This block points to liquids.=Ce bloc peut pointer les liquides.
|
||||
This block will drop as an item when a falling block ends up inside it.=Ce bloc se transformera en objet lorsqu'un autre bloc tombe dessus.
|
||||
This block will drop as an item when it is not attached to a surrounding block.=Ce bloc se transformera en objet lorsqu'il n'est plus rattaché à un bloc alentour.
|
||||
This block will drop as an item when no collidable block is below it.=Ce bloc se transformera en objet lorsqu'il n'y aura plus de bloc percutable en dessous.
|
||||
This block will drop the following items when mined: @1.=Ce bloc donnera les objets suivant lorsque miné : @1.
|
||||
This block will drop the following when mined: @1×@2.=Ce bloc donnera les objets suivant lorsque miné : @1×@2.
|
||||
This block will drop the following when mined: @1.=Ce bloc donnera les objets suivant lorsque miné : @1.
|
||||
This block will drop the following when mined: @1.=Ce bloc donnera les objets suivant lorsque miné : @1.
|
||||
This block will make you bounce off with an elasticity of @1%.=Ce bloc vous fera rebondir avec une élasticité de @1%.
|
||||
This block will randomly drop one of the following when mined: @1.=Ce bloc laissera tomber de manière aléatoire un des éléments suivants lorsque miné : @1.
|
||||
This block will randomly drop up to @1 drops of the following possible drops when mined: @2.=Ce bloc laissera tomber de manière aléatoire jusqu'à @1 des éléments suivants lorque miné : @2.
|
||||
This block won't drop anything when mined.=Ce bloc ne donnera rien lorsque miné.
|
||||
This is a decorative block.=C'est un bloc de décoration.
|
||||
This is a melee weapon which deals damage by punching.=C'est une arme de mêlée qui inflige des dommages en frappant.
|
||||
Maximum damage per hit:=Dommages maximaux par frappe :
|
||||
This item belongs to the @1 group.=Cet objet appartient au groupe @1.
|
||||
This item belongs to these groups: @1.=Cet objet appartient aux groupes suivants : @1
|
||||
This item can serve as a smelting fuel with a burning time of @1.=Cet objet peut servir de combustible pendant @1.
|
||||
This item is primarily used for crafting other items.=Cet objet est principalement utilisé pour fabriquer d'autres objets.
|
||||
This item points to liquids.=Cet objet peut pointer les liquides.
|
||||
This tool belongs to the @1 group.=Cet outil appartient au groupe @1.
|
||||
This tool belongs to these groups: @1.=Cet outil appartient aux groupes suivants : @1.
|
||||
This tool can serve as a smelting fuel with a burning time of @1.=Cet outil peut servir de combustible pendant @1.
|
||||
This tool is capable of mining.=Cet outil peut miner.
|
||||
Maximum toughness levels:=Niveau de robustesse maximum :
|
||||
This tool points to liquids.=Cet outil peut pointer les liquides.
|
||||
Tools and weapons=Outils et armes
|
||||
Unknown Node=Nœud inconnu
|
||||
Usage help: @1=Aide d'utilisation : @1
|
||||
Walking on this block is completely silent.=Marcher sur ce bloc est silencieux.
|
||||
Whenever you are not wielding any item, you use the hand which acts as a tool with its own capabilities. When you are wielding an item which is not a mining tool or a weapon it will behave as if it would be the hand.=Quand vous ne maniez aucun objet, vous utilisez la main qui se comporte comme un outil avec ses propres capacités. Lorsque vous maniez un objet qui n'est pas un outil ou une arme il se comportera comme si c'était la main.
|
||||
Yes=Oui
|
||||
You can not jump while standing on this block.=Vous ne pouvez pas sauter en étant sur ce bloc.
|
||||
any level=Tous les niveaux
|
||||
level 0=Niveau 0
|
||||
level 0-@1=Niveau 0-@1
|
||||
unknown=inconnu
|
||||
Unknown item (@1)=Objet inconnu (@1)
|
||||
• @1: @2=• @1 : @2
|
||||
• @1: @2 HP=• @1 : @2 PV
|
||||
• @1: @2, @3=• @1 : @2, @3
|
||||
• Flowing range: @1=• Distance de flux : @1
|
||||
• No flowing=• Ne coule pas
|
||||
• Not renewable=• Ne se renouvelle pas
|
||||
• Renewable=• Renouvelable
|
||||
• Viscosity: @1=• Viscosité : @1
|
||||
Itemstring: "@1"=Identifiant d'objet : "@1"
|
||||
Durability: @1 uses=Durabilité : @1 utilisations
|
||||
Durability: @1=Durabilité : @1
|
||||
Mining durability:=Durabilité de minage :
|
||||
• @1, level @2: @3 uses=• @1, niveau @2 : @3 utilisations
|
||||
• @1, level @2: Unlimited=• @1, niveau @2 : Illimité
|
||||
This block's rotation is affected by the way you place it: Place it on the floor or ceiling for a vertical orientation; place it at the side for a horizontal orientation. Sneaking while placing it leads to a perpendicular orientation instead.=La manière dont vous placez ce bloc affecte sa rotation : placez-le au sol ou au plafond pour une orientation verticale ; placez-le sur un coté pour une orientation horizontale. Pour le placer de manière perpendiculaire, utilisez la touche déplacement discrêt en le plaçant.
|
||||
Toughness level: @1=Niveau de robustesse : @1
|
||||
|
@ -1,142 +1,158 @@
|
||||
# textdomain:doc_items
|
||||
Item Help=
|
||||
Adds automatically generated help texts for items.=
|
||||
Using it as fuel turns it into: @1.= Usar isso como combustivel o transforma em: @1.
|
||||
This is a decorative block.=Esse é um bloco decorativo.
|
||||
This block is a building block for creating various buildings.=Esse bloco é um bloco de construção para criar vários edifícios.
|
||||
This item is primarily used for crafting other items.=Esse item é usado principalmente para criar outros itens.
|
||||
Hold it in your hand, then leftclick to eat it.=Segure-o na sua mão, depois clique com o botão esquerdo para comer.
|
||||
Hold it in your hand, then leftclick to eat it. But why would you want to do this?=Segure-o na sua mão, depois clique com o botão esquerdo para comer. Mas por que você quer fazer isso?
|
||||
This block's rotation is affected by the way you place it: Place it on the floor or ceiling for a vertical orientation; place it at the side for a horizontal orientation. Sneaking while placing it leads to a perpendicular orientation instead.=
|
||||
Hand=Mão
|
||||
Yes=Sim
|
||||
No=Não
|
||||
# List separator (e.g. “one, two, three”)
|
||||
, =,
|
||||
Unknown item (@1)=
|
||||
unknown=desconhecido
|
||||
1 second=1 segundo
|
||||
@1 seconds=@1 segundos
|
||||
# Item count times item name
|
||||
%@1×@2=%@1×@2
|
||||
# Itemname (25%)
|
||||
@1 (@2%)=@1 (@2%)
|
||||
• @1: @2=
|
||||
• @1, rating @2: @3 s - @4 s=
|
||||
• @1, rating @2: @3 s=
|
||||
• @1, level @2: @3 uses=
|
||||
• @1, level @2: Unlimited=
|
||||
This tool is capable of mining.=Essa ferramenta é capaz de minerar.
|
||||
Maximum toughness levels:=Níveis máximos de dureza:
|
||||
Mining times:=Tempos de mineração:
|
||||
Mining durability:=
|
||||
This is a melee weapon which deals damage by punching.=Essa é uma arma corpo-a-corpo que causa dano ao socar.
|
||||
Maximum damage per hit:=Dano máximo por acerto:
|
||||
• @1: @2 HP=
|
||||
Full punch interval: @1 s=Intervalo completo de golpe: @1 s
|
||||
This block can be mined by any mining tool in half a second.=Esse bloco pode ser extraído em meio segundo por qualquer ferramenta de mineração.
|
||||
This block can be mined by any mining tool immediately.=Esse bloco pode ser extraído de forma imediata por qualquer ferramenta de mineração.
|
||||
This block can not be mined by ordinary mining tools.=Esse bloco não pode ser extraído por ferramentas de mineração comuns.
|
||||
This block can be destroyed by any mining tool in half a second.=Esse bloco pode ser destruído em meio segundo por qualquer ferramenta de mineração.
|
||||
This block can be destroyed by any mining tool immediately.=Esse bloco pode ser destruído de forma imediata por qualquer ferramenta de mineração.
|
||||
This block can not be destroyed by ordinary mining tools.=Esse bloco não pode ser destruído por ferramentas de mineração comuns.
|
||||
This block can be mined by mining tools which match any of the following mining ratings and its toughness level.=Esse bloco pode ser extraído por ferramentas de mineração que correspondem a qualquer uma das seguintes classificações de mineração e seu nível de resistência.
|
||||
Mining ratings:=Classificações de mineração:
|
||||
Toughness level: @1=
|
||||
Range: @1=Alcance: @1
|
||||
Range: 4=Range: 4
|
||||
# Range: <Hand> (<Range>)
|
||||
Range: @1 (@2)=Alcance: @1 (@2)
|
||||
This tool can serve as a smelting fuel with a burning time of @1.=Essa ferramenta pode servir como combustível de fundição com um tempo de queima de @1.
|
||||
This block can serve as a smelting fuel with a burning time of @1.=Esse bloco pode servir como combustível de fundição com um tempo de queima de @1.
|
||||
This item can serve as a smelting fuel with a burning time of @1.=Esse item pode servir como combustível de fundição com um tempo de queima de @1.
|
||||
Using it as fuel turns it into: @1.= Usar isso como combustivel o transforma em: @1.
|
||||
Itemstring: "@1"=
|
||||
Description: @1=Descrição: @1
|
||||
Usage help: @1=Como usar: @1
|
||||
Maximum stack size: @1=Tamanho máximo de empilhamento: @1
|
||||
This block points to liquids.=Esse bloco pode ser apontado para líquidos.
|
||||
This tool points to liquids.=Essa ferramenta pode ser apontada para líquidos.
|
||||
This item points to liquids.=Esse item pode ser apontado para líquidos.
|
||||
Punches with this block don't work as usual; melee combat and mining are either not possible or work differently.=Socos com esse bloco não funcionam de forma comum; Combate corpo a corpo e mineração não são possíveis ou funcionam de forma diferente.
|
||||
Punches with this tool don't work as usual; melee combat and mining are either not possible or work differently.=Socos com essa ferramenta não funcionam de forma comum; Combate corpo a corpo e mineração não são possíveis ou funcionam de forma diferente.
|
||||
Punches with this item don't work as usual; melee combat and mining are either not possible or work differently.=Socos com esse item não funcionam de forma comum; Combate corpo a corpo e mineração não são possíveis ou funcionam de forma diferente.
|
||||
This block belongs to the @1 group.=Esse bloco pertence ao grupo @1.
|
||||
This tool belongs to the @1 group.=Essa ferramenta pertence ao grupo @1.
|
||||
This item belongs to the @1 group.=Esse item pertence ao grupo @1.
|
||||
This block belongs to these groups: @1.=Esse bloco pertence a estes grupos: @1.
|
||||
This tool belongs to these groups: @1.=Essa ferramenta pertence aos seguintes grupos: @1.
|
||||
This item belongs to these groups: @1.=Esse item pertence aos seguintes grupos: @1.
|
||||
Blocks=Blocos
|
||||
Item reference of blocks and other things which are capable of occupying space=Referência de item de blocos e outras coisas que são capazes de ocupar espaço
|
||||
Collidable: @1=Coledível: @1
|
||||
Pointable: Yes=Apontável: Sim
|
||||
Pointable: Only by special items=Apontável: Apenas por itens especiais
|
||||
Pointable: No=Apontável: Não
|
||||
This block is a liquid with these properties:=Esse bloco é um líquido com as seguintes propriedades:
|
||||
• Renewable=
|
||||
• Not renewable=
|
||||
• No flowing=
|
||||
• Flowing range: @1=
|
||||
• Viscosity: @1=
|
||||
This block causes a damage of @1 hit points per second.=Esse bloco causa um dano de @1 pontos de impacto por segundo.
|
||||
This block causes a damage of @1 hit point per second.=Esse bloco causa um dano de @1 ponto de impacto por segundo.
|
||||
This block heals @1 hit point per second.=
|
||||
This block heals @1 hit points per second.=
|
||||
This block decreases your breath and causes a drowning damage of @1 hit points every 2 seconds.=Esse bloco diminui a sua respiração e causa um dano por afogamento de @1 pontos de vida a cada 2 segundos.
|
||||
This block decreases your breath and causes a drowning damage of @1 hit point every 2 seconds.=Esse bloco diminui a sua respiração e causa um dano por afogamento de @1 ponto de vida a cada 2 segundos.
|
||||
The fall damage on this block is increased by @1%.=O dano por queda nesse bloco é aumentado em @1%.
|
||||
This block negates all fall damage.=Esse bloco nega todos os danos por queda.
|
||||
The fall damage on this block is reduced by @1%.=O dano por queda nesse bloco é reduzido em @1%.
|
||||
You can not jump while standing on this block.= Você não pode pular enquanto estiver neste bloco.
|
||||
You can not jump while inside this block.=
|
||||
This block slows down your movement.=
|
||||
This block can be climbed, but only horizontally.=
|
||||
This block can be climbed, but only downwards.=
|
||||
This block can be climbed, but only upwards.=
|
||||
This block can be climbed.=Esse bloco pode ser escalado.
|
||||
This block will make you bounce off with an elasticity of @1%.=Esse bloco fará você saltar com uma elasticidade de @1%.
|
||||
This block is slippery.=
|
||||
This block is completely silent when walked on, mined or built.=Esse bloco é completamente silencioso quando pisado, extraído ou construído.
|
||||
This block is completely silent when mined or built.=Esse bloco é completamente silencioso quando extraído ou construído.
|
||||
Walking on this block is completely silent.=
|
||||
Mining this block is completely silent.=Minerar esse bloco é completamente silencioso.
|
||||
Building this block is completely silent.=Construir esse bloco é completamente silencioso.
|
||||
This block is affected by gravity and can fall.=Esse bloco é afetado pela gravidade e pode cair.
|
||||
Building another block at this block will place it inside and replace it.=Construir outro bloco nesse bloco vai subistitui-lo.
|
||||
Falling blocks can go through this block; they destroy it when doing so.=Blocos caindo podem atravessar esse bloco destruindo-o.
|
||||
This block will drop as an item when a falling block ends up inside it.=Esse bloco vai cair como um item quando um bloco caindo acaba dentro dele.
|
||||
This block is destroyed when a falling block ends up inside it.=Esse bloco é destruído quando um bloco em queda acaba dentro dele.
|
||||
This block will drop as an item when it is not attached to a surrounding block.=Esse bloco irá cair como um item quando não estiver anexado a um bloco adjacente.
|
||||
This block will drop as an item when no collidable block is below it.=Esse bloco irá cair como um item quando nenhum bloco colidível estiver abaixo dele.
|
||||
Liquids can flow into this block and destroy it.=Líquidos podem fluir por esse bloco destruindo-o.
|
||||
This block is a light source with a light level of @1.=Esse bloco é uma fonte de luz com um nível de luz de @1.
|
||||
This block glows faintly with a light level of @1.=Esse bloco tem um brilho fraco com um nível de luz de @1.
|
||||
This block allows light to propagate with a small loss of brightness, and sunlight can even go through losslessly.=Esse bloco permite que a luz se propague com uma pequena perda de brilho, e a luz solar pode até passar sem perdas.
|
||||
This block allows light to propagate with a small loss of brightness.=Esse bloco permite que a luz se propague com uma pequena perda de brilho.
|
||||
This block allows sunlight to propagate without loss in brightness.=Esse bloco permite que a luz solar se propague sem perda de brilho.
|
||||
Unknown Node=Bloco Desconhecido
|
||||
This block connects to this block: @1.=Esse bloco se conecta a esse bloco: @1.
|
||||
This block connects to these blocks: @1.=Esse bloco se conecta aos seguintes blocos: @1.
|
||||
This block connects to blocks of the @1 group.=Esse bloco se conecta a blocos do grupo @1.
|
||||
This block connects to blocks of the following groups: @1.=Esse bloco se conecta a dos seguintes grupos: @1.
|
||||
This block won't drop anything when mined.=Esse bloco não vai deixar cair nada quando extraído.
|
||||
This block will drop the following when mined: @1×@2.=Esse bloco irá deixar cair o seguinte quando extraído: @1×@2.
|
||||
This block will drop the following when mined: @1.=Esse bloco irá deixar cair o seguinte quando extraído: @1.
|
||||
This block will drop the following items when mined: @1.=
|
||||
This block will randomly drop one of the following when mined: @1.=
|
||||
This block will randomly drop up to @1 drops of the following possible drops when mined: @2.=
|
||||
# Final list separator (e.g. “One, two and three”)
|
||||
and = e
|
||||
@1×@2=
|
||||
# Itemname (<0.5%)
|
||||
@1 (<0.5%)=@1 (<0.5%)
|
||||
# Itemname (ca. 25%)
|
||||
@1 (ca. @2%)=
|
||||
# List separator (e.g. “one, two, three”)
|
||||
, =,
|
||||
# Final list separator (e.g. “One, two and three”)
|
||||
and = e
|
||||
1 second=1 segundo
|
||||
A transparent block, basically empty space. It is usually left behind after digging something.=Um bloco transparente, basicamente um vazio. Isso geralmente fica no lugar de um bloco removido.
|
||||
Blocks=Blocos
|
||||
Building another block at this block will place it inside and replace it.=Construir outro bloco nesse bloco vai subistitui-lo.
|
||||
Building this block is completely silent.=Construir esse bloco é completamente silencioso.
|
||||
Collidable: @1=Coledível: @1
|
||||
Description: @1=Descrição: @1
|
||||
Falling blocks can go through this block; they destroy it when doing so.=Blocos caindo podem atravessar esse bloco destruindo-o.
|
||||
Full punch interval: @1 s=Intervalo completo de golpe: @1 s
|
||||
Hand=Mão
|
||||
Hold it in your hand, then leftclick to eat it.=Segure-o na sua mão, depois clique com o botão esquerdo para comer.
|
||||
Hold it in your hand, then leftclick to eat it. But why would you want to do this?=Segure-o na sua mão, depois clique com o botão esquerdo para comer. Mas por que você quer fazer isso?
|
||||
# Itemname (25%)
|
||||
@1 (@2%)=@1 (@2%)
|
||||
Tools and weapons=Ferramentas e armas
|
||||
Item reference of all wieldable tools and weapons=Referência de item de todas as ferramentas e armas que podem ser usadas
|
||||
Item reference of blocks and other things which are capable of occupying space=Referência de item de blocos e outras coisas que são capazes de ocupar espaço
|
||||
Item reference of items which are neither blocks, tools or weapons (esp. crafting items)=Referência de itens que não são blocos, ferramentas ou armas (especialmente itens de criação)
|
||||
Liquids can flow into this block and destroy it.=Líquidos podem fluir por esse bloco destruindo-o.
|
||||
Maximum stack size: @1=Tamanho máximo de empilhamento: @1
|
||||
Mining level: @1=Nível de mineração: @1
|
||||
Mining ratings:=Classificações de mineração:
|
||||
• @1, rating @2: @3 s - @4 s=
|
||||
• @1, rating @2: @3 s=
|
||||
Mining times:=Tempos de mineração:
|
||||
Mining this block is completely silent.=Minerar esse bloco é completamente silencioso.
|
||||
Durability: @1 uses=
|
||||
Durability: @1=
|
||||
Miscellaneous items=Itens variados
|
||||
No=Não
|
||||
Pointable: No=Apontável: Não
|
||||
Pointable: Only by special items=Apontável: Apenas por itens especiais
|
||||
Pointable: Yes=Apontável: Sim
|
||||
Punches with this block don't work as usual; melee combat and mining are either not possible or work differently.=Socos com esse bloco não funcionam de forma comum; Combate corpo a corpo e mineração não são possíveis ou funcionam de forma diferente.
|
||||
Punches with this item don't work as usual; melee combat and mining are either not possible or work differently.=Socos com esse item não funcionam de forma comum; Combate corpo a corpo e mineração não são possíveis ou funcionam de forma diferente.
|
||||
Punches with this tool don't work as usual; melee combat and mining are either not possible or work differently.=Socos com essa ferramenta não funcionam de forma comum; Combate corpo a corpo e mineração não são possíveis ou funcionam de forma diferente.
|
||||
Range: @1=Alcance: @1
|
||||
# Range: <Hand> (<Range>)
|
||||
Range: @1 (@2)=Alcance: @1 (@2)
|
||||
Range: 4=Range: 4
|
||||
Item reference of items which are neither blocks, tools or weapons (esp. crafting items)=Referência de itens que não são blocos, ferramentas ou armas (especialmente itens de criação)
|
||||
A transparent block, basically empty space. It is usually left behind after digging something.=Um bloco transparente, basicamente um vazio. Isso geralmente fica no lugar de um bloco removido.
|
||||
Whenever you are not wielding any item, you use the hand which acts as a tool with its own capabilities. When you are wielding an item which is not a mining tool or a weapon it will behave as if it would be the hand.=Sempre que você não estiver empunhando nenhum item, você usa a mão que atua como uma ferramentacom caracteristicas próprias. Quando você está empunhando um item que não é uma ferramenta de mineração ou uma arma, ele se comportará como se fosse a mão.
|
||||
|
||||
|
||||
##### not used anymore #####
|
||||
|
||||
# Item count times item name
|
||||
%@1×@2=%@1×@2
|
||||
Mining level: @1=Nível de mineração: @1
|
||||
# Rating used for digging times
|
||||
Rating @1=Classificação @1
|
||||
# @1 is minimal rating, @2 is maximum rating
|
||||
Rating @1-@2=Classificação @1-@2
|
||||
The fall damage on this block is increased by @1%.=O dano por queda nesse bloco é aumentado em @1%.
|
||||
The fall damage on this block is reduced by @1%.=O dano por queda nesse bloco é reduzido em @1%.
|
||||
This block allows light to propagate with a small loss of brightness, and sunlight can even go through losslessly.=Esse bloco permite que a luz se propague com uma pequena perda de brilho, e a luz solar pode até passar sem perdas.
|
||||
This block allows light to propagate with a small loss of brightness.=Esse bloco permite que a luz se propague com uma pequena perda de brilho.
|
||||
This block allows sunlight to propagate without loss in brightness.=Esse bloco permite que a luz solar se propague sem perda de brilho.
|
||||
This block belongs to the @1 group.=Esse bloco pertence ao grupo @1.
|
||||
This block belongs to these groups: @1.=Esse bloco pertence a estes grupos: @1.
|
||||
This block can be climbed.=Esse bloco pode ser escalado.
|
||||
This block can be destroyed by any mining tool immediately.=Esse bloco pode ser destruído de forma imediata por qualquer ferramenta de mineração.
|
||||
This block can be destroyed by any mining tool in half a second.=Esse bloco pode ser destruído em meio segundo por qualquer ferramenta de mineração.
|
||||
This block can be mined by any mining tool immediately.=Esse bloco pode ser extraído de forma imediata por qualquer ferramenta de mineração.
|
||||
This block can be mined by any mining tool in half a second.=Esse bloco pode ser extraído em meio segundo por qualquer ferramenta de mineração.
|
||||
This block can be mined by mining tools which match any of the following mining ratings and its toughness level.=Esse bloco pode ser extraído por ferramentas de mineração que correspondem a qualquer uma das seguintes classificações de mineração e seu nível de resistência.
|
||||
This block can not be destroyed by ordinary mining tools.=Esse bloco não pode ser destruído por ferramentas de mineração comuns.
|
||||
This block can not be mined by ordinary mining tools.=Esse bloco não pode ser extraído por ferramentas de mineração comuns.
|
||||
This block can serve as a smelting fuel with a burning time of @1.=Esse bloco pode servir como combustível de fundição com um tempo de queima de @1.
|
||||
This block causes a damage of @1 hit point per second.=Esse bloco causa um dano de @1 ponto de impacto por segundo.
|
||||
This block causes a damage of @1 hit points per second.=Esse bloco causa um dano de @1 pontos de impacto por segundo.
|
||||
This block connects to blocks of the @1 group.=Esse bloco se conecta a blocos do grupo @1.
|
||||
This block connects to blocks of the following groups: @1.=Esse bloco se conecta a dos seguintes grupos: @1.
|
||||
This block connects to these blocks: @1.=Esse bloco se conecta aos seguintes blocos: @1.
|
||||
This block connects to this block: @1.=Esse bloco se conecta a esse bloco: @1.
|
||||
This block decreases your breath and causes a drowning damage of @1 hit point every 2 seconds.=Esse bloco diminui a sua respiração e causa um dano por afogamento de @1 ponto de vida a cada 2 segundos.
|
||||
This block decreases your breath and causes a drowning damage of @1 hit points every 2 seconds.=Esse bloco diminui a sua respiração e causa um dano por afogamento de @1 pontos de vida a cada 2 segundos.
|
||||
This block is a light source with a light level of @1.=Esse bloco é uma fonte de luz com um nível de luz de @1.
|
||||
This block glows faintly with a light level of @1.=Esse bloco tem um brilho fraco com um nível de luz de @1.
|
||||
This block is a building block for creating various buildings.=Esse bloco é um bloco de construção para criar vários edifícios.
|
||||
This block is a liquid with these properties:=Esse bloco é um líquido com as seguintes propriedades:
|
||||
This block is affected by gravity and can fall.=Esse bloco é afetado pela gravidade e pode cair.
|
||||
This block is completely silent when mined or built.=Esse bloco é completamente silencioso quando extraído ou construído.
|
||||
This block is completely silent when walked on, mined or built.=Esse bloco é completamente silencioso quando pisado, extraído ou construído.
|
||||
This block is destroyed when a falling block ends up inside it.=Esse bloco é destruído quando um bloco em queda acaba dentro dele.
|
||||
This block negates all fall damage.=Esse bloco nega todos os danos por queda.
|
||||
This block points to liquids.=Esse bloco pode ser apontado para líquidos.
|
||||
This block will drop as an item when a falling block ends up inside it.=Esse bloco vai cair como um item quando um bloco caindo acaba dentro dele.
|
||||
This block will drop as an item when it is not attached to a surrounding block.=Esse bloco irá cair como um item quando não estiver anexado a um bloco adjacente.
|
||||
This block will drop as an item when no collidable block is below it.=Esse bloco irá cair como um item quando nenhum bloco colidível estiver abaixo dele.
|
||||
This block will drop the following items when mined: %s.=Esse bloco soltará os seguintes itens quando minerados: %s.
|
||||
This block will drop the following when mined: @1×@2.=Esse bloco irá deixar cair o seguinte quando extraído: @1×@2.
|
||||
This block will drop the following when mined: @1.=Esse bloco irá deixar cair o seguinte quando extraído: @1.
|
||||
This block will drop the following when mined: %s.=Esse bloco irá deixar cair o seguinte quando extraído: %s.
|
||||
This block will make you bounce off with an elasticity of @1%.=Esse bloco fará você saltar com uma elasticidade de @1%.
|
||||
This block will randomly drop one of the following when mined: %s.=Esse bloco irá deixar cair aleatoriamente um dos seguintes quando extraído: %s.
|
||||
This block will randomly drop up to %d drops of the following possible drops when mined: %s.=Esse bloco irá cair aleatoriamente %d vezes das seguintes possíveis formas quando extraído: %s.
|
||||
This block won't drop anything when mined.=Esse bloco não vai deixar cair nada quando extraído.
|
||||
This is a decorative block.=Esse é um bloco decorativo.
|
||||
This is a melee weapon which deals damage by punching.=Essa é uma arma corpo-a-corpo que causa dano ao socar.
|
||||
Maximum damage per hit:=Dano máximo por acerto:
|
||||
This item belongs to the @1 group.=Esse item pertence ao grupo @1.
|
||||
This item belongs to these groups: @1.=Esse item pertence aos seguintes grupos: @1.
|
||||
This item can serve as a smelting fuel with a burning time of @1.=Esse item pode servir como combustível de fundição com um tempo de queima de @1.
|
||||
This item is primarily used for crafting other items.=Esse item é usado principalmente para criar outros itens.
|
||||
This item points to liquids.=Esse item pode ser apontado para líquidos.
|
||||
This tool belongs to the @1 group.=Essa ferramenta pertence ao grupo @1.
|
||||
This tool belongs to these groups: @1.=Essa ferramenta pertence aos seguintes grupos: @1.
|
||||
This tool can serve as a smelting fuel with a burning time of @1.=Essa ferramenta pode servir como combustível de fundição com um tempo de queima de @1.
|
||||
This tool is capable of mining.=Essa ferramenta é capaz de minerar.
|
||||
Maximum toughness levels:=Níveis máximos de dureza:
|
||||
This tool points to liquids.=Essa ferramenta pode ser apontada para líquidos.
|
||||
Tools and weapons=Ferramentas e armas
|
||||
Unknown Node=Bloco Desconhecido
|
||||
Usage help: @1=Como usar: @1
|
||||
Walking on this block is completely silent.=
|
||||
Whenever you are not wielding any item, you use the hand which acts as a tool with its own capabilities. When you are wielding an item which is not a mining tool or a weapon it will behave as if it would be the hand.=Sempre que você não estiver empunhando nenhum item, você usa a mão que atua como uma ferramentacom caracteristicas próprias. Quando você está empunhando um item que não é uma ferramenta de mineração ou uma arma, ele se comportará como se fosse a mão.
|
||||
Yes=Sim
|
||||
You can not jump while standing on this block.= Você não pode pular enquanto estiver neste bloco.
|
||||
any level=qualquer nível
|
||||
level 0=nível 0
|
||||
level 0-@1=nivel 0-@1
|
||||
unknown=desconhecido
|
||||
Unknown item (@1)=
|
||||
• @1: @2=
|
||||
• @1: @2 HP=
|
||||
• @1: @2, @3=
|
||||
• Flowing range: @1=
|
||||
• No flowing=
|
||||
• Not renewable=
|
||||
• Renewable=
|
||||
• Viscosity: @1=
|
||||
Itemstring: "@1"=
|
||||
Durability: @1 uses=
|
||||
Durability: @1=
|
||||
Mining durability:=
|
||||
• @1, level @2: @3 uses=
|
||||
• @1, level @2: Unlimited=
|
||||
This block's rotation is affected by the way you place it: Place it on the floor or ceiling for a vertical orientation; place it at the side for a horizontal orientation. Sneaking while placing it leads to a perpendicular orientation instead.=
|
||||
|
@ -1,142 +1,158 @@
|
||||
# textdomain:doc_items
|
||||
Item Help=
|
||||
Adds automatically generated help texts for items.=
|
||||
Using it as fuel turns it into: @1.= Usar isso como combustivel o transforma em: @1.
|
||||
This is a decorative block.=Esse é um bloco decorativo.
|
||||
This block is a building block for creating various buildings.=Esse bloco é um bloco de construção para criar vários edifícios.
|
||||
This item is primarily used for crafting other items.=Esse item é usado principalmente para criar outros itens.
|
||||
Hold it in your hand, then leftclick to eat it.=Segure-o na sua mão, depois clique com o botão esquerdo para comer.
|
||||
Hold it in your hand, then leftclick to eat it. But why would you want to do this?=Segure-o na sua mão, depois clique com o botão esquerdo para comer. Mas por que você quer fazer isso?
|
||||
This block's rotation is affected by the way you place it: Place it on the floor or ceiling for a vertical orientation; place it at the side for a horizontal orientation. Sneaking while placing it leads to a perpendicular orientation instead.=
|
||||
Hand=Mão
|
||||
Yes=Sim
|
||||
No=Não
|
||||
# List separator (e.g. “one, two, three”)
|
||||
, =,
|
||||
Unknown item (@1)=
|
||||
unknown=desconhecido
|
||||
1 second=1 segundo
|
||||
@1 seconds=@1 segundos
|
||||
# Item count times item name
|
||||
%@1×@2=%@1×@2
|
||||
# Itemname (25%)
|
||||
@1 (@2%)=@1 (@2%)
|
||||
• @1: @2=
|
||||
• @1, rating @2: @3 s - @4 s=
|
||||
• @1, rating @2: @3 s=
|
||||
• @1, level @2: @3 uses=
|
||||
• @1, level @2: Unlimited=
|
||||
This tool is capable of mining.=Essa ferramenta é capaz de minerar.
|
||||
Maximum toughness levels:=Níveis máximos de dureza:
|
||||
Mining times:=Tempos de mineração:
|
||||
Mining durability:=
|
||||
This is a melee weapon which deals damage by punching.=Essa é uma arma corpo-a-corpo que causa dano ao socar.
|
||||
Maximum damage per hit:=Dano máximo por acerto:
|
||||
• @1: @2 HP=
|
||||
Full punch interval: @1 s=Intervalo completo de golpe: @1 s
|
||||
This block can be mined by any mining tool in half a second.=Esse bloco pode ser extraído em meio segundo por qualquer ferramenta de mineração.
|
||||
This block can be mined by any mining tool immediately.=Esse bloco pode ser extraído de forma imediata por qualquer ferramenta de mineração.
|
||||
This block can not be mined by ordinary mining tools.=Esse bloco não pode ser extraído por ferramentas de mineração comuns.
|
||||
This block can be destroyed by any mining tool in half a second.=Esse bloco pode ser destruído em meio segundo por qualquer ferramenta de mineração.
|
||||
This block can be destroyed by any mining tool immediately.=Esse bloco pode ser destruído de forma imediata por qualquer ferramenta de mineração.
|
||||
This block can not be destroyed by ordinary mining tools.=Esse bloco não pode ser destruído por ferramentas de mineração comuns.
|
||||
This block can be mined by mining tools which match any of the following mining ratings and its toughness level.=Esse bloco pode ser extraído por ferramentas de mineração que correspondem a qualquer uma das seguintes classificações de mineração e seu nível de resistência.
|
||||
Mining ratings:=Classificações de mineração:
|
||||
Toughness level: @1=
|
||||
Range: @1=Alcance: @1
|
||||
Range: 4=Range: 4
|
||||
# Range: <Hand> (<Range>)
|
||||
Range: @1 (@2)=Alcance: @1 (@2)
|
||||
This tool can serve as a smelting fuel with a burning time of @1.=Essa ferramenta pode servir como combustível de fundição com um tempo de queima de @1.
|
||||
This block can serve as a smelting fuel with a burning time of @1.=Esse bloco pode servir como combustível de fundição com um tempo de queima de @1.
|
||||
This item can serve as a smelting fuel with a burning time of @1.=Esse item pode servir como combustível de fundição com um tempo de queima de @1.
|
||||
Using it as fuel turns it into: @1.= Usar isso como combustivel o transforma em: @1.
|
||||
Itemstring: "@1"=
|
||||
Description: @1=Descrição: @1
|
||||
Usage help: @1=Como usar: @1
|
||||
Maximum stack size: @1=Tamanho máximo de empilhamento: @1
|
||||
This block points to liquids.=Esse bloco pode ser apontado para líquidos.
|
||||
This tool points to liquids.=Essa ferramenta pode ser apontada para líquidos.
|
||||
This item points to liquids.=Esse item pode ser apontado para líquidos.
|
||||
Punches with this block don't work as usual; melee combat and mining are either not possible or work differently.=Socos com esse bloco não funcionam de forma comum; Combate corpo a corpo e mineração não são possíveis ou funcionam de forma diferente.
|
||||
Punches with this tool don't work as usual; melee combat and mining are either not possible or work differently.=Socos com essa ferramenta não funcionam de forma comum; Combate corpo a corpo e mineração não são possíveis ou funcionam de forma diferente.
|
||||
Punches with this item don't work as usual; melee combat and mining are either not possible or work differently.=Socos com esse item não funcionam de forma comum; Combate corpo a corpo e mineração não são possíveis ou funcionam de forma diferente.
|
||||
This block belongs to the @1 group.=Esse bloco pertence ao grupo @1.
|
||||
This tool belongs to the @1 group.=Essa ferramenta pertence ao grupo @1.
|
||||
This item belongs to the @1 group.=Esse item pertence ao grupo @1.
|
||||
This block belongs to these groups: @1.=Esse bloco pertence a estes grupos: @1.
|
||||
This tool belongs to these groups: @1.=Essa ferramenta pertence aos seguintes grupos: @1.
|
||||
This item belongs to these groups: @1.=Esse item pertence aos seguintes grupos: @1.
|
||||
Blocks=Blocos
|
||||
Item reference of blocks and other things which are capable of occupying space=Referência de item de blocos e outras coisas que são capazes de ocupar espaço
|
||||
Collidable: @1=Coledível: @1
|
||||
Pointable: Yes=Apontável: Sim
|
||||
Pointable: Only by special items=Apontável: Apenas por itens especiais
|
||||
Pointable: No=Apontável: Não
|
||||
This block is a liquid with these properties:=Esse bloco é um líquido com as seguintes propriedades:
|
||||
• Renewable=
|
||||
• Not renewable=
|
||||
• No flowing=
|
||||
• Flowing range: @1=
|
||||
• Viscosity: @1=
|
||||
This block causes a damage of @1 hit points per second.=Esse bloco causa um dano de @1 pontos de impacto por segundo.
|
||||
This block causes a damage of @1 hit point per second.=Esse bloco causa um dano de @1 ponto de impacto por segundo.
|
||||
This block heals @1 hit point per second.=
|
||||
This block heals @1 hit points per second.=
|
||||
This block decreases your breath and causes a drowning damage of @1 hit points every 2 seconds.=Esse bloco diminui a sua respiração e causa um dano por afogamento de @1 pontos de vida a cada 2 segundos.
|
||||
This block decreases your breath and causes a drowning damage of @1 hit point every 2 seconds.=Esse bloco diminui a sua respiração e causa um dano por afogamento de @1 ponto de vida a cada 2 segundos.
|
||||
The fall damage on this block is increased by @1%.=O dano por queda nesse bloco é aumentado em @1%.
|
||||
This block negates all fall damage.=Esse bloco nega todos os danos por queda.
|
||||
The fall damage on this block is reduced by @1%.=O dano por queda nesse bloco é reduzido em @1%.
|
||||
You can not jump while standing on this block.= Você não pode pular enquanto estiver neste bloco.
|
||||
You can not jump while inside this block.=
|
||||
This block slows down your movement.=
|
||||
This block can be climbed, but only horizontally.=
|
||||
This block can be climbed, but only downwards.=
|
||||
This block can be climbed, but only upwards.=
|
||||
This block can be climbed.=Esse bloco pode ser escalado.
|
||||
This block will make you bounce off with an elasticity of @1%.=Esse bloco fará você saltar com uma elasticidade de @1%.
|
||||
This block is slippery.=
|
||||
This block is completely silent when walked on, mined or built.=Esse bloco é completamente silencioso quando pisado, extraído ou construído.
|
||||
This block is completely silent when mined or built.=Esse bloco é completamente silencioso quando extraído ou construído.
|
||||
Walking on this block is completely silent.=
|
||||
Mining this block is completely silent.=Minerar esse bloco é completamente silencioso.
|
||||
Building this block is completely silent.=Construir esse bloco é completamente silencioso.
|
||||
This block is affected by gravity and can fall.=Esse bloco é afetado pela gravidade e pode cair.
|
||||
Building another block at this block will place it inside and replace it.=Construir outro bloco nesse bloco vai subistitui-lo.
|
||||
Falling blocks can go through this block; they destroy it when doing so.=Blocos caindo podem atravessar esse bloco destruindo-o.
|
||||
This block will drop as an item when a falling block ends up inside it.=Esse bloco vai cair como um item quando um bloco caindo acaba dentro dele.
|
||||
This block is destroyed when a falling block ends up inside it.=Esse bloco é destruído quando um bloco em queda acaba dentro dele.
|
||||
This block will drop as an item when it is not attached to a surrounding block.=Esse bloco irá cair como um item quando não estiver anexado a um bloco adjacente.
|
||||
This block will drop as an item when no collidable block is below it.=Esse bloco irá cair como um item quando nenhum bloco colidível estiver abaixo dele.
|
||||
Liquids can flow into this block and destroy it.=Líquidos podem fluir por esse bloco destruindo-o.
|
||||
This block is a light source with a light level of @1.=Esse bloco é uma fonte de luz com um nível de luz de @1.
|
||||
This block glows faintly with a light level of @1.=Esse bloco tem um brilho fraco com um nível de luz de @1.
|
||||
This block allows light to propagate with a small loss of brightness, and sunlight can even go through losslessly.=Esse bloco permite que a luz se propague com uma pequena perda de brilho, e a luz solar pode até passar sem perdas.
|
||||
This block allows light to propagate with a small loss of brightness.=Esse bloco permite que a luz se propague com uma pequena perda de brilho.
|
||||
This block allows sunlight to propagate without loss in brightness.=Esse bloco permite que a luz solar se propague sem perda de brilho.
|
||||
Unknown Node=Bloco Desconhecido
|
||||
This block connects to this block: @1.=Esse bloco se conecta a esse bloco: @1.
|
||||
This block connects to these blocks: @1.=Esse bloco se conecta aos seguintes blocos: @1.
|
||||
This block connects to blocks of the @1 group.=Esse bloco se conecta a blocos do grupo @1.
|
||||
This block connects to blocks of the following groups: @1.=Esse bloco se conecta a dos seguintes grupos: @1.
|
||||
This block won't drop anything when mined.=Esse bloco não vai deixar cair nada quando extraído.
|
||||
This block will drop the following when mined: @1×@2.=Esse bloco irá deixar cair o seguinte quando extraído: @1×@2.
|
||||
This block will drop the following when mined: @1.=Esse bloco irá deixar cair o seguinte quando extraído: @1.
|
||||
This block will drop the following items when mined: @1.=
|
||||
This block will randomly drop one of the following when mined: @1.=
|
||||
This block will randomly drop up to @1 drops of the following possible drops when mined: @2.=
|
||||
# Final list separator (e.g. “One, two and three”)
|
||||
and = e
|
||||
@1×@2=
|
||||
# Itemname (<0.5%)
|
||||
@1 (<0.5%)=@1 (<0.5%)
|
||||
# Itemname (ca. 25%)
|
||||
@1 (ca. @2%)=
|
||||
# List separator (e.g. “one, two, three”)
|
||||
, =,
|
||||
# Final list separator (e.g. “One, two and three”)
|
||||
and = e
|
||||
1 second=1 segundo
|
||||
A transparent block, basically empty space. It is usually left behind after digging something.=Um bloco transparente, basicamente um vazio. Isso geralmente fica no lugar de um bloco removido.
|
||||
Blocks=Blocos
|
||||
Building another block at this block will place it inside and replace it.=Construir outro bloco nesse bloco vai subistitui-lo.
|
||||
Building this block is completely silent.=Construir esse bloco é completamente silencioso.
|
||||
Collidable: @1=Coledível: @1
|
||||
Description: @1=Descrição: @1
|
||||
Falling blocks can go through this block; they destroy it when doing so.=Blocos caindo podem atravessar esse bloco destruindo-o.
|
||||
Full punch interval: @1 s=Intervalo completo de golpe: @1 s
|
||||
Hand=Mão
|
||||
Hold it in your hand, then leftclick to eat it.=Segure-o na sua mão, depois clique com o botão esquerdo para comer.
|
||||
Hold it in your hand, then leftclick to eat it. But why would you want to do this?=Segure-o na sua mão, depois clique com o botão esquerdo para comer. Mas por que você quer fazer isso?
|
||||
# Itemname (25%)
|
||||
@1 (@2%)=@1 (@2%)
|
||||
Tools and weapons=Ferramentas e armas
|
||||
Item reference of all wieldable tools and weapons=Referência de item de todas as ferramentas e armas que podem ser usadas
|
||||
Item reference of blocks and other things which are capable of occupying space=Referência de item de blocos e outras coisas que são capazes de ocupar espaço
|
||||
Item reference of items which are neither blocks, tools or weapons (esp. crafting items)=Referência de itens que não são blocos, ferramentas ou armas (especialmente itens de criação)
|
||||
Liquids can flow into this block and destroy it.=Líquidos podem fluir por esse bloco destruindo-o.
|
||||
Maximum stack size: @1=Tamanho máximo de empilhamento: @1
|
||||
Mining level: @1=Nível de mineração: @1
|
||||
Mining ratings:=Classificações de mineração:
|
||||
• @1, rating @2: @3 s - @4 s=
|
||||
• @1, rating @2: @3 s=
|
||||
Mining times:=Tempos de mineração:
|
||||
Mining this block is completely silent.=Minerar esse bloco é completamente silencioso.
|
||||
Durability: @1 uses=
|
||||
Durability: @1=
|
||||
Miscellaneous items=Itens variados
|
||||
No=Não
|
||||
Pointable: No=Apontável: Não
|
||||
Pointable: Only by special items=Apontável: Apenas por itens especiais
|
||||
Pointable: Yes=Apontável: Sim
|
||||
Punches with this block don't work as usual; melee combat and mining are either not possible or work differently.=Socos com esse bloco não funcionam de forma comum; Combate corpo a corpo e mineração não são possíveis ou funcionam de forma diferente.
|
||||
Punches with this item don't work as usual; melee combat and mining are either not possible or work differently.=Socos com esse item não funcionam de forma comum; Combate corpo a corpo e mineração não são possíveis ou funcionam de forma diferente.
|
||||
Punches with this tool don't work as usual; melee combat and mining are either not possible or work differently.=Socos com essa ferramenta não funcionam de forma comum; Combate corpo a corpo e mineração não são possíveis ou funcionam de forma diferente.
|
||||
Range: @1=Alcance: @1
|
||||
# Range: <Hand> (<Range>)
|
||||
Range: @1 (@2)=Alcance: @1 (@2)
|
||||
Range: 4=Range: 4
|
||||
Item reference of items which are neither blocks, tools or weapons (esp. crafting items)=Referência de itens que não são blocos, ferramentas ou armas (especialmente itens de criação)
|
||||
A transparent block, basically empty space. It is usually left behind after digging something.=Um bloco transparente, basicamente um vazio. Isso geralmente fica no lugar de um bloco removido.
|
||||
Whenever you are not wielding any item, you use the hand which acts as a tool with its own capabilities. When you are wielding an item which is not a mining tool or a weapon it will behave as if it would be the hand.=Sempre que você não estiver empunhando nenhum item, você usa a mão que atua como uma ferramentacom caracteristicas próprias. Quando você está empunhando um item que não é uma ferramenta de mineração ou uma arma, ele se comportará como se fosse a mão.
|
||||
|
||||
|
||||
##### not used anymore #####
|
||||
|
||||
# Item count times item name
|
||||
%@1×@2=%@1×@2
|
||||
Mining level: @1=Nível de mineração: @1
|
||||
# Rating used for digging times
|
||||
Rating @1=Classificação @1
|
||||
# @1 is minimal rating, @2 is maximum rating
|
||||
Rating @1-@2=Classificação @1-@2
|
||||
The fall damage on this block is increased by @1%.=O dano por queda nesse bloco é aumentado em @1%.
|
||||
The fall damage on this block is reduced by @1%.=O dano por queda nesse bloco é reduzido em @1%.
|
||||
This block allows light to propagate with a small loss of brightness, and sunlight can even go through losslessly.=Esse bloco permite que a luz se propague com uma pequena perda de brilho, e a luz solar pode até passar sem perdas.
|
||||
This block allows light to propagate with a small loss of brightness.=Esse bloco permite que a luz se propague com uma pequena perda de brilho.
|
||||
This block allows sunlight to propagate without loss in brightness.=Esse bloco permite que a luz solar se propague sem perda de brilho.
|
||||
This block belongs to the @1 group.=Esse bloco pertence ao grupo @1.
|
||||
This block belongs to these groups: @1.=Esse bloco pertence a estes grupos: @1.
|
||||
This block can be climbed.=Esse bloco pode ser escalado.
|
||||
This block can be destroyed by any mining tool immediately.=Esse bloco pode ser destruído de forma imediata por qualquer ferramenta de mineração.
|
||||
This block can be destroyed by any mining tool in half a second.=Esse bloco pode ser destruído em meio segundo por qualquer ferramenta de mineração.
|
||||
This block can be mined by any mining tool immediately.=Esse bloco pode ser extraído de forma imediata por qualquer ferramenta de mineração.
|
||||
This block can be mined by any mining tool in half a second.=Esse bloco pode ser extraído em meio segundo por qualquer ferramenta de mineração.
|
||||
This block can be mined by mining tools which match any of the following mining ratings and its toughness level.=Esse bloco pode ser extraído por ferramentas de mineração que correspondem a qualquer uma das seguintes classificações de mineração e seu nível de resistência.
|
||||
This block can not be destroyed by ordinary mining tools.=Esse bloco não pode ser destruído por ferramentas de mineração comuns.
|
||||
This block can not be mined by ordinary mining tools.=Esse bloco não pode ser extraído por ferramentas de mineração comuns.
|
||||
This block can serve as a smelting fuel with a burning time of @1.=Esse bloco pode servir como combustível de fundição com um tempo de queima de @1.
|
||||
This block causes a damage of @1 hit point per second.=Esse bloco causa um dano de @1 ponto de impacto por segundo.
|
||||
This block causes a damage of @1 hit points per second.=Esse bloco causa um dano de @1 pontos de impacto por segundo.
|
||||
This block connects to blocks of the @1 group.=Esse bloco se conecta a blocos do grupo @1.
|
||||
This block connects to blocks of the following groups: @1.=Esse bloco se conecta a dos seguintes grupos: @1.
|
||||
This block connects to these blocks: @1.=Esse bloco se conecta aos seguintes blocos: @1.
|
||||
This block connects to this block: @1.=Esse bloco se conecta a esse bloco: @1.
|
||||
This block decreases your breath and causes a drowning damage of @1 hit point every 2 seconds.=Esse bloco diminui a sua respiração e causa um dano por afogamento de @1 ponto de vida a cada 2 segundos.
|
||||
This block decreases your breath and causes a drowning damage of @1 hit points every 2 seconds.=Esse bloco diminui a sua respiração e causa um dano por afogamento de @1 pontos de vida a cada 2 segundos.
|
||||
This block is a light source with a light level of @1.=Esse bloco é uma fonte de luz com um nível de luz de @1.
|
||||
This block glows faintly with a light level of @1.=Esse bloco tem um brilho fraco com um nível de luz de @1.
|
||||
This block is a building block for creating various buildings.=Esse bloco é um bloco de construção para criar vários edifícios.
|
||||
This block is a liquid with these properties:=Esse bloco é um líquido com as seguintes propriedades:
|
||||
This block is affected by gravity and can fall.=Esse bloco é afetado pela gravidade e pode cair.
|
||||
This block is completely silent when mined or built.=Esse bloco é completamente silencioso quando extraído ou construído.
|
||||
This block is completely silent when walked on, mined or built.=Esse bloco é completamente silencioso quando pisado, extraído ou construído.
|
||||
This block is destroyed when a falling block ends up inside it.=Esse bloco é destruído quando um bloco em queda acaba dentro dele.
|
||||
This block negates all fall damage.=Esse bloco nega todos os danos por queda.
|
||||
This block points to liquids.=Esse bloco pode ser apontado para líquidos.
|
||||
This block will drop as an item when a falling block ends up inside it.=Esse bloco vai cair como um item quando um bloco caindo acaba dentro dele.
|
||||
This block will drop as an item when it is not attached to a surrounding block.=Esse bloco irá cair como um item quando não estiver anexado a um bloco adjacente.
|
||||
This block will drop as an item when no collidable block is below it.=Esse bloco irá cair como um item quando nenhum bloco colidível estiver abaixo dele.
|
||||
This block will drop the following items when mined: %s.=Esse bloco soltará os seguintes itens quando minerados: %s.
|
||||
This block will drop the following when mined: @1×@2.=Esse bloco irá deixar cair o seguinte quando extraído: @1×@2.
|
||||
This block will drop the following when mined: @1.=Esse bloco irá deixar cair o seguinte quando extraído: @1.
|
||||
This block will drop the following when mined: %s.=Esse bloco irá deixar cair o seguinte quando extraído: %s.
|
||||
This block will make you bounce off with an elasticity of @1%.=Esse bloco fará você saltar com uma elasticidade de @1%.
|
||||
This block will randomly drop one of the following when mined: %s.=Esse bloco irá deixar cair aleatoriamente um dos seguintes quando extraído: %s.
|
||||
This block will randomly drop up to %d drops of the following possible drops when mined: %s.=Esse bloco irá cair aleatoriamente %d vezes das seguintes possíveis formas quando extraído: %s.
|
||||
This block won't drop anything when mined.=Esse bloco não vai deixar cair nada quando extraído.
|
||||
This is a decorative block.=Esse é um bloco decorativo.
|
||||
This is a melee weapon which deals damage by punching.=Essa é uma arma corpo-a-corpo que causa dano ao socar.
|
||||
Maximum damage per hit:=Dano máximo por acerto:
|
||||
This item belongs to the @1 group.=Esse item pertence ao grupo @1.
|
||||
This item belongs to these groups: @1.=Esse item pertence aos seguintes grupos: @1.
|
||||
This item can serve as a smelting fuel with a burning time of @1.=Esse item pode servir como combustível de fundição com um tempo de queima de @1.
|
||||
This item is primarily used for crafting other items.=Esse item é usado principalmente para criar outros itens.
|
||||
This item points to liquids.=Esse item pode ser apontado para líquidos.
|
||||
This tool belongs to the @1 group.=Essa ferramenta pertence ao grupo @1.
|
||||
This tool belongs to these groups: @1.=Essa ferramenta pertence aos seguintes grupos: @1.
|
||||
This tool can serve as a smelting fuel with a burning time of @1.=Essa ferramenta pode servir como combustível de fundição com um tempo de queima de @1.
|
||||
This tool is capable of mining.=Essa ferramenta é capaz de minerar.
|
||||
Maximum toughness levels:=Níveis máximos de dureza:
|
||||
This tool points to liquids.=Essa ferramenta pode ser apontada para líquidos.
|
||||
Tools and weapons=Ferramentas e armas
|
||||
Unknown Node=Bloco Desconhecido
|
||||
Usage help: @1=Como usar: @1
|
||||
Walking on this block is completely silent.=
|
||||
Whenever you are not wielding any item, you use the hand which acts as a tool with its own capabilities. When you are wielding an item which is not a mining tool or a weapon it will behave as if it would be the hand.=Sempre que você não estiver empunhando nenhum item, você usa a mão que atua como uma ferramentacom caracteristicas próprias. Quando você está empunhando um item que não é uma ferramenta de mineração ou uma arma, ele se comportará como se fosse a mão.
|
||||
Yes=Sim
|
||||
You can not jump while standing on this block.= Você não pode pular enquanto estiver neste bloco.
|
||||
any level=qualquer nível
|
||||
level 0=nível 0
|
||||
level 0-@1=nivel 0-@1
|
||||
unknown=desconhecido
|
||||
Unknown item (@1)=
|
||||
• @1: @2=
|
||||
• @1: @2 HP=
|
||||
• @1: @2, @3=
|
||||
• Flowing range: @1=
|
||||
• No flowing=
|
||||
• Not renewable=
|
||||
• Renewable=
|
||||
• Viscosity: @1=
|
||||
Itemstring: "@1"=
|
||||
Durability: @1 uses=
|
||||
Durability: @1=
|
||||
Mining durability:=
|
||||
• @1, level @2: @3 uses=
|
||||
• @1, level @2: Unlimited=
|
||||
This block's rotation is affected by the way you place it: Place it on the floor or ceiling for a vertical orientation; place it at the side for a horizontal orientation. Sneaking while placing it leads to a perpendicular orientation instead.=
|
||||
|
@ -2,143 +2,156 @@
|
||||
# Autor: ksandr from minetestserver.ru
|
||||
Item Help=
|
||||
Adds automatically generated help texts for items.=
|
||||
Using it as fuel turns it into: @1.=Использование его в качестве топлива превращает его в: @1.
|
||||
This is a decorative block.=Это декоративный блок.
|
||||
This block is a building block for creating various buildings.=Этот блок является строительным блоком для создания различных зданий.
|
||||
This item is primarily used for crafting other items.=Этот предмет в основном используется для создания других предметов.
|
||||
Hold it in your hand, then leftclick to eat it.=Подержите его в руке, затем щелкните левой кнопкой мыши, чтобы съесть.
|
||||
Hold it in your hand, then leftclick to eat it. But why would you want to do this?=Подержите его в руке, затем щелкните левой кнопкой мыши, чтобы съесть. Но зачем вам это нужно?
|
||||
This block's rotation is affected by the way you place it: Place it on the floor or ceiling for a vertical orientation; place it at the side for a horizontal orientation. Sneaking while placing it leads to a perpendicular orientation instead.=На вращение этого блока влияет способ его размещения: расположите его на полу или потолке для вертикальной ориентации; расположите сбоку для горизонтальной ориентации. Перемещение при размещении приводит к перпендикулярной ориентации.
|
||||
Hand=Рукой
|
||||
Yes=Да
|
||||
No=Нет
|
||||
# List separator (e.g. “one, two, three”)
|
||||
, =,
|
||||
Unknown item (@1)=Неизвестный предмет (@1)
|
||||
unknown=неизвестный
|
||||
1 second=1 секунду
|
||||
@1 seconds=@1 секунд
|
||||
# Item count times item name
|
||||
%@1×@2=%@1×@2
|
||||
# Itemname (25%)
|
||||
@1 (@2%)=@1 (@2%)
|
||||
• @1: @2=• @1: @2
|
||||
• @1, rating @2: @3 s - @4 s=• @1, шанс @2: @3 с - @4 с
|
||||
• @1, rating @2: @3 s=• @1, шанс @2: @3 с
|
||||
• @1, level @2: @3 uses=• @1, уровень @2: @3 использований
|
||||
• @1, level @2: Unlimited=• @1, уровень @2: Неограниченно
|
||||
This tool is capable of mining.=Этот инструмент предназначен для выкапывания/добычи других блоков.
|
||||
Maximum toughness levels:=Максимальный уровни прочности:
|
||||
Mining times:=Время добычи полезных ископаемых:
|
||||
Mining durability:=Долговечность при добычи полезных ископаемых:
|
||||
This is a melee weapon which deals damage by punching.=Это оружие ближнего боя, которое наносит урон при ударе.
|
||||
Maximum damage per hit:=Максимальный урон за попадание:
|
||||
• @1: @2 HP=• @1: @2 ОЗ
|
||||
Full punch interval: @1 s=Полный интервал пробивки: @1 с
|
||||
This block can be mined by any mining tool in half a second.=Этот блок может быть выкопан любым инструментом для добычи полезных ископаемых за полсекунды.
|
||||
This block can be mined by any mining tool immediately.=Этот блок может быть немедленно выкопан любым инструментом для добычи полезных ископаемых.
|
||||
This block can not be mined by ordinary mining tools.=Этот блок не может быть выкопан обычными инструментами для добычи полезных ископаемых.
|
||||
This block can be destroyed by any mining tool in half a second.=Этот блок может быть уничтожен любым инструментом для добычи полезных ископаемых за полсекунды.
|
||||
This block can be destroyed by any mining tool immediately.=Этот блок может быть немедленно уничтожен любым инструментом для добычи полезных ископаемых.
|
||||
This block can not be destroyed by ordinary mining tools.=Этот блок не может быть уничтожен обычными инструментами для добычи полезных ископаемых.
|
||||
This block can be mined by mining tools which match any of the following mining ratings and its toughness level.=Этот блок может быть добыт с помощью инструментов для добычи полезных ископаемых, которые соответствуют любому из следующих рейтингов добычи полезных ископаемых и уровню его твёрдости.
|
||||
Mining ratings:=Рейтинги добычи полезных ископаемых:
|
||||
Toughness level: @1=Уровень прочности: @1
|
||||
Range: @1=Можно дотянуться: @1
|
||||
Range: 4=Можно дотянуться: 4
|
||||
# Range: <Hand> (<Range>)
|
||||
Range: @1 (@2)=Можно дотянуться: @1 за (@2) блоков
|
||||
This tool can serve as a smelting fuel with a burning time of @1.=Этот инструмент может служить топливом для плавки со временем горения @1.
|
||||
This block can serve as a smelting fuel with a burning time of @1.=Этот блок может служить топливом для плавки со временем горения @1.
|
||||
This item can serve as a smelting fuel with a burning time of @1.=Этот элемент может служить топливом для плавки со временем горения @1.
|
||||
Using it as fuel turns it into: @1.=
|
||||
Itemstring: "@1"=Название предмета: "@1"
|
||||
Description: @1=Описание: @1
|
||||
Usage help: @1=Справка по использованию: @1
|
||||
Maximum stack size: @1=Максимальный размер стака: @1
|
||||
This block points to liquids.=Этот блок является жидкостью.
|
||||
This tool points to liquids.=Это инструмент для хранения жидкости.
|
||||
This item points to liquids.=Этот предмет является жидкостью.
|
||||
Punches with this block don't work as usual; melee combat and mining are either not possible or work differently.=Удары этим блоком работают не так, как обычно; атака и добыча полезных ископаемых либо невозможны, либо работают по-другому.
|
||||
Punches with this tool don't work as usual; melee combat and mining are either not possible or work differently.=Удары этим инструментом работают не так, как обычно; атака и добыча полезных ископаемых либо невозможны, либо работают по-другому.
|
||||
Punches with this item don't work as usual; melee combat and mining are either not possible or work differently.=Удары этим предметом работают не так, как обычно; атака и добыча полезных ископаемых либо невозможны, либо работают по-другому.
|
||||
This block belongs to the @1 group.=Этот блок принадлежит к группе @1.
|
||||
This tool belongs to the @1 group.=Этот инструмент относится к группе @1.
|
||||
This item belongs to the @1 group.=Этот элемент принадлежит к группе @1.
|
||||
This block belongs to these groups: @1.=Этот блок принадлежит к следующим группам: @1.
|
||||
This tool belongs to these groups: @1.=Этот инструмент относится к следующим группам: @1.
|
||||
This item belongs to these groups: @1.=Этот элемент принадлежит к следующим группам: @1.
|
||||
Blocks=Блоки
|
||||
Item reference of blocks and other things which are capable of occupying space=Предметная ссылка на блоки и другие предметы, способные занимать пространство
|
||||
Collidable: @1=Возможность столкновения: @1
|
||||
Pointable: Yes=Поддающийся покраске: Да
|
||||
Pointable: Only by special items=Поддающийся покраске: Только специальным предметом
|
||||
Pointable: No=Поддающийся покраске: Нет
|
||||
This block is a liquid with these properties:=Этот блок представляет собой жидкость со следующими свойствами:
|
||||
• Renewable=• Можно поставить
|
||||
• Not renewable=• Обратно не поставить
|
||||
• No flowing=• Не текучий
|
||||
• Flowing range: @1=• Уровень текучести: @1
|
||||
• Viscosity: @1=• Вязкость: @1
|
||||
This block causes a damage of @1 hit points per second.=Этот блок наносит урон в размере @1 очков здоровья в секунду.
|
||||
This block causes a damage of @1 hit point per second.=Этот блок наносит урон в размере @1 очка здоровья в секунду.
|
||||
This block heals @1 hit point per second.=
|
||||
This block heals @1 hit points per second.=
|
||||
This block decreases your breath and causes a drowning damage of @1 hit points every 2 seconds.=Этот блок понижает ваш уровень кислорода и наносит урон в размере @1 очков здоровья каждые 2 секунды, когда кислород закончится.
|
||||
This block decreases your breath and causes a drowning damage of @1 hit point every 2 seconds.=Этот блок понижает ваш уровень кислорода и наносит урон в размере @1 очка здоровья каждые 2 секунды, когда кислород закончится.
|
||||
The fall damage on this block is increased by @1%.=Урон от падения на этот блок увеличивается на @1%.
|
||||
This block negates all fall damage.=Этот блок сводит на нет все повреждения при падении.
|
||||
The fall damage on this block is reduced by @1%.=Урон от падения на этот блок уменьшен на @1%.
|
||||
You can not jump while standing on this block.=Стоя на этом блоке, вы не можете прыгать.
|
||||
You can not jump while inside this block.=
|
||||
This block slows down your movement.=
|
||||
This block can be climbed, but only horizontally.=
|
||||
This block can be climbed, but only downwards.=
|
||||
This block can be climbed, but only upwards.=
|
||||
This block can be climbed.=На этот блок можно взобраться.
|
||||
This block will make you bounce off with an elasticity of @1%.=Этот блок заставит вас отскакивать с эластичностью в @1%.
|
||||
This block is slippery.=Этот блок скользкий.
|
||||
This block is completely silent when walked on, mined or built.=Этот блок абсолютно бесшумен, когда по нему ходят, добывают или строят.
|
||||
This block is completely silent when mined or built.=Этот блок абсолютно бесшумный при добыче или строительстве.
|
||||
Walking on this block is completely silent.=Движение по этому блоку бесшумно.
|
||||
Mining this block is completely silent.=Выкапывание этого блока происходит абсолютно бесшумно.
|
||||
Building this block is completely silent.=Строительство этого блока присходит совершенно бесшумно.
|
||||
This block is affected by gravity and can fall.=Этот блок подвержен воздействию силы тяжести и может упасть.
|
||||
Building another block at this block will place it inside and replace it.=Построение другого блока на месте этого блока поместит его внутрь и заменит его.
|
||||
Falling blocks can go through this block; they destroy it when doing so.=Падающие блоки могут проходить сквозь этот блок; при этом они разрушают его.
|
||||
This block will drop as an item when a falling block ends up inside it.=Этот блок выпадет как элемент, когда падающий блок окажется внутри него.
|
||||
This block is destroyed when a falling block ends up inside it.=Этот блок разрушается, когда падающий блок оказывается внутри него.
|
||||
This block will drop as an item when it is not attached to a surrounding block.=Этот блок упадёт как элемент, если он не прикреплен к соседним блокам.
|
||||
This block will drop as an item when no collidable block is below it.=Этот блок упадёт как элемент, если под ним не будет твёрдого блока.
|
||||
Liquids can flow into this block and destroy it.=Жидкости могут попасть в этот блок и разрушить его.
|
||||
This block is a light source with a light level of @1.=Этот блок представляет собой источник света с уровнем освещенности @1.
|
||||
This block glows faintly with a light level of @1.=Этот блок слабо светится с уровнем освещенности @1.
|
||||
This block allows light to propagate with a small loss of brightness, and sunlight can even go through losslessly.=Этот блок позволяет свету распространяться с небольшой потерей яркости, и солнечный свет может даже проходить без потерь.
|
||||
This block allows light to propagate with a small loss of brightness.=Этот блок позволяет свету распространяться с небольшой потерей яркости.
|
||||
This block allows sunlight to propagate without loss in brightness.=Этот блок позволяет солнечному свету распространяться без потери яркости.
|
||||
Unknown Node=Неизвестный узел
|
||||
This block connects to this block: @1.=Этот блок соединяется с этим блоком: @1.
|
||||
This block connects to these blocks: @1.=Этот блок соединяется с этими блоками: @1.
|
||||
This block connects to blocks of the @1 group.=Этот блок соединяется с блоками группы @1.
|
||||
This block connects to blocks of the following groups: @1.=Этот блок соединяется с блоками следующих групп: @1.
|
||||
This block won't drop anything when mined.=Из этого блока ничего не выпадает при выкапывании.
|
||||
This block will drop the following when mined: @1×@2.=При выкапывании из этого блока выпадет следующее: @1×@2.
|
||||
This block will drop the following when mined: @1.=При выкапывании из этого блока выпадет следующее: @1.
|
||||
This block will drop the following items when mined: @1.=При выкапывании из этого блока могут выпасть следующие предметы: @1.
|
||||
This block will randomly drop one of the following when mined: @1.=При выкапывании из этого блока случайным образом выпадет один из следующих предметов: @1.
|
||||
This block will randomly drop up to @1 drops of the following possible drops when mined: @2.=При выкапывании из этого блока случайным образом выпадет до @1 предметов из следующих возможных: @2.
|
||||
# Final list separator (e.g. “One, two and three”)
|
||||
and = и
|
||||
@1×@2=
|
||||
# Itemname (<0.5%)
|
||||
@1 (<0.5%)=@1 (<0.5%)
|
||||
# Itemname (ca. 25%)
|
||||
@1 (ca. @2%)=@1 (прибл. @2%)
|
||||
# List separator (e.g. “one, two, three”)
|
||||
, =,
|
||||
# Final list separator (e.g. “One, two and three”)
|
||||
and = и
|
||||
1 second=1 секунду
|
||||
A transparent block, basically empty space. It is usually left behind after digging something.=Прозрачный блок, по сути, пустое пространство. Его обычно оставляют после того, как что-то выкапывают.
|
||||
Blocks=Блоки
|
||||
Building another block at this block will place it inside and replace it.=Построение другого блока на месте этого блока поместит его внутрь и заменит его.
|
||||
Building this block is completely silent.=Строительство этого блока присходит совершенно бесшумно.
|
||||
Collidable: @1=Возможность столкновения: @1
|
||||
Description: @1=Описание: @1
|
||||
Falling blocks can go through this block; they destroy it when doing so.=Падающие блоки могут проходить сквозь этот блок; при этом они разрушают его.
|
||||
Full punch interval: @1 s=Полный интервал пробивки: @1 с
|
||||
Hand=Рукой
|
||||
Hold it in your hand, then leftclick to eat it.=Подержите его в руке, затем щелкните левой кнопкой мыши, чтобы съесть.
|
||||
Hold it in your hand, then leftclick to eat it. But why would you want to do this?=Подержите его в руке, затем щелкните левой кнопкой мыши, чтобы съесть. Но зачем вам это нужно?
|
||||
# Itemname (25%)
|
||||
@1 (@2%)=@1 (@2%)
|
||||
Tools and weapons=Инструменты и оружие
|
||||
Item reference of all wieldable tools and weapons=Список всех доступных инструментов и оружия
|
||||
Item reference of blocks and other things which are capable of occupying space=Предметная ссылка на блоки и другие предметы, способные занимать пространство
|
||||
Item reference of items which are neither blocks, tools or weapons (esp. crafting items)=Ссылка на предметы, которые не являются ни блоками, ни инструментами, ни оружием (особенно предметы для крафта)
|
||||
Liquids can flow into this block and destroy it.=Жидкости могут попасть в этот блок и разрушить его.
|
||||
Maximum stack size: @1=Максимальный размер стака: @1
|
||||
Mining level: @1=Сложность выкапывания: @1
|
||||
Mining ratings:=Рейтинги добычи полезных ископаемых:
|
||||
• @1, rating @2: @3 s - @4 s=• @1, шанс @2: @3 с - @4 с
|
||||
• @1, rating @2: @3 s=• @1, шанс @2: @3 с
|
||||
Mining times:=Время добычи полезных ископаемых:
|
||||
Mining this block is completely silent.=Выкапывание этого блока происходит абсолютно бесшумно.
|
||||
Durability: @1 uses=Долговечность: @1 использований
|
||||
Durability: @1=Долговечность: @1
|
||||
Miscellaneous items=Прочие предметы
|
||||
No=Нет
|
||||
Pointable: No=Поддающийся покраске: Нет
|
||||
Pointable: Only by special items=Поддающийся покраске: Только специальным предметом
|
||||
Pointable: Yes=Поддающийся покраске: Да
|
||||
Punches with this block don't work as usual; melee combat and mining are either not possible or work differently.=Удары этим блоком работают не так, как обычно; атака и добыча полезных ископаемых либо невозможны, либо работают по-другому.
|
||||
Punches with this item don't work as usual; melee combat and mining are either not possible or work differently.=Удары этим предметом работают не так, как обычно; атака и добыча полезных ископаемых либо невозможны, либо работают по-другому.
|
||||
Punches with this tool don't work as usual; melee combat and mining are either not possible or work differently.=Удары этим инструментом работают не так, как обычно; атака и добыча полезных ископаемых либо невозможны, либо работают по-другому.
|
||||
Range: @1=Можно дотянуться: @1
|
||||
# Range: <Hand> (<Range>)
|
||||
Range: @1 (@2)=Можно дотянуться: @1 за (@2) блоков
|
||||
Range: 4=Можно дотянуться: 4
|
||||
Item reference of items which are neither blocks, tools or weapons (esp. crafting items)=Ссылка на предметы, которые не являются ни блоками, ни инструментами, ни оружием (особенно предметы для крафта)
|
||||
A transparent block, basically empty space. It is usually left behind after digging something.=Прозрачный блок, по сути, пустое пространство. Его обычно оставляют после того, как что-то выкапывают.
|
||||
Whenever you are not wielding any item, you use the hand which acts as a tool with its own capabilities. When you are wielding an item which is not a mining tool or a weapon it will behave as if it would be the hand.=Всякий раз, когда вы не владеете каким-либо предметом, вы используете руку, которая действует как инструмент со своими собственными возможностями. Когда вы владеете предметом, который не является инструментом для добычи полезных ископаемых или оружием, он будет вести себя так, как если бы это была рука.
|
||||
|
||||
|
||||
##### not used anymore #####
|
||||
|
||||
Using it as fuel turns it into: @1.=Использование его в качестве топлива превращает его в: @1.
|
||||
# Item count times item name
|
||||
%@1×@2=%@1×@2
|
||||
Mining level: @1=Сложность выкапывания: @1
|
||||
# Rating used for digging times
|
||||
Rating @1=Рейтинг @1
|
||||
# @1 is minimal rating, @2 is maximum rating
|
||||
Rating @1-@2=Рейтинг @1-@2
|
||||
The fall damage on this block is increased by @1%.=Урон от падения на этот блок увеличивается на @1%.
|
||||
The fall damage on this block is reduced by @1%.=Урон от падения на этот блок уменьшен на @1%.
|
||||
This block allows light to propagate with a small loss of brightness, and sunlight can even go through losslessly.=Этот блок позволяет свету распространяться с небольшой потерей яркости, и солнечный свет может даже проходить без потерь.
|
||||
This block allows light to propagate with a small loss of brightness.=Этот блок позволяет свету распространяться с небольшой потерей яркости.
|
||||
This block allows sunlight to propagate without loss in brightness.=Этот блок позволяет солнечному свету распространяться без потери яркости.
|
||||
This block belongs to the @1 group.=Этот блок принадлежит к группе @1.
|
||||
This block belongs to these groups: @1.=Этот блок принадлежит к следующим группам: @1.
|
||||
This block can be climbed.=На этот блок можно взобраться.
|
||||
This block can be destroyed by any mining tool immediately.=Этот блок может быть немедленно уничтожен любым инструментом для добычи полезных ископаемых.
|
||||
This block can be destroyed by any mining tool in half a second.=Этот блок может быть уничтожен любым инструментом для добычи полезных ископаемых за полсекунды.
|
||||
This block can be mined by any mining tool immediately.=Этот блок может быть немедленно выкопан любым инструментом для добычи полезных ископаемых.
|
||||
This block can be mined by any mining tool in half a second.=Этот блок может быть выкопан любым инструментом для добычи полезных ископаемых за полсекунды.
|
||||
This block can be mined by mining tools which match any of the following mining ratings and its toughness level.=Этот блок может быть добыт с помощью инструментов для добычи полезных ископаемых, которые соответствуют любому из следующих рейтингов добычи полезных ископаемых и уровню его твёрдости.
|
||||
This block can not be destroyed by ordinary mining tools.=Этот блок не может быть уничтожен обычными инструментами для добычи полезных ископаемых.
|
||||
This block can not be mined by ordinary mining tools.=Этот блок не может быть выкопан обычными инструментами для добычи полезных ископаемых.
|
||||
This block can serve as a smelting fuel with a burning time of @1.=Этот блок может служить топливом для плавки со временем горения @1.
|
||||
This block causes a damage of @1 hit point per second.=Этот блок наносит урон в размере @1 очка здоровья в секунду.
|
||||
This block causes a damage of @1 hit points per second.=Этот блок наносит урон в размере @1 очков здоровья в секунду.
|
||||
This block connects to blocks of the @1 group.=Этот блок соединяется с блоками группы @1.
|
||||
This block connects to blocks of the following groups: @1.=Этот блок соединяется с блоками следующих групп: @1.
|
||||
This block connects to these blocks: @1.=Этот блок соединяется с этими блоками: @1.
|
||||
This block connects to this block: @1.=Этот блок соединяется с этим блоком: @1.
|
||||
This block decreases your breath and causes a drowning damage of @1 hit point every 2 seconds.=Этот блок понижает ваш уровень кислорода и наносит урон в размере @1 очка здоровья каждые 2 секунды, когда кислород закончится.
|
||||
This block decreases your breath and causes a drowning damage of @1 hit points every 2 seconds.=Этот блок понижает ваш уровень кислорода и наносит урон в размере @1 очков здоровья каждые 2 секунды, когда кислород закончится.
|
||||
This block is a light source with a light level of @1.=Этот блок представляет собой источник света с уровнем освещенности @1.
|
||||
This block glows faintly with a light level of @1.=Этот блок слабо светится с уровнем освещенности @1.
|
||||
This block is a building block for creating various buildings.=Этот блок является строительным блоком для создания различных зданий.
|
||||
This block is a liquid with these properties:=Этот блок представляет собой жидкость со следующими свойствами:
|
||||
This block is affected by gravity and can fall.=Этот блок подвержен воздействию силы тяжести и может упасть.
|
||||
This block is completely silent when mined or built.=Этот блок абсолютно бесшумный при добыче или строительстве.
|
||||
This block is completely silent when walked on, mined or built.=Этот блок абсолютно бесшумен, когда по нему ходят, добывают или строят.
|
||||
This block is destroyed when a falling block ends up inside it.=Этот блок разрушается, когда падающий блок оказывается внутри него.
|
||||
This block negates all fall damage.=Этот блок сводит на нет все повреждения при падении.
|
||||
This block points to liquids.=Этот блок является жидкостью.
|
||||
This block will drop as an item when a falling block ends up inside it.=Этот блок выпадет как элемент, когда падающий блок окажется внутри него.
|
||||
This block will drop as an item when it is not attached to a surrounding block.=Этот блок упадёт как элемент, если он не прикреплен к соседним блокам.
|
||||
This block will drop as an item when no collidable block is below it.=Этот блок упадёт как элемент, если под ним не будет твёрдого блока.
|
||||
This block will drop the following items when mined: @1.=При выкапывании из этого блока могут выпасть следующие предметы: @1.
|
||||
This block will drop the following when mined: @1×@2.=При выкапывании из этого блока выпадет следующее: @1×@2.
|
||||
This block will drop the following when mined: @1.=При выкапывании из этого блока выпадет следующее: @1.
|
||||
This block will make you bounce off with an elasticity of @1%.=Этот блок заставит вас отскакивать с эластичностью в @1%.
|
||||
This block will randomly drop one of the following when mined: @1.=При выкапывании из этого блока случайным образом выпадет один из следующих предметов: @1.
|
||||
This block will randomly drop up to @1 drops of the following possible drops when mined: @2.=При выкапывании из этого блока случайным образом выпадет до @1 предметов из следующих возможных: @2.
|
||||
This block won't drop anything when mined.=Из этого блока ничего не выпадает при выкапывании.
|
||||
This is a decorative block.=Это декоративный блок.
|
||||
This is a melee weapon which deals damage by punching.=Это оружие ближнего боя, которое наносит урон при ударе.
|
||||
Maximum damage per hit:=Максимальный урон за попадание:
|
||||
This item belongs to the @1 group.=Этот элемент принадлежит к группе @1.
|
||||
This item belongs to these groups: @1.=Этот элемент принадлежит к следующим группам: @1.
|
||||
This item can serve as a smelting fuel with a burning time of @1.=Этот элемент может служить топливом для плавки со временем горения @1.
|
||||
This item is primarily used for crafting other items.=Этот предмет в основном используется для создания других предметов.
|
||||
This item points to liquids.=Этот предмет является жидкостью.
|
||||
This tool belongs to the @1 group.=Этот инструмент относится к группе @1.
|
||||
This tool belongs to these groups: @1.=Этот инструмент относится к следующим группам: @1.
|
||||
This tool can serve as a smelting fuel with a burning time of @1.=Этот инструмент может служить топливом для плавки со временем горения @1.
|
||||
This tool is capable of mining.=Этот инструмент предназначен для выкапывания/добычи других блоков.
|
||||
Maximum toughness levels:=Максимальный уровни прочности:
|
||||
This tool points to liquids.=Это инструмент для хранения жидкости.
|
||||
Tools and weapons=Инструменты и оружие
|
||||
Unknown Node=Неизвестный узел
|
||||
Usage help: @1=Справка по использованию: @1
|
||||
Walking on this block is completely silent.=Движение по этому блоку бесшумно.
|
||||
Whenever you are not wielding any item, you use the hand which acts as a tool with its own capabilities. When you are wielding an item which is not a mining tool or a weapon it will behave as if it would be the hand.=Всякий раз, когда вы не владеете каким-либо предметом, вы используете руку, которая действует как инструмент со своими собственными возможностями. Когда вы владеете предметом, который не является инструментом для добычи полезных ископаемых или оружием, он будет вести себя так, как если бы это была рука.
|
||||
Yes=Да
|
||||
You can not jump while standing on this block.=Стоя на этом блоке, вы не можете прыгать.
|
||||
any level=любой уровень
|
||||
level 0=уровень 0
|
||||
level 0-@1=уровень 0-@1
|
||||
unknown=неизвестный
|
||||
Unknown item (@1)=Неизвестный предмет (@1)
|
||||
• @1: @2=• @1: @2
|
||||
• @1: @2 HP=• @1: @2 ОЗ
|
||||
• @1: @2, @3=• @1: @2, @3
|
||||
• Flowing range: @1=• Уровень текучести: @1
|
||||
• No flowing=• Не текучий
|
||||
• Not renewable=• Обратно не поставить
|
||||
• Renewable=• Можно поставить
|
||||
• Viscosity: @1=• Вязкость: @1
|
||||
Itemstring: "@1"=Название предмета: "@1"
|
||||
Durability: @1 uses=Долговечность: @1 использований
|
||||
Durability: @1=Долговечность: @1
|
||||
Mining durability:=Долговечность при добычи полезных ископаемых:
|
||||
• @1, level @2: @3 uses=• @1, уровень @2: @3 использований
|
||||
• @1, level @2: Unlimited=• @1, уровень @2: Неограниченно
|
||||
This block's rotation is affected by the way you place it: Place it on the floor or ceiling for a vertical orientation; place it at the side for a horizontal orientation. Sneaking while placing it leads to a perpendicular orientation instead.=На вращение этого блока влияет способ его размещения: расположите его на полу или потолке для вертикальной ориентации; расположите сбоку для горизонтальной ориентации. Перемещение при размещении приводит к перпендикулярной ориентации.
|
||||
Toughness level: @1=Уровень прочности: @1
|
||||
This block is slippery.=Этот блок скользкий.
|
||||
|
@ -1,143 +1,150 @@
|
||||
# textdomain:doc_items
|
||||
Item Help=
|
||||
Adds automatically generated help texts for items.=
|
||||
Using it as fuel turns it into: @1.=
|
||||
This is a decorative block.=
|
||||
This block is a building block for creating various buildings.=
|
||||
This item is primarily used for crafting other items.=
|
||||
Hold it in your hand, then leftclick to eat it.=
|
||||
Hold it in your hand, then leftclick to eat it. But why would you want to do this?=
|
||||
This block's rotation is affected by the way you place it: Place it on the floor or ceiling for a vertical orientation; place it at the side for a horizontal orientation. Sneaking while placing it leads to a perpendicular orientation instead.=
|
||||
Hand=
|
||||
Yes=
|
||||
No=
|
||||
# List separator (e.g. “one, two, three”)
|
||||
, =
|
||||
Unknown item (@1)=
|
||||
unknown=
|
||||
1 second=
|
||||
@1 seconds=
|
||||
# Item count times item name
|
||||
%@1×@2=
|
||||
# Itemname (25%)
|
||||
@1 (@2%)=
|
||||
• @1: @2=
|
||||
• @1, rating @2: @3 s - @4 s=
|
||||
• @1, rating @2: @3 s=
|
||||
• @1, level @2: @3 uses=
|
||||
• @1, level @2: Unlimited=
|
||||
This tool is capable of mining.=
|
||||
Maximum toughness levels:=
|
||||
Mining times:=
|
||||
Mining durability:=
|
||||
This is a melee weapon which deals damage by punching.=
|
||||
Maximum damage per hit:=
|
||||
• @1: @2 HP=
|
||||
Full punch interval: @1 s=
|
||||
This block can be mined by any mining tool in half a second.=
|
||||
This block can be mined by any mining tool immediately.=
|
||||
This block can not be mined by ordinary mining tools.=
|
||||
This block can be destroyed by any mining tool in half a second.=
|
||||
This block can be destroyed by any mining tool immediately.=
|
||||
This block can not be destroyed by ordinary mining tools.=
|
||||
This block can be mined by mining tools which match any of the following mining ratings and its toughness level.=
|
||||
Mining ratings:=
|
||||
Toughness level: @1=
|
||||
Range: @1=
|
||||
Range: 4=
|
||||
# Range: <Hand> (<Range>)
|
||||
Range: @1 (@2)=
|
||||
This tool can serve as a smelting fuel with a burning time of @1.=
|
||||
This block can serve as a smelting fuel with a burning time of @1.=
|
||||
This item can serve as a smelting fuel with a burning time of @1.=
|
||||
Using it as fuel turns it into: @1.=
|
||||
Itemstring: "@1"=
|
||||
Description: @1=
|
||||
Usage help: @1=
|
||||
Maximum stack size: @1=
|
||||
This block points to liquids.=
|
||||
This tool points to liquids.=
|
||||
This item points to liquids.=
|
||||
Punches with this block don't work as usual; melee combat and mining are either not possible or work differently.=
|
||||
Punches with this tool don't work as usual; melee combat and mining are either not possible or work differently.=
|
||||
Punches with this item don't work as usual; melee combat and mining are either not possible or work differently.=
|
||||
This block belongs to the @1 group.=
|
||||
This tool belongs to the @1 group.=
|
||||
This item belongs to the @1 group.=
|
||||
This block belongs to these groups: @1.=
|
||||
This tool belongs to these groups: @1.=
|
||||
This item belongs to these groups: @1.=
|
||||
Blocks=
|
||||
Item reference of blocks and other things which are capable of occupying space=
|
||||
Collidable: @1=
|
||||
Pointable: Yes=
|
||||
Pointable: Only by special items=
|
||||
Pointable: No=
|
||||
This block is a liquid with these properties:=
|
||||
• Renewable=
|
||||
• Not renewable=
|
||||
• No flowing=
|
||||
• Flowing range: @1=
|
||||
• Viscosity: @1=
|
||||
This block causes a damage of @1 hit points per second.=
|
||||
This block causes a damage of @1 hit point per second.=
|
||||
This block heals @1 hit point per second.=
|
||||
This block heals @1 hit points per second.=
|
||||
This block decreases your breath and causes a drowning damage of @1 hit points every 2 seconds.=
|
||||
This block decreases your breath and causes a drowning damage of @1 hit point every 2 seconds.=
|
||||
The fall damage on this block is increased by @1%.=
|
||||
This block negates all fall damage.=
|
||||
The fall damage on this block is reduced by @1%.=
|
||||
You can not jump while standing on this block.=
|
||||
You can not jump while inside this block.=
|
||||
This block slows down your movement.=
|
||||
This block can be climbed, but only horizontally.=
|
||||
This block can be climbed, but only downwards.=
|
||||
This block can be climbed, but only upwards.=
|
||||
This block can be climbed.=
|
||||
This block will make you bounce off with an elasticity of @1%.=
|
||||
This block is slippery.=
|
||||
This block is completely silent when walked on, mined or built.=
|
||||
This block is completely silent when mined or built.=
|
||||
Walking on this block is completely silent.=
|
||||
Mining this block is completely silent.=
|
||||
Building this block is completely silent.=
|
||||
This block is affected by gravity and can fall.=
|
||||
Building another block at this block will place it inside and replace it.=
|
||||
Falling blocks can go through this block; they destroy it when doing so.=
|
||||
This block will drop as an item when a falling block ends up inside it.=
|
||||
This block is destroyed when a falling block ends up inside it.=
|
||||
This block will drop as an item when it is not attached to a surrounding block.=
|
||||
This block will drop as an item when no collidable block is below it.=
|
||||
Liquids can flow into this block and destroy it.=
|
||||
This block is a light source with a light level of @1.=
|
||||
This block glows faintly with a light level of @1.=
|
||||
This block allows light to propagate with a small loss of brightness, and sunlight can even go through losslessly.=
|
||||
This block allows light to propagate with a small loss of brightness.=
|
||||
This block allows sunlight to propagate without loss in brightness.=
|
||||
Unknown Node=
|
||||
This block connects to this block: @1.=
|
||||
This block connects to these blocks: @1.=
|
||||
This block connects to blocks of the @1 group.=
|
||||
This block connects to blocks of the following groups: @1.=
|
||||
This block won't drop anything when mined.=
|
||||
This block will drop the following when mined: @1×@2.=
|
||||
This block will drop the following when mined: @1.=
|
||||
This block will drop the following items when mined: @1.=
|
||||
This block will randomly drop one of the following when mined: @1.=
|
||||
This block will randomly drop up to @1 drops of the following possible drops when mined: @2.=
|
||||
# Final list separator (e.g. “One, two and three”)
|
||||
and =
|
||||
@1×@2=
|
||||
# Itemname (<0.5%)
|
||||
@1 (<0.5%)=
|
||||
# Itemname (ca. 25%)
|
||||
@1 (ca. @2%)=
|
||||
# List separator (e.g. “one, two, three”)
|
||||
, =
|
||||
# Final list separator (e.g. “One, two and three”)
|
||||
and =
|
||||
1 second=
|
||||
A transparent block, basically empty space. It is usually left behind after digging something.=
|
||||
Blocks=
|
||||
Building another block at this block will place it inside and replace it.=
|
||||
Building this block is completely silent.=
|
||||
Collidable: @1=
|
||||
Description: @1=
|
||||
Falling blocks can go through this block; they destroy it when doing so.=
|
||||
Full punch interval: @1 s=
|
||||
Hand=
|
||||
Hold it in your hand, then leftclick to eat it.=
|
||||
Hold it in your hand, then leftclick to eat it. But why would you want to do this?=
|
||||
# Itemname (25%)
|
||||
@1 (@2%)=
|
||||
Tools and weapons=
|
||||
Item reference of all wieldable tools and weapons=
|
||||
Item reference of blocks and other things which are capable of occupying space=
|
||||
Item reference of items which are neither blocks, tools or weapons (esp. crafting items)=
|
||||
Liquids can flow into this block and destroy it.=
|
||||
Maximum stack size: @1=
|
||||
Mining level: @1=
|
||||
Mining ratings:=
|
||||
• @1, rating @2: @3 s - @4 s=
|
||||
• @1, rating @2: @3 s=
|
||||
Mining times:=
|
||||
Mining this block is completely silent.=
|
||||
Durability: @1 uses=
|
||||
Durability: @1=
|
||||
Miscellaneous items=
|
||||
No=
|
||||
Pointable: No=
|
||||
Pointable: Only by special items=
|
||||
Pointable: Yes=
|
||||
Punches with this block don't work as usual; melee combat and mining are either not possible or work differently.=
|
||||
Punches with this item don't work as usual; melee combat and mining are either not possible or work differently.=
|
||||
Punches with this tool don't work as usual; melee combat and mining are either not possible or work differently.=
|
||||
Range: @1=
|
||||
# Range: <Hand> (<Range>)
|
||||
Range: @1 (@2)=
|
||||
Range: 4=
|
||||
Item reference of items which are neither blocks, tools or weapons (esp. crafting items)=
|
||||
A transparent block, basically empty space. It is usually left behind after digging something.=
|
||||
Whenever you are not wielding any item, you use the hand which acts as a tool with its own capabilities. When you are wielding an item which is not a mining tool or a weapon it will behave as if it would be the hand.=
|
||||
|
||||
|
||||
##### not used anymore #####
|
||||
|
||||
# Item count times item name
|
||||
%@1×@2=
|
||||
# Rating used for digging times
|
||||
Rating @1=
|
||||
# @1 is minimal rating, @2 is maximum rating
|
||||
Rating @1-@2=
|
||||
The fall damage on this block is increased by @1%.=
|
||||
The fall damage on this block is reduced by @1%.=
|
||||
This block allows light to propagate with a small loss of brightness, and sunlight can even go through losslessly.=
|
||||
This block allows light to propagate with a small loss of brightness.=
|
||||
This block allows sunlight to propagate without loss in brightness.=
|
||||
This block belongs to the @1 group.=
|
||||
This block belongs to these groups: @1.=
|
||||
This block can be climbed.=
|
||||
This block can be destroyed by any mining tool immediately.=
|
||||
This block can be destroyed by any mining tool in half a second.=
|
||||
This block can be mined by any mining tool immediately.=
|
||||
This block can be mined by any mining tool in half a second.=
|
||||
This block can be mined by mining tools which match any of the following mining ratings and its toughness level.=
|
||||
This block can not be destroyed by ordinary mining tools.=
|
||||
This block can not be mined by ordinary mining tools.=
|
||||
This block can serve as a smelting fuel with a burning time of @1.=
|
||||
This block causes a damage of @1 hit point per second.=
|
||||
This block causes a damage of @1 hit points per second.=
|
||||
This block connects to blocks of the @1 group.=
|
||||
This block connects to blocks of the following groups: @1.=
|
||||
This block connects to these blocks: @1.=
|
||||
This block connects to this block: @1.=
|
||||
This block decreases your breath and causes a drowning damage of @1 hit point every 2 seconds.=
|
||||
This block decreases your breath and causes a drowning damage of @1 hit points every 2 seconds.=
|
||||
This block is a light source with a light level of @1.=
|
||||
This block glows faintly with a light level of @1.=
|
||||
This block is a building block for creating various buildings.=
|
||||
This block is a liquid with these properties:=
|
||||
This block is affected by gravity and can fall.=
|
||||
This block is completely silent when mined or built.=
|
||||
This block is completely silent when walked on, mined or built.=
|
||||
This block is destroyed when a falling block ends up inside it.=
|
||||
This block negates all fall damage.=
|
||||
This block points to liquids.=
|
||||
This block will drop as an item when a falling block ends up inside it.=
|
||||
This block will drop as an item when it is not attached to a surrounding block.=
|
||||
This block will drop as an item when no collidable block is below it.=
|
||||
This block will drop the following items when mined: @1.=
|
||||
This block will drop the following when mined: @1×@2.=
|
||||
This block will drop the following when mined: @1.=
|
||||
This block will make you bounce off with an elasticity of @1%.=
|
||||
This block will randomly drop one of the following when mined: @1.=
|
||||
This block will randomly drop up to @1 drops of the following possible drops when mined: @2.=
|
||||
This block won't drop anything when mined.=
|
||||
This is a decorative block.=
|
||||
This is a melee weapon which deals damage by punching.=
|
||||
Maximum damage per hit:=
|
||||
This item belongs to the @1 group.=
|
||||
This item belongs to these groups: @1.=
|
||||
This item can serve as a smelting fuel with a burning time of @1.=
|
||||
This item is primarily used for crafting other items.=
|
||||
This item points to liquids.=
|
||||
This tool belongs to the @1 group.=
|
||||
This tool belongs to these groups: @1.=
|
||||
This tool can serve as a smelting fuel with a burning time of @1.=
|
||||
This tool is capable of mining.=
|
||||
Maximum toughness levels:=
|
||||
This tool points to liquids.=
|
||||
Tools and weapons=
|
||||
Unknown Node=
|
||||
Usage help: @1=
|
||||
Walking on this block is completely silent.=
|
||||
Whenever you are not wielding any item, you use the hand which acts as a tool with its own capabilities. When you are wielding an item which is not a mining tool or a weapon it will behave as if it would be the hand.=
|
||||
Yes=
|
||||
You can not jump while standing on this block.=
|
||||
any level=
|
||||
level 0=
|
||||
level 0-@1=
|
||||
unknown=
|
||||
Unknown item (@1)=
|
||||
• @1: @2=
|
||||
• @1: @2 HP=
|
||||
• @1: @2, @3=
|
||||
• Flowing range: @1=
|
||||
• No flowing=
|
||||
• Not renewable=
|
||||
• Renewable=
|
||||
• Viscosity: @1=
|
||||
Itemstring: "@1"=
|
||||
Durability: @1 uses=
|
||||
Durability: @1=
|
||||
Mining durability:=
|
||||
• @1, level @2: @3 uses=
|
||||
• @1, level @2: Unlimited=
|
||||
This block's rotation is affected by the way you place it: Place it on the floor or ceiling for a vertical orientation; place it at the side for a horizontal orientation. Sneaking while placing it leads to a perpendicular orientation instead.=
|
||||
Toughness level: @1=
|
||||
This block is slippery.=
|
||||
|
Loading…
x
Reference in New Issue
Block a user