mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2025-01-26 18:10:22 +01:00
add giant mese stalactites to lava sea
This commit is contained in:
parent
3c97194831
commit
1818ba0230
@ -5,15 +5,25 @@ local c_cobble = minetest.get_content_id("default:cobble")
|
|||||||
local c_dirt = minetest.get_content_id("default:dirt")
|
local c_dirt = minetest.get_content_id("default:dirt")
|
||||||
local c_sand = minetest.get_content_id("default:sand")
|
local c_sand = minetest.get_content_id("default:sand")
|
||||||
local c_lava = minetest.get_content_id("default:lava_source")
|
local c_lava = minetest.get_content_id("default:lava_source")
|
||||||
|
local c_meseore = minetest.get_content_id("default:stone_with_mese")
|
||||||
|
local c_mesecry = minetest.get_content_id("dfcaverns:glow_mese")
|
||||||
|
|
||||||
-------------------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
local lava_ceiling = function(area, data, ai, vi, bi)
|
||||||
|
if math.random() < 0.005 then
|
||||||
|
subterrane:giant_stalactite(ai, area, data, 6, 13, c_meseore, c_meseore, c_mesecry)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
local lava_sea_biome_def = {
|
local lava_sea_biome_def = {
|
||||||
name = "dfcaverns_lava_sea",
|
name = "dfcaverns_lava_sea",
|
||||||
y_min = dfcaverns.config.lava_sea_min,
|
y_min = dfcaverns.config.lava_sea_min,
|
||||||
y_max = dfcaverns.config.lava_sea_max,
|
y_max = dfcaverns.config.lava_sea_max,
|
||||||
heat_point = 50,
|
heat_point = 50,
|
||||||
humidity_point = 50,
|
humidity_point = 50,
|
||||||
|
_subterrane_ceiling_decor = lava_ceiling,
|
||||||
}
|
}
|
||||||
|
|
||||||
minetest.register_biome(lava_sea_biome_def)
|
minetest.register_biome(lava_sea_biome_def)
|
||||||
|
24
features/glow_crystals.lua
Normal file
24
features/glow_crystals.lua
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
-- internationalization boilerplate
|
||||||
|
local MP = minetest.get_modpath(minetest.get_current_modname())
|
||||||
|
local S, NS = dofile(MP.."/intllib.lua")
|
||||||
|
|
||||||
|
--glowing mese crystal blocks
|
||||||
|
minetest.register_node("dfcaverns:glow_mese", {
|
||||||
|
description = S("Flawless Mese Block"),
|
||||||
|
tiles = {"dfcaverns_glow_mese.png"},
|
||||||
|
is_ground_content = true,
|
||||||
|
groups = {cracky=3},
|
||||||
|
sounds = default.node_sound_glass_defaults(),
|
||||||
|
light_source = 13,
|
||||||
|
paramtype = "light",
|
||||||
|
use_texture_alpha = true,
|
||||||
|
drawtype = "glasslike",
|
||||||
|
sunlight_propagates = true,
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'default:mese_crystal 12',
|
||||||
|
recipe = {
|
||||||
|
{'dfcaverns:glow_mese'},
|
||||||
|
}
|
||||||
|
})
|
9
init.lua
9
init.lua
@ -7,10 +7,11 @@ local modpath = minetest.get_modpath(minetest.get_current_modname())
|
|||||||
dofile(modpath.."/config.lua")
|
dofile(modpath.."/config.lua")
|
||||||
dofile(modpath.."/doc.lua")
|
dofile(modpath.."/doc.lua")
|
||||||
|
|
||||||
dofile(modpath.."/ground_cover.lua")
|
dofile(modpath.."/features/ground_cover.lua")
|
||||||
dofile(modpath.."/glow_worms.lua")
|
dofile(modpath.."/features/glow_worms.lua")
|
||||||
dofile(modpath.."/flowstone_nodes.lua")
|
dofile(modpath.."/features/flowstone_nodes.lua")
|
||||||
dofile(modpath.."/glow_water.lua")
|
dofile(modpath.."/features/glow_water.lua")
|
||||||
|
dofile(modpath.."/features/glow_crystals.lua")
|
||||||
|
|
||||||
-- Plants
|
-- Plants
|
||||||
dofile(modpath.."/plants.lua") -- general functions
|
dofile(modpath.."/plants.lua") -- general functions
|
||||||
|
67
locale/it.po
67
locale/it.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: dfcaverns module's Italian locale\n"
|
"Project-Id-Version: dfcaverns module's Italian locale\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-04-19 19:58-0600\n"
|
"POT-Creation-Date: 2018-05-18 01:34-0600\n"
|
||||||
"PO-Revision-Date: 2017-08-17 23:01+0100\n"
|
"PO-Revision-Date: 2017-08-17 23:01+0100\n"
|
||||||
"Last-Translator: H4mlet <h4mlet@riseup.net>\n"
|
"Last-Translator: H4mlet <h4mlet@riseup.net>\n"
|
||||||
"Language-Team: ITALIANO\n"
|
"Language-Team: ITALIANO\n"
|
||||||
@ -366,18 +366,6 @@ msgid ""
|
|||||||
"material."
|
"material."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: glow_worms.lua:6
|
|
||||||
msgid "Glow Worms"
|
|
||||||
msgstr "Vermi luminosi"
|
|
||||||
|
|
||||||
#: ground_cover.lua:11
|
|
||||||
msgid "Dirt With Cave Moss"
|
|
||||||
msgstr "Terra con muschio di caverna"
|
|
||||||
|
|
||||||
#: ground_cover.lua:52
|
|
||||||
msgid "Cobblestone With Floor Fungus"
|
|
||||||
msgstr "Ciottoli con funghi del terreno"
|
|
||||||
|
|
||||||
#: plants.lua:10
|
#: plants.lua:10
|
||||||
msgid "Dead Fungus"
|
msgid "Dead Fungus"
|
||||||
msgstr "Fungo morto"
|
msgstr "Fungo morto"
|
||||||
@ -386,6 +374,51 @@ msgstr "Fungo morto"
|
|||||||
msgid "Cavern Fungi"
|
msgid "Cavern Fungi"
|
||||||
msgstr "Funghi di caverna"
|
msgstr "Funghi di caverna"
|
||||||
|
|
||||||
|
#: features\flowstone_nodes.lua:19
|
||||||
|
#: features\flowstone_nodes.lua:39
|
||||||
|
msgid "Dry Dripstone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: features\flowstone_nodes.lua:28
|
||||||
|
msgid "Dry Flowstone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: features\flowstone_nodes.lua:49
|
||||||
|
msgid "Wet Flowstone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: features\flowstone_nodes.lua:60
|
||||||
|
msgid "Icicle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: features\glow_crystals.lua:7
|
||||||
|
msgid "Flawless Mese Block"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: features\glow_water.lua:6
|
||||||
|
msgid "Mese Water"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: features\glow_water.lua:55
|
||||||
|
msgid "Flowing Mese Water"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: features\glow_water.lua:160
|
||||||
|
msgid "Glow Water Bucket"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: features\glow_worms.lua:6
|
||||||
|
msgid "Glow Worms"
|
||||||
|
msgstr "Vermi luminosi"
|
||||||
|
|
||||||
|
#: features\ground_cover.lua:11
|
||||||
|
msgid "Dirt With Cave Moss"
|
||||||
|
msgstr "Terra con muschio di caverna"
|
||||||
|
|
||||||
|
#: features\ground_cover.lua:52
|
||||||
|
msgid "Cobblestone With Floor Fungus"
|
||||||
|
msgstr "Ciottoli con funghi del terreno"
|
||||||
|
|
||||||
#: plants\cave_wheat.lua:10
|
#: plants\cave_wheat.lua:10
|
||||||
#: plants\cave_wheat.lua:69
|
#: plants\cave_wheat.lua:69
|
||||||
msgid "Cave Wheat"
|
msgid "Cave Wheat"
|
||||||
@ -661,12 +694,12 @@ msgstr "Tubo di galleria"
|
|||||||
msgid "Tunnel Tube Plies"
|
msgid "Tunnel Tube Plies"
|
||||||
msgstr "Strati di tubo di galleria"
|
msgstr "Strati di tubo di galleria"
|
||||||
|
|
||||||
#: trees\tunnel_tube.lua:79
|
#: trees\tunnel_tube.lua:82
|
||||||
#: trees\tunnel_tube.lua:135
|
#: trees\tunnel_tube.lua:138
|
||||||
#: trees\tunnel_tube.lua:157
|
#: trees\tunnel_tube.lua:158
|
||||||
msgid "Tunnel Tube Fruiting Body"
|
msgid "Tunnel Tube Fruiting Body"
|
||||||
msgstr "Corpo fruttifero del tubo di galleria"
|
msgstr "Corpo fruttifero del tubo di galleria"
|
||||||
|
|
||||||
#: trees\tunnel_tube.lua:187
|
#: trees\tunnel_tube.lua:189
|
||||||
msgid "Tunnel Tube Spawn"
|
msgid "Tunnel Tube Spawn"
|
||||||
msgstr "Prole di tubo di galleria"
|
msgstr "Prole di tubo di galleria"
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-04-19 19:58-0600\n"
|
"POT-Creation-Date: 2018-05-18 01:34-0600\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -365,18 +365,6 @@ msgid ""
|
|||||||
"material."
|
"material."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: glow_worms.lua:6
|
|
||||||
msgid "Glow Worms"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ground_cover.lua:11
|
|
||||||
msgid "Dirt With Cave Moss"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ground_cover.lua:52
|
|
||||||
msgid "Cobblestone With Floor Fungus"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: plants.lua:10
|
#: plants.lua:10
|
||||||
msgid "Dead Fungus"
|
msgid "Dead Fungus"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -385,6 +373,51 @@ msgstr ""
|
|||||||
msgid "Cavern Fungi"
|
msgid "Cavern Fungi"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: features\flowstone_nodes.lua:19
|
||||||
|
#: features\flowstone_nodes.lua:39
|
||||||
|
msgid "Dry Dripstone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: features\flowstone_nodes.lua:28
|
||||||
|
msgid "Dry Flowstone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: features\flowstone_nodes.lua:49
|
||||||
|
msgid "Wet Flowstone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: features\flowstone_nodes.lua:60
|
||||||
|
msgid "Icicle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: features\glow_crystals.lua:7
|
||||||
|
msgid "Flawless Mese Block"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: features\glow_water.lua:6
|
||||||
|
msgid "Mese Water"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: features\glow_water.lua:55
|
||||||
|
msgid "Flowing Mese Water"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: features\glow_water.lua:160
|
||||||
|
msgid "Glow Water Bucket"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: features\glow_worms.lua:6
|
||||||
|
msgid "Glow Worms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: features\ground_cover.lua:11
|
||||||
|
msgid "Dirt With Cave Moss"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: features\ground_cover.lua:52
|
||||||
|
msgid "Cobblestone With Floor Fungus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: plants\cave_wheat.lua:10
|
#: plants\cave_wheat.lua:10
|
||||||
#: plants\cave_wheat.lua:69
|
#: plants\cave_wheat.lua:69
|
||||||
msgid "Cave Wheat"
|
msgid "Cave Wheat"
|
||||||
@ -660,12 +693,12 @@ msgstr ""
|
|||||||
msgid "Tunnel Tube Plies"
|
msgid "Tunnel Tube Plies"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: trees\tunnel_tube.lua:79
|
#: trees\tunnel_tube.lua:82
|
||||||
#: trees\tunnel_tube.lua:135
|
#: trees\tunnel_tube.lua:138
|
||||||
#: trees\tunnel_tube.lua:157
|
#: trees\tunnel_tube.lua:158
|
||||||
msgid "Tunnel Tube Fruiting Body"
|
msgid "Tunnel Tube Fruiting Body"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: trees\tunnel_tube.lua:187
|
#: trees\tunnel_tube.lua:189
|
||||||
msgid "Tunnel Tube Spawn"
|
msgid "Tunnel Tube Spawn"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
BIN
textures/dfcaverns_glow_mese.png
Normal file
BIN
textures/dfcaverns_glow_mese.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 330 B |
@ -21,3 +21,6 @@ dfcaverns_bread - derived from farming
|
|||||||
dfcaverns_pig_tail_thread - copied from farming
|
dfcaverns_pig_tail_thread - copied from farming
|
||||||
dfcaverns_sugar - derived from farming
|
dfcaverns_sugar - derived from farming
|
||||||
dfcaverns_spore_tree_spores, dfcaverns_cave_wheat_seed, dfcaverns_pig_tail_seed - all derived from farming wheat seed
|
dfcaverns_spore_tree_spores, dfcaverns_cave_wheat_seed, dfcaverns_pig_tail_seed - all derived from farming wheat seed
|
||||||
|
|
||||||
|
|
||||||
|
dfcaverns_glow_mese - from caverealms glow_mese
|
Loading…
Reference in New Issue
Block a user