mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2025-06-28 06:30:34 +02:00
add something nasty to the underworld
This commit is contained in:
@ -24,4 +24,5 @@ local function setting(stype, name, default, description)
|
||||
end
|
||||
|
||||
setting("bool", "invulnerable_slade", true, "Slade is invulnerable to players")
|
||||
setting("bool", "destructive_pit_plasma", true, "Pit plasma destroys adjacent nodes")
|
||||
setting("bool", "destructive_pit_plasma", true, "Pit plasma destroys adjacent nodes")
|
||||
setting("bool", "underworld_hunter_statues", true, "Enable hunter statues in the underworld")
|
21
df_underworld_items/hunter_statue.lua
Normal file
21
df_underworld_items/hunter_statue.lua
Normal file
@ -0,0 +1,21 @@
|
||||
if minetest.get_modpath("hunter_statue") and df_underworld_items.config.underworld_hunter_statues then
|
||||
|
||||
local S = df_underworld_items.S
|
||||
|
||||
hunter_statue.register_hunter_statue("df_underworld_items:hunter_statue", {
|
||||
description = S("Guardian Statue"),
|
||||
chance = 2,
|
||||
tiles = {
|
||||
{ name = "dfcaverns_slade.png", backface_culling = true },
|
||||
},
|
||||
tnt_vulnerable = true,
|
||||
tnt_debris = "df_underworld_items:slade_sand",
|
||||
groups = {hunter_statue = 1, falling_node = 1, immortal = 1},
|
||||
other_overrides = {
|
||||
can_dig = function(pos, player)
|
||||
return minetest.check_player_privs(player, "server")
|
||||
end,
|
||||
}
|
||||
})
|
||||
|
||||
end
|
@ -10,6 +10,7 @@ dofile(modpath.."/doc.lua")
|
||||
dofile(modpath.."/crystals_amethyst.lua")
|
||||
dofile(modpath.."/glow_stone.lua")
|
||||
dofile(modpath.."/slade.lua")
|
||||
dofile(modpath.."/hunter_statue.lua")
|
||||
dofile(modpath.."/glowing_pit_plasma.lua")
|
||||
|
||||
dofile(modpath.."/puzzle_seal.lua")
|
84
df_underworld_items/locale/df_underworld_items.de.tr
Normal file
84
df_underworld_items/locale/df_underworld_items.de.tr
Normal file
@ -0,0 +1,84 @@
|
||||
# textdomain: df_underworld_items
|
||||
|
||||
|
||||
### crystals_amethyst.lua ###
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Glowing Amethyst Block=Glühender Amethystblock
|
||||
|
||||
### doc.lua ###
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Bright glowing stones of unknown origin found lodged in the crevices of the underworld's ceiling.=Hell leuchtende Steine unbekannter Herkunft wurden in den Spalten der Decke der Unterwelt gefunden.
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Glowing purple crystals that grow through holes in the foundation of the world.=Glühende lila Kristalle, die durch Löcher im Fundament der Welt wachsen.
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
In fact, Slade is impervious to conventional mining entirely.=Tatsächlich ist Slade für den konventionellen Bergbau völlig undurchlässig.
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Slade is extremely hard to work with so it has little use.=Slade ist extrem schwer zu bearbeiten, daher hat es wenig Sinn.
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
The liquid found in the deepest pits in the underworld is highly dangerous and damaging.=Die Flüssigkeit in den tiefsten Gruben der Unterwelt ist äußerst gefährlich und schädlich.
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
The only use for this material is that it destroys whatever is thrown into it. It cannot otherwise be manipulated.=Die einzige Verwendung für dieses Material ist, dass es alles zerstört, was hineingeworfen wird. Es kann nicht anders manipuliert werden.
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
The very foundation of the world, Slade is a mysterious ultra-dense substance.=Slade ist das Fundament der Welt und eine mysteriöse, ultradichte Substanz.
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
These crystals have no known use.=Diese Kristalle haben keine bekannte Verwendung.
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
These stones are highly volatile and should not be disturbed.=Diese Steine sind sehr flüchtig und sollten nicht gestört werden.
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
This block of Slade, carved by an unknown hand, is engraved with mysterious symbols. Most of the engraving's meaning is lost to the mists of time but one frament in the oldest known language can be translated: "This place is not a place of honor."=Dieser von einer unbekannten Hand geschnitzte Slade-Block ist mit mysteriösen Symbolen versehen. Der größte Teil der Bedeutung der Gravur geht den Nebeln der Zeit verloren, aber ein Frament in der ältesten bekannten Sprache kann übersetzt werden: "Dieser Ort ist kein Ehrenplatz."
|
||||
|
||||
|
||||
### glow_stone.lua ###
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Lightseam=Lichtnaht
|
||||
|
||||
### glowing_pit_plasma.lua ###
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Glowing Pit Plasma=Glühendes Grubenplasma
|
||||
|
||||
### hunter_statue.lua ###
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Guardian Statue=Wächterstatue
|
||||
|
||||
### puzzle_seal.lua ###
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Active Slade Breacher=Aktiver Slade Breacher
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Breach in the Slade=Brich den Slade ein
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Inscribed Slade Block=Beschrifteter Slade-Block
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Slade Block Slab=Slade Block Platte
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Slade Block Stair=Slade Block Treppe
|
||||
Slade Capstone=
|
||||
Slade Puzzle Seal=
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Turn=Wende
|
||||
|
||||
### slade.lua ###
|
||||
|
||||
Slade=
|
||||
Slade Block=
|
||||
Slade Brick=
|
||||
Slade Sand=
|
||||
Slade Seal=
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Slade Slab=Slade-Platte
|
||||
Slade Stair=
|
||||
Slade Wall=
|
79
df_underworld_items/locale/df_underworld_items.it.tr
Normal file
79
df_underworld_items/locale/df_underworld_items.it.tr
Normal file
@ -0,0 +1,79 @@
|
||||
# textdomain: df_underworld_items
|
||||
|
||||
|
||||
### crystals_amethyst.lua ###
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Glowing Amethyst Block=Blocco di ametista incandescente
|
||||
|
||||
### doc.lua ###
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Bright glowing stones of unknown origin found lodged in the crevices of the underworld's ceiling.=Pietre luminose e luminose di origine sconosciuta trovate alloggiate nelle fessure del soffitto del mondo sotterraneo.
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Glowing purple crystals that grow through holes in the foundation of the world.=Cristalli viola luminosi che crescono attraverso i buchi nelle fondamenta del mondo.
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
In fact, Slade is impervious to conventional mining entirely.=In effetti, Slade è completamente impermeabile al mining convenzionale.
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Slade is extremely hard to work with so it has little use.=Slade è estremamente difficile da lavorare, quindi è poco utile.
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
The liquid found in the deepest pits in the underworld is highly dangerous and damaging.=Il liquido trovato nelle fosse più profonde degli inferi è altamente pericoloso e dannoso.
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
The only use for this material is that it destroys whatever is thrown into it. It cannot otherwise be manipulated.=L'unico uso di questo materiale è che distrugge tutto ciò che viene gettato al suo interno. Non può essere altrimenti manipolato.
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
The very foundation of the world, Slade is a mysterious ultra-dense substance.=Il fondamento stesso del mondo, Slade è una misteriosa sostanza ultra-densa.
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
These crystals have no known use.=Questi cristalli non hanno alcun uso noto.
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
These stones are highly volatile and should not be disturbed.=Queste pietre sono altamente volatili e non dovrebbero essere disturbate.
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
This block of Slade, carved by an unknown hand, is engraved with mysterious symbols. Most of the engraving's meaning is lost to the mists of time but one frament in the oldest known language can be translated: "This place is not a place of honor."=Questo blocco di Slade, scolpito da una mano sconosciuta, è inciso con simboli misteriosi. La maggior parte del significato dell'incisione si perde nella notte dei tempi, ma un frammento nella più antica lingua conosciuta può essere tradotto: "Questo posto non è un posto d'onore".
|
||||
|
||||
|
||||
### glow_stone.lua ###
|
||||
|
||||
Lightseam=
|
||||
|
||||
### glowing_pit_plasma.lua ###
|
||||
|
||||
Glowing Pit Plasma=
|
||||
|
||||
### hunter_statue.lua ###
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Guardian Statue=Statua del guardiano
|
||||
|
||||
### puzzle_seal.lua ###
|
||||
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Active Slade Breacher=Attivo Slade Breacher
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Breach in the Slade=Violazione nello Slade
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Inscribed Slade Block=Inscritto Slade Block
|
||||
Slade Block Slab=
|
||||
Slade Block Stair=
|
||||
Slade Capstone=
|
||||
Slade Puzzle Seal=
|
||||
Turn=
|
||||
|
||||
### slade.lua ###
|
||||
|
||||
Slade=
|
||||
Slade Block=
|
||||
Slade Brick=
|
||||
Slade Sand=
|
||||
#WARNING: AUTOTRANSLATED BY GOOGLE TRANSLATE
|
||||
Slade Seal=Sigillo Slade
|
||||
Slade Slab=
|
||||
Slade Stair=
|
||||
Slade Wall=
|
@ -36,6 +36,10 @@ Lightseam=
|
||||
|
||||
Glowing Pit Plasma=
|
||||
|
||||
### hunter_statue.lua ###
|
||||
|
||||
Guardian Statue=
|
||||
|
||||
### puzzle_seal.lua ###
|
||||
|
||||
Active Slade Breacher=
|
||||
|
@ -1,4 +1,4 @@
|
||||
name = df_underworld_items
|
||||
description = Various node types used by the dfcaverns mapgen mod for its underworld layer.
|
||||
depends = default
|
||||
optional_depends = doc, radiant_damage, mesecons_mvps, tnt, stairs
|
||||
optional_depends = doc, radiant_damage, mesecons_mvps, tnt, stairs, hunter_statue
|
||||
|
@ -1,2 +1,3 @@
|
||||
dfcaverns_invulnerable_slade (Slade cannot be damaged) bool true
|
||||
dfcaverns_destructive_pit_plasma (Pit plasma destroys adjacent nodes) bool true
|
||||
dfcaverns_destructive_pit_plasma (Pit plasma destroys adjacent nodes) bool true
|
||||
dfcaverns_underworld_hunter_statues (Enable hunter statues in the underworld) bool true
|
Reference in New Issue
Block a user