mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2025-01-12 19:20:27 +01:00
doc update, a bit more diversity to black cap caverns
This commit is contained in:
parent
84cbda2feb
commit
cd433bb8eb
@ -10,6 +10,7 @@ local c_stone = minetest.get_content_id("default:stone")
|
||||
local c_cobble = minetest.get_content_id("default:cobble")
|
||||
local c_mossycobble = minetest.get_content_id("default:mossycobble")
|
||||
local c_dirt = minetest.get_content_id("default:dirt")
|
||||
local c_stone_with_coal = minetest.get_content_id("default:stone_with_coal")
|
||||
|
||||
local c_dirt_moss = minetest.get_content_id("dfcaverns:dirt_with_cave_moss")
|
||||
local c_cobble_fungus = minetest.get_content_id("dfcaverns:cobble_with_floor_fungus")
|
||||
@ -109,7 +110,7 @@ local level_2_black_cap_floor = function(area, data, ai, vi, bi, param2_data)
|
||||
end
|
||||
|
||||
if math.random() < 0.25 then
|
||||
data[bi] = c_dirt
|
||||
data[bi] = c_stone_with_coal
|
||||
else
|
||||
data[bi] = c_cobble_fungus
|
||||
end
|
||||
@ -259,6 +260,20 @@ local level_2_dry_ceiling = function(area, data, ai, vi, bi, param2_data)
|
||||
end
|
||||
end
|
||||
|
||||
local level_2_black_cap_ceiling = function(area, data, ai, vi, bi, param2_data)
|
||||
if data[ai] ~= c_stone then
|
||||
return
|
||||
end
|
||||
local drip_rand = subterrane:vertically_consistent_random(vi, area)
|
||||
if drip_rand < 0.075 then
|
||||
local param2 = drip_rand*1000000 - math.floor(drip_rand*1000000/4)*4
|
||||
local height = math.floor(drip_rand/0.075 * 5)
|
||||
subterrane:stalagmite(vi, area, data, param2_data, param2, -height, dfcaverns.dry_stalagmite_ids)
|
||||
elseif math.random() < 0.25 then
|
||||
data[ai] = c_stone_with_coal
|
||||
end
|
||||
end
|
||||
|
||||
local level_2_crystal_ceiling = function(area, data, ai, vi, bi, param2_data)
|
||||
if data[ai] ~= c_stone then
|
||||
return
|
||||
@ -498,7 +513,7 @@ minetest.register_biome({
|
||||
y_max = subsea_level,
|
||||
heat_point = 50,
|
||||
humidity_point = 20,
|
||||
_subterrane_ceiling_decor = level_2_dry_ceiling,
|
||||
_subterrane_ceiling_decor = level_2_black_cap_ceiling,
|
||||
_subterrane_floor_decor = level_2_black_cap_floor,
|
||||
_subterrane_fill_node = c_air,
|
||||
_subterrane_column_node = c_dry_flowstone,
|
||||
@ -513,7 +528,7 @@ minetest.register_biome({
|
||||
y_max = dfcaverns.config.level1_min,
|
||||
heat_point = 50,
|
||||
humidity_point = 20,
|
||||
_subterrane_ceiling_decor = level_2_dry_ceiling,
|
||||
_subterrane_ceiling_decor = level_2_black_cap_ceiling,
|
||||
_subterrane_floor_decor = level_2_black_cap_floor,
|
||||
_subterrane_fill_node = c_air,
|
||||
_subterrane_column_node = c_dry_flowstone,
|
||||
|
@ -12,6 +12,7 @@ local c_cobble = minetest.get_content_id("default:cobble")
|
||||
local c_mossycobble = minetest.get_content_id("default:mossycobble")
|
||||
local c_dirt = minetest.get_content_id("default:dirt")
|
||||
local c_sand = minetest.get_content_id("default:sand")
|
||||
local c_stone_with_coal = minetest.get_content_id("default:stone_with_coal")
|
||||
|
||||
local c_silver_sand = minetest.get_content_id("default:silver_sand")
|
||||
local c_snow = minetest.get_content_id("default:snow")
|
||||
@ -143,6 +144,21 @@ local level_3_dry_ceiling = function(area, data, ai, vi, bi, param2_data)
|
||||
end
|
||||
end
|
||||
|
||||
local level_3_black_cap_ceiling = function(area, data, ai, vi, bi, param2_data)
|
||||
if data[ai] ~= c_stone then
|
||||
return
|
||||
end
|
||||
local drip_rand = subterrane:vertically_consistent_random(vi, area)
|
||||
if drip_rand < 0.075 then
|
||||
local param2 = drip_rand*1000000 - math.floor(drip_rand*1000000/4)*4
|
||||
local height = math.floor(drip_rand/0.075 * 5)
|
||||
subterrane:stalagmite(vi, area, data, param2_data, param2, -height, dfcaverns.dry_stalagmite_ids)
|
||||
elseif math.random() < 0.25 then
|
||||
data[ai] = c_stone_with_coal
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
local level_3_crystal_ceiling = function(area, data, ai, vi, bi, param2_data)
|
||||
if data[ai] ~= c_stone then
|
||||
return
|
||||
@ -173,7 +189,7 @@ local level_3_blood_thorn_floor = function(area, data, ai, vi, bi, param2_data)
|
||||
|
||||
local drip_rand = subterrane:vertically_consistent_random(vi, area)
|
||||
if math.random() < 0.1 then
|
||||
dfcaverns.place_shrub(data, vi, param2_data, {c_sweet_pod, c_sweet_pod, c_plump_helmet, c_dead_fungus, c_dead_fungus, c_dead_fungus, c_cavern_fungi})
|
||||
dfcaverns.place_shrub(data, vi, param2_data, {c_sweet_pod, c_sweet_pod, c_dead_fungus, c_dead_fungus, c_dead_fungus, c_cavern_fungi})
|
||||
elseif drip_rand < 0.05 then
|
||||
local param2 = drip_rand*1000000 - math.floor(drip_rand*1000000/4)*4
|
||||
local height = math.floor(drip_rand/0.05 * 5)
|
||||
@ -201,7 +217,7 @@ local level_3_nether_cap_floor = function(area, data, ai, vi, bi, param2_data)
|
||||
local drip_rand = subterrane:vertically_consistent_random(vi, area)
|
||||
|
||||
if math.random() < 0.01 and data[bi] ~= c_ice then
|
||||
dfcaverns.place_shrub(data, vi, param2_data, {c_dimple_cup, c_plump_helmet, c_dead_fungus, c_dead_fungus, c_dead_fungus, c_cavern_fungi})
|
||||
dfcaverns.place_shrub(data, vi, param2_data, {c_dimple_cup, c_dead_fungus, c_dead_fungus, c_dead_fungus, c_cavern_fungi})
|
||||
elseif drip_rand < 0.1 then
|
||||
local param2 = drip_rand*1000000 - math.floor(drip_rand*1000000/4)*4
|
||||
local height = math.floor(drip_rand/0.1 * 5)
|
||||
@ -269,7 +285,7 @@ local level_3_black_cap_floor = function(area, data, ai, vi, bi, param2_data)
|
||||
end
|
||||
|
||||
if math.random() < 0.25 then
|
||||
data[bi] = c_dirt
|
||||
data[bi] = c_stone_with_coal
|
||||
else
|
||||
data[bi] = c_cobble_fungus
|
||||
end
|
||||
@ -303,7 +319,7 @@ local level_3_goblin_cap_floor = function(area, data, ai, vi, bi, param2_data)
|
||||
local drip_rand = subterrane:vertically_consistent_random(vi, area)
|
||||
|
||||
if math.random() < 0.1 then
|
||||
dfcaverns.place_shrub(data, vi, param2_data, {c_plump_helmet, c_sweet_pod, c_sweet_pod, c_quarry_bush, c_dead_fungus, c_cavern_fungi})
|
||||
dfcaverns.place_shrub(data, vi, param2_data, {c_plump_helmet, c_plump_helmet, c_sweet_pod, c_dead_fungus, c_cavern_fungi})
|
||||
elseif drip_rand < 0.1 then
|
||||
local param2 = drip_rand*1000000 - math.floor(drip_rand*1000000/4)*4
|
||||
local height = math.floor(drip_rand/0.1 * 5)
|
||||
@ -543,7 +559,7 @@ minetest.register_biome({
|
||||
y_max = subsea_level,
|
||||
heat_point = 50,
|
||||
humidity_point = 15,
|
||||
_subterrane_ceiling_decor = level_3_dry_ceiling,
|
||||
_subterrane_ceiling_decor = level_3_black_cap_ceiling,
|
||||
_subterrane_floor_decor = level_3_black_cap_floor,
|
||||
_subterrane_fill_node = c_air,
|
||||
_subterrane_column_node = c_dry_flowstone,
|
||||
@ -560,7 +576,7 @@ minetest.register_biome({
|
||||
y_max = dfcaverns.config.level2_min,
|
||||
heat_point = 50,
|
||||
humidity_point = 15,
|
||||
_subterrane_ceiling_decor = level_3_dry_ceiling,
|
||||
_subterrane_ceiling_decor = level_3_black_cap_ceiling,
|
||||
_subterrane_floor_decor = level_3_black_cap_floor,
|
||||
_subterrane_fill_node = c_air,
|
||||
_subterrane_column_node = c_dry_flowstone,
|
||||
|
22
doc.lua
22
doc.lua
@ -16,13 +16,31 @@ dfcaverns.doc.roast_desc = S("Four finely minced ingredients combine into a roas
|
||||
dfcaverns.doc.roast_usage = nil
|
||||
|
||||
dfcaverns.doc.cave_moss_desc = S("Cave moss is technically a form of mold, but fortunately a relatively benign one given its ubiquity. Its fibers form a tough but springy mat over the surface of any organic-rich soil that accumulates deep underground.")
|
||||
dfcaverns.doc.cave_moss_usage = S("Cave moss has no known uses. It dies when exposed to bright light sources.")
|
||||
dfcaverns.doc.cave_moss_usage = S("Cave moss has no known uses aside from the faint glow it emits. It dies when exposed to bright light sources such as the Sun.")
|
||||
dfcaverns.doc.floor_fungus_desc = S("Floor fungus produces a thin, slick film that spreads through the cracks of broken rock. Its ability to subsist on the tiniest traces of nutrients means it's found in relatively harsh underground environments.")
|
||||
dfcaverns.doc.floor_fungus_usage = S("Floor fungus has no known uses. It can penetrate deeply into cobblestone constructions if an infestation gets hold, but it is difficult to transport and is inhibited by light so it hasn't spread beyond the deep caverns.")
|
||||
|
||||
dfcaverns.doc.glow_worms_desc = S("Glistening strings of silk hang from the ceilings of some of the larger caverns, lit by the millions of tiny bioluminescent worms that spun them. Glow worms prey on the insects they lure and entangle with their faux starry sky - and sometimes the occasional bat or other larger flying beast.")
|
||||
dfcaverns.doc.glow_worms_usage = S("Glow worms can be harvested and used as a source of light but they die when exposed to light significantly brighter than themselves or when immersed in water. A colony of glow worms hung in a hospitable environment will undergo a modest amount of growth, allowing it to be divided and propagated.")
|
||||
|
||||
|
||||
dfcaverns.doc.flowstone_desc = S("Flowstone is a carbonate-rich rock formation deposited by flowing water. It consists of minerals that the water dissolved earlier as it widens cracks and fissures into caves.")
|
||||
dfcaverns.doc.flowstone_usage = S("Aside from the aesthetic beauty of its formations flowstone has no special properties or uses.")
|
||||
dfcaverns.doc.dripstone_desc = S("The iconic stalactites and stalagmites found in caverns are composed of flowstone (or 'dripstone' in the case of these formations). Moist dripstone is still undergoing growth, whereas dry dripstone is found in 'dead' caverns once the source of water that created them ceases.")
|
||||
dfcaverns.doc.dripstone_usage = S("Although stalagmites are blunter than the stalactites above them, they can cause extra damage to the unwary caver who falls on them.")
|
||||
dfcaverns.doc.icicle_desc = S("Ice formed by water dripping slowly into a cold environment, icicles tend to be exceptionally pure and clear.")
|
||||
dfcaverns.doc.icicle_usage = S("Falling onto an icicle is particularly damaging.")
|
||||
|
||||
|
||||
dfcaverns.doc.glow_mese_desc = S("Deep in the infernal conditions of the magma sea, over the course of millions of years, mese crystals grow into flawless blocks that glow bright with strange energies.")
|
||||
dfcaverns.doc.glow_mese_usage = S("These blocks can be broken down into a large number of mese crystals, but cannot be artificially reassembled.")
|
||||
|
||||
dfcaverns.doc.glow_ruby_ore_desc = S("Large, dry caverns deep underground are well suited to aeons-long processes that concentrate crystalline substances in their walls. This rock is riddled with veins of the stuff.")
|
||||
dfcaverns.doc.glow_ruby_ore_usage = S("Aside from its aesthetic value this rock has no particular use.")
|
||||
|
||||
dfcaverns.doc.big_crystal_desc = S("Monolithic crystals of this size form only over extremely long periods deep underground, in large long-lived cavities that allow them room to grow. Water and the life it hosts tend to disrupt the formation process of these crystals so they're only found in dry environments.")
|
||||
dfcaverns.doc.big_crystal_usage = S("Aside from its aesthetic value this crystal has no particular use.")
|
||||
|
||||
-- Plants
|
||||
|
||||
dfcaverns.doc.dead_fungus_desc = S("Whatever this fungus was in life, it is now dead.")
|
||||
@ -70,7 +88,7 @@ dfcaverns.doc.sweet_pod_syrup_usage = S("Too strong and thick to drink straight,
|
||||
|
||||
-- Trees
|
||||
dfcaverns.doc.black_cap_desc = S("The dense black wood of these mushrooms is heavy and hard to work with, and has few remarkable properties.")
|
||||
dfcaverns.doc.black_cap_usage = S("Aside from the artistic applications of its particularly dark color, black cap wood is a long-burning fuel source that's as good as coal for some applications.")
|
||||
dfcaverns.doc.black_cap_usage = S("Aside from the artistic applications of its particularly dark color, black cap wood is a long-burning fuel source that's as good as coal for some applications. Black cap gills are oily and make for excellent torch fuel.")
|
||||
|
||||
dfcaverns.doc.blood_thorn_desc = S("Blood thorns are the most vicious of underground flora, as befits their harsh environments. Found only in hot, dry caverns with sandy soil far from the surface world's organic bounty, blood thorns seek to supplement their nutrient supply with wickedly barbed hollow spines that actively drain fluids from whatever stray plant or creature they might impale.")
|
||||
dfcaverns.doc.blood_thorn_usage = S("When harvested, the central stalk of a blood thorn can be cut into planks and used as wood. It has a purple-red hue that may or may not appeal, depending on one's artistic tastes.")
|
||||
|
@ -17,6 +17,8 @@ minetest.register_alias("subterrane:dry_flowstone", "dfcaverns:dry_flowstone")
|
||||
|
||||
subterrane.register_stalagmite_nodes("dfcaverns:dry_stal", {
|
||||
description = S("Dry Dripstone"),
|
||||
_doc_items_longdesc = dfcaverns.doc.dripstone_desc,
|
||||
_doc_items_usagehelp = dfcaverns.doc.dripstone_usage,
|
||||
tiles = {
|
||||
"default_stone.png^[brighten",
|
||||
},
|
||||
@ -26,6 +28,8 @@ subterrane.register_stalagmite_nodes("dfcaverns:dry_stal", {
|
||||
|
||||
minetest.register_node("dfcaverns:dry_flowstone", {
|
||||
description = S("Dry Flowstone"),
|
||||
_doc_items_longdesc = dfcaverns.doc.flowstone_desc,
|
||||
_doc_items_usagehelp = dfcaverns.doc.flowstone_usage,
|
||||
tiles = {"default_stone.png^[brighten"},
|
||||
groups = {cracky = 3, stone = 1},
|
||||
is_ground_content = true,
|
||||
@ -36,7 +40,9 @@ minetest.register_node("dfcaverns:dry_flowstone", {
|
||||
-----------------------------------------------
|
||||
|
||||
subterrane.register_stalagmite_nodes("dfcaverns:wet_stal", {
|
||||
description = S("Dry Dripstone"),
|
||||
description = S("Wet Dripstone"),
|
||||
_doc_items_longdesc = dfcaverns.doc.dripstone_desc,
|
||||
_doc_items_usagehelp = dfcaverns.doc.dripstone_usage,
|
||||
tiles = {
|
||||
"default_stone.png^[brighten^dfcaverns_dripstone_streaks.png",
|
||||
},
|
||||
@ -47,6 +53,8 @@ subterrane.register_stalagmite_nodes("dfcaverns:wet_stal", {
|
||||
|
||||
minetest.register_node("dfcaverns:wet_flowstone", {
|
||||
description = S("Wet Flowstone"),
|
||||
_doc_items_longdesc = dfcaverns.doc.flowstone_desc,
|
||||
_doc_items_usagehelp = dfcaverns.doc.flowstone_usage,
|
||||
tiles = {"default_stone.png^[brighten^dfcaverns_dripstone_streaks.png"},
|
||||
groups = {cracky = 3, stone = 1, subterrane_wet_dripstone = 1},
|
||||
is_ground_content = true,
|
||||
@ -58,6 +66,8 @@ minetest.register_node("dfcaverns:wet_flowstone", {
|
||||
|
||||
subterrane.register_stalagmite_nodes("dfcaverns:icicle", {
|
||||
description = S("Icicle"),
|
||||
_doc_items_longdesc = dfcaverns.doc.icicle_desc,
|
||||
_doc_items_usagehelp = dfcaverns.doc.icicle_usage,
|
||||
tiles = {
|
||||
"default_ice.png",
|
||||
},
|
||||
|
@ -5,6 +5,8 @@ local S, NS = dofile(MP.."/intllib.lua")
|
||||
--glowing mese crystal blocks
|
||||
minetest.register_node("dfcaverns:glow_mese", {
|
||||
description = S("Flawless Mese Block"),
|
||||
_doc_items_longdesc = dfcaverns.doc.glow_mese_desc,
|
||||
_doc_items_usagehelp = dfcaverns.doc.glow_mese_usage,
|
||||
tiles = {"dfcaverns_glow_mese.png"},
|
||||
is_ground_content = true,
|
||||
groups = {cracky=3},
|
||||
@ -25,6 +27,8 @@ minetest.register_craft({
|
||||
|
||||
minetest.register_node("dfcaverns:glow_ruby_ore", {
|
||||
description = S("Crystal Vein"),
|
||||
_doc_items_longdesc = dfcaverns.doc.glow_ruby_ore_desc,
|
||||
_doc_items_usagehelp = dfcaverns.doc.glow_ruby_ore_usage,
|
||||
tiles = {"dfcaverns_glow_ruby_ore.png"},
|
||||
is_ground_content = true,
|
||||
groups = {cracky=2},
|
||||
@ -34,6 +38,8 @@ minetest.register_node("dfcaverns:glow_ruby_ore", {
|
||||
|
||||
minetest.register_node("dfcaverns:big_crystal", {
|
||||
description = S("Giant Crystal"),
|
||||
_doc_items_longdesc = dfcaverns.doc.big_crystal_desc,
|
||||
_doc_items_usagehelp = dfcaverns.doc.big_crystal_usage,
|
||||
drawtype = "mesh",
|
||||
mesh = "hex_crystal_big.obj",
|
||||
tiles = {
|
||||
@ -59,6 +65,8 @@ minetest.register_node("dfcaverns:big_crystal", {
|
||||
|
||||
minetest.register_node("dfcaverns:med_crystal", {
|
||||
description = S("Big Crystal"),
|
||||
_doc_items_longdesc = dfcaverns.doc.big_crystal_desc,
|
||||
_doc_items_usagehelp = dfcaverns.doc.big_crystal_usage,
|
||||
drawtype = "mesh",
|
||||
mesh = "hex_crystal_med.obj",
|
||||
tiles = {
|
||||
@ -85,6 +93,8 @@ minetest.register_node("dfcaverns:med_crystal", {
|
||||
|
||||
minetest.register_node("dfcaverns:big_crystal_30", {
|
||||
description = S("Giant Crystal"),
|
||||
_doc_items_longdesc = dfcaverns.doc.big_crystal_desc,
|
||||
_doc_items_usagehelp = dfcaverns.doc.big_crystal_usage,
|
||||
drawtype = "mesh",
|
||||
mesh = "hex_crystal_30_big.obj",
|
||||
tiles = {
|
||||
@ -134,6 +144,8 @@ minetest.register_node("dfcaverns:big_crystal_30", {
|
||||
|
||||
minetest.register_node("dfcaverns:med_crystal_30", {
|
||||
description = S("Big Crystal"),
|
||||
_doc_items_longdesc = dfcaverns.doc.big_crystal_desc,
|
||||
_doc_items_usagehelp = dfcaverns.doc.big_crystal_usage,
|
||||
drawtype = "mesh",
|
||||
mesh = "hex_crystal_30_med.obj",
|
||||
tiles = {
|
||||
@ -168,6 +180,8 @@ minetest.register_node("dfcaverns:med_crystal_30", {
|
||||
|
||||
minetest.register_node("dfcaverns:big_crystal_30_45", {
|
||||
description = S("Giant Crystal"),
|
||||
_doc_items_longdesc = dfcaverns.doc.big_crystal_desc,
|
||||
_doc_items_usagehelp = dfcaverns.doc.big_crystal_usage,
|
||||
drawtype = "mesh",
|
||||
mesh = "hex_crystal_30_45_big.obj",
|
||||
tiles = {
|
||||
@ -203,6 +217,8 @@ minetest.register_node("dfcaverns:big_crystal_30_45", {
|
||||
|
||||
minetest.register_node("dfcaverns:med_crystal_30_45", {
|
||||
description = S("Big Crystal"),
|
||||
_doc_items_longdesc = dfcaverns.doc.big_crystal_desc,
|
||||
_doc_items_usagehelp = dfcaverns.doc.big_crystal_usage,
|
||||
drawtype = "mesh",
|
||||
mesh = "hex_crystal_30_45_med.obj",
|
||||
tiles = {
|
||||
|
218
locale/it.po
218
locale/it.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: dfcaverns module's Italian locale\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-05-20 00:42-0600\n"
|
||||
"POT-Creation-Date: 2018-05-21 13:21-0600\n"
|
||||
"PO-Revision-Date: 2017-08-17 23:01+0100\n"
|
||||
"Last-Translator: H4mlet <h4mlet@riseup.net>\n"
|
||||
"Language-Team: ITALIANO\n"
|
||||
@ -45,7 +45,8 @@ msgstr ""
|
||||
|
||||
#: doc.lua:19
|
||||
msgid ""
|
||||
"Cave moss has no known uses. It dies when exposed to bright light sources."
|
||||
"Cave moss has no known uses aside from the faint glow it emits. It dies when "
|
||||
"exposed to bright light sources such as the Sun."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:20
|
||||
@ -78,106 +79,179 @@ msgid ""
|
||||
"a modest amount of growth, allowing it to be divided and propagated."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:27
|
||||
msgid ""
|
||||
"Flowstone is a carbonate-rich rock formation deposited by flowing water. It "
|
||||
"consists of minerals that the water dissolved earlier as it widens cracks "
|
||||
"and fissures into caves."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:28
|
||||
msgid "Whatever this fungus was in life, it is now dead."
|
||||
msgid ""
|
||||
"Aside from the aesthetic beauty of its formations flowstone has no special "
|
||||
"properties or uses."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:29
|
||||
msgid ""
|
||||
"The iconic stalactites and stalagmites found in caverns are composed of "
|
||||
"flowstone (or 'dripstone' in the case of these formations). Moist dripstone "
|
||||
"is still undergoing growth, whereas dry dripstone is found in 'dead' caverns "
|
||||
"once the source of water that created them ceases."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:30
|
||||
msgid ""
|
||||
"Although stalagmites are blunter than the stalactites above them, they can "
|
||||
"cause extra damage to the unwary caver who falls on them."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:31
|
||||
msgid ""
|
||||
"Ice formed by water dripping slowly into a cold environment, icicles tend to "
|
||||
"be exceptionally pure and clear."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:32
|
||||
msgid "Falling onto an icicle is particularly damaging."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:35
|
||||
msgid ""
|
||||
"Deep in the infernal conditions of the magma sea, over the course of "
|
||||
"millions of years, mese crystals grow into flawless blocks that glow bright "
|
||||
"with strange energies."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:36
|
||||
msgid ""
|
||||
"These blocks can be broken down into a large number of mese crystals, but "
|
||||
"cannot be artificially reassembled."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:38
|
||||
msgid ""
|
||||
"Large, dry caverns deep underground are well suited to aeons-long processes "
|
||||
"that concentrate crystalline substances in their walls. This rock is riddled "
|
||||
"with veins of the stuff."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:39
|
||||
msgid "Aside from its aesthetic value this rock has no particular use."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:41
|
||||
msgid ""
|
||||
"Monolithic crystals of this size form only over extremely long periods deep "
|
||||
"underground, in large long-lived cavities that allow them room to grow. "
|
||||
"Water and the life it hosts tend to disrupt the formation process of these "
|
||||
"crystals so they're only found in dry environments."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:42
|
||||
msgid "Aside from its aesthetic value this crystal has no particular use."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:46
|
||||
msgid "Whatever this fungus was in life, it is now dead."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:47
|
||||
msgid ""
|
||||
"Dead fungus quickly decays into an unrecognizable mess. It can be used as "
|
||||
"weak fuel or terrible decor."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:31
|
||||
#: doc.lua:49
|
||||
msgid ""
|
||||
"A species of lavender mushroom ubiquitous in caves that is most notable for "
|
||||
"the soft bioluminescence it produces."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:32
|
||||
#: doc.lua:50
|
||||
msgid ""
|
||||
"This mushroom is inedible but continues producing modest levels of light "
|
||||
"long after it's picked."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:34
|
||||
#: doc.lua:52
|
||||
msgid ""
|
||||
"Cave wheat is literally a breed of grain-producing grass that somehow lost "
|
||||
"its ability to photosynthesize and adapted to a more fungal style of life."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:35
|
||||
#: doc.lua:53
|
||||
msgid ""
|
||||
"Like its surface cousin, cave wheat produces grain that can be ground into a "
|
||||
"form of flour."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:36
|
||||
#: doc.lua:54
|
||||
msgid "Cave wheat seed ground into a powder suitable for cooking."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:37
|
||||
#: doc.lua:55
|
||||
msgid ""
|
||||
"When baked alone it forms an edible bread, but it combines well with other "
|
||||
"more flavorful ingredients."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:38
|
||||
#: doc.lua:56
|
||||
msgid ""
|
||||
"Bread baked from cave wheat flour is tough and durable. A useful ration for "
|
||||
"long expeditions."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:39
|
||||
#: doc.lua:57
|
||||
msgid "It's not tasty, but it keeps you going."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:41
|
||||
#: doc.lua:59
|
||||
msgid ""
|
||||
"The distinctive midnight-blue caps of these mushrooms are inverted, exposing "
|
||||
"their gills to any breeze that might pass, and have dimpled edges that give "
|
||||
"them their name."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:42
|
||||
#: doc.lua:60
|
||||
msgid ""
|
||||
"Dimple cups can be dried, ground, and processed to extract a deep blue dye."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:44
|
||||
#: doc.lua:62
|
||||
msgid ""
|
||||
"Pig tails are a fibrous fungal growth that's most notable for its twisting "
|
||||
"stalks. In a mature stand of pig tails the helical stalks intertwine into a "
|
||||
"dense mesh."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:45
|
||||
#: doc.lua:63
|
||||
msgid "Pig tail stalks can be processed to extract fibers useful as thread."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:46
|
||||
#: doc.lua:64
|
||||
msgid "Threads of pig tail fiber."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:47
|
||||
#: doc.lua:65
|
||||
msgid ""
|
||||
"A crafting item that can be woven into textiles and other similar items."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:49
|
||||
#: doc.lua:67
|
||||
msgid ""
|
||||
"Plump helmets are a thick, fleshy mushroom that's edible picked straight "
|
||||
"from the ground. They form a staple diet for both lost cave explorers and "
|
||||
"the fauna that preys on them."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:50
|
||||
#: doc.lua:68
|
||||
msgid ""
|
||||
"While they can be eaten fresh, they can be monotonous fare and are perhaps "
|
||||
"better appreciated as part of a more complex prepared dish."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:52
|
||||
#: doc.lua:70
|
||||
msgid ""
|
||||
"A rare breed of fungus from deep underground that produces a bushy cluster "
|
||||
"of rumpled gray 'blades'. The biological function of these blades is not "
|
||||
@ -185,24 +259,24 @@ msgid ""
|
||||
"the blade's base."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:53
|
||||
#: doc.lua:71
|
||||
msgid ""
|
||||
"Quarry bush leaves and nodules (called 'rock nuts') can be harvested and are "
|
||||
"edible with processing."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:54
|
||||
#: doc.lua:72
|
||||
msgid ""
|
||||
"The dried blades of a quarry bush add a welcome zing to recipes containing "
|
||||
"otherwise-bland subterranean foodstuffs, but they're too spicy to be eaten "
|
||||
"on their own."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:55
|
||||
#: doc.lua:73
|
||||
msgid "Quarry bush leaves can be used as an ingredient in foodstuffs."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:57
|
||||
#: doc.lua:75
|
||||
msgid ""
|
||||
"Sweet pods grow in rich soil, and once they reach maturity they draw that "
|
||||
"supply of nutrients up to concentrate it in their fruiting bodies. They turn "
|
||||
@ -210,52 +284,52 @@ msgid ""
|
||||
"the sugars they contain."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:60
|
||||
#: doc.lua:78
|
||||
msgid "When milled, sweet pods produce a granular sugary substance."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:62
|
||||
#: doc.lua:80
|
||||
msgid "When dried in an oven, sweet pods produce a granular sugary substance."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:64
|
||||
#: doc.lua:82
|
||||
msgid "Crushing them in a bucket squeezes out a flavorful syrup."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:66
|
||||
#: doc.lua:84
|
||||
msgid "Sweet pod sugar has a pink tint to it."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:67
|
||||
#: doc.lua:85
|
||||
msgid ""
|
||||
"Too sweet to be eaten directly, it makes an excellent ingredient in food "
|
||||
"recipes."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:68
|
||||
#: doc.lua:86
|
||||
msgid "Sweet pod syrup is thick and flavorful."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:69
|
||||
#: doc.lua:87
|
||||
msgid ""
|
||||
"Too strong and thick to drink straight, sweet pod syrup is useful in food "
|
||||
"recipes."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:72
|
||||
#: doc.lua:90
|
||||
msgid ""
|
||||
"The dense black wood of these mushrooms is heavy and hard to work with, and "
|
||||
"has few remarkable properties."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:73
|
||||
#: doc.lua:91
|
||||
msgid ""
|
||||
"Aside from the artistic applications of its particularly dark color, black "
|
||||
"cap wood is a long-burning fuel source that's as good as coal for some "
|
||||
"applications."
|
||||
"applications. Black cap gills are oily and make for excellent torch fuel."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:75
|
||||
#: doc.lua:93
|
||||
msgid ""
|
||||
"Blood thorns are the most vicious of underground flora, as befits their "
|
||||
"harsh environments. Found only in hot, dry caverns with sandy soil far from "
|
||||
@ -264,14 +338,14 @@ msgid ""
|
||||
"fluids from whatever stray plant or creature they might impale."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:76
|
||||
#: doc.lua:94
|
||||
msgid ""
|
||||
"When harvested, the central stalk of a blood thorn can be cut into planks "
|
||||
"and used as wood. It has a purple-red hue that may or may not appeal, "
|
||||
"depending on one's artistic tastes."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:77
|
||||
#: doc.lua:95
|
||||
msgid ""
|
||||
"The spikes of a blood thorn can actually remain living long after they're "
|
||||
"severed from their parent stalk, a testament to their tenacity. As long as "
|
||||
@ -279,39 +353,39 @@ msgid ""
|
||||
"puncture, though they don't grow."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:78
|
||||
#: doc.lua:96
|
||||
msgid ""
|
||||
"Living blood thorn spikes remain harmful to creatures that touch them. If "
|
||||
"killed by bright light, they cause only passive damage to creatures that "
|
||||
"fall on them (as one would expect from an enormous spike)."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:80
|
||||
#: doc.lua:98
|
||||
msgid ""
|
||||
"Thin, irregular layers of spore-producing 'shelves' surround the strong "
|
||||
"central stalk of the mighty Fungiwood."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:81
|
||||
#: doc.lua:99
|
||||
msgid ""
|
||||
"Fungiwood stalk is strong and very fine-grained, making smooth yellow-tinted "
|
||||
"lumber when cut. Fungiwood shelf is too fragile to be much use as anything "
|
||||
"other than fuel."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:83
|
||||
#: doc.lua:101
|
||||
msgid ""
|
||||
"Massive but squat, mature goblin cap mushrooms are the size of small "
|
||||
"cottages."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:84
|
||||
#: doc.lua:102
|
||||
msgid ""
|
||||
"Goblin cap stem and cap material can be cut into wood of two different hues, "
|
||||
"a subdued cream and a bright orange-red."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:86
|
||||
#: doc.lua:104
|
||||
msgid ""
|
||||
"Nether caps have an unusual biochemistry that allows them to somehow subsist "
|
||||
"on ambient heat, in violation of all known laws of thermodynamics. They grow "
|
||||
@ -319,40 +393,40 @@ msgid ""
|
||||
"volcanic."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:87
|
||||
#: doc.lua:105
|
||||
msgid ""
|
||||
"Nether cap wood, in addition to being a beautiful blue hue, retains the odd "
|
||||
"heat-draining ability of living nether caps and is able to quickly freeze "
|
||||
"nearby water solid."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:89
|
||||
#: doc.lua:107
|
||||
msgid ""
|
||||
"Spore trees have a sturdy 'trunk' that supports a large spongy mesh of "
|
||||
"branching fibers, with embedded fruiting bodies that produce a copious "
|
||||
"amount of spores that gently rain down around the spore tree's base."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:90
|
||||
#: doc.lua:108
|
||||
msgid ""
|
||||
"Spore tree trunks can be cut into pale woody planks. The branching fibers "
|
||||
"and fruiting bodies are only useful as fuel."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:92
|
||||
#: doc.lua:110
|
||||
msgid "The king of the fungi, tower cap mushrooms grow to immense proportions."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:93
|
||||
#: doc.lua:111
|
||||
msgid "Tower caps are an excellent source of wood."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:95
|
||||
#: doc.lua:113
|
||||
msgid ""
|
||||
"Tunnel tubes are hollow, curved fungal growths that support a fruiting body."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:97
|
||||
#: doc.lua:115
|
||||
msgid ""
|
||||
"The trunk of a tunnel tube can be cut and processed to produce plywood-like "
|
||||
"material. The fruiting body accumulates high-energy compounds that, when "
|
||||
@ -360,7 +434,7 @@ msgid ""
|
||||
"tunnel tube spawn through the still cavern air."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:99
|
||||
#: doc.lua:117
|
||||
msgid ""
|
||||
"The trunk of a tunnel tube can be cut and processed to produce plywood-like "
|
||||
"material."
|
||||
@ -375,19 +449,22 @@ msgid "Cavern Fungi"
|
||||
msgstr "Funghi di caverna"
|
||||
|
||||
#: features\flowstone_nodes.lua:19
|
||||
#: features\flowstone_nodes.lua:39
|
||||
msgid "Dry Dripstone"
|
||||
msgstr ""
|
||||
|
||||
#: features\flowstone_nodes.lua:28
|
||||
#: features\flowstone_nodes.lua:30
|
||||
msgid "Dry Flowstone"
|
||||
msgstr ""
|
||||
|
||||
#: features\flowstone_nodes.lua:49
|
||||
#: features\flowstone_nodes.lua:43
|
||||
msgid "Wet Dripstone"
|
||||
msgstr ""
|
||||
|
||||
#: features\flowstone_nodes.lua:55
|
||||
msgid "Wet Flowstone"
|
||||
msgstr ""
|
||||
|
||||
#: features\flowstone_nodes.lua:60
|
||||
#: features\flowstone_nodes.lua:68
|
||||
msgid "Icicle"
|
||||
msgstr ""
|
||||
|
||||
@ -395,19 +472,19 @@ msgstr ""
|
||||
msgid "Flawless Mese Block"
|
||||
msgstr ""
|
||||
|
||||
#: features\glow_crystals.lua:27
|
||||
#: features\glow_crystals.lua:29
|
||||
msgid "Crystal Vein"
|
||||
msgstr ""
|
||||
|
||||
#: features\glow_crystals.lua:36
|
||||
#: features\glow_crystals.lua:89
|
||||
#: features\glow_crystals.lua:159
|
||||
#: features\glow_crystals.lua:40
|
||||
#: features\glow_crystals.lua:95
|
||||
#: features\glow_crystals.lua:182
|
||||
msgid "Giant Crystal"
|
||||
msgstr ""
|
||||
|
||||
#: features\glow_crystals.lua:62
|
||||
#: features\glow_crystals.lua:124
|
||||
#: features\glow_crystals.lua:195
|
||||
#: features\glow_crystals.lua:67
|
||||
#: features\glow_crystals.lua:146
|
||||
#: features\glow_crystals.lua:219
|
||||
msgid "Big Crystal"
|
||||
msgstr ""
|
||||
|
||||
@ -574,11 +651,11 @@ msgstr "Cappello nero"
|
||||
msgid "Black Cap Gills"
|
||||
msgstr "Lamelle di cappello nero"
|
||||
|
||||
#: trees\black_cap.lua:77
|
||||
#: trees\black_cap.lua:85
|
||||
msgid "Black Cap Planks"
|
||||
msgstr "Assi di cappello nero"
|
||||
|
||||
#: trees\black_cap.lua:116
|
||||
#: trees\black_cap.lua:124
|
||||
msgid "Black Cap Spawn"
|
||||
msgstr "Prole di cappello nero"
|
||||
|
||||
@ -703,19 +780,22 @@ msgid "Tower Cap Spawn"
|
||||
msgstr "Prole di cappello a torre"
|
||||
|
||||
#: trees\tunnel_tube.lua:16
|
||||
#: trees\tunnel_tube.lua:39
|
||||
#: trees\tunnel_tube.lua:69
|
||||
#: trees\tunnel_tube.lua:98
|
||||
msgid "Tunnel Tube"
|
||||
msgstr "Tubo di galleria"
|
||||
|
||||
#: trees\tunnel_tube.lua:47
|
||||
#: trees\tunnel_tube.lua:135
|
||||
msgid "Tunnel Tube Plies"
|
||||
msgstr "Strati di tubo di galleria"
|
||||
|
||||
#: trees\tunnel_tube.lua:82
|
||||
#: trees\tunnel_tube.lua:138
|
||||
#: trees\tunnel_tube.lua:158
|
||||
#: trees\tunnel_tube.lua:170
|
||||
#: trees\tunnel_tube.lua:226
|
||||
#: trees\tunnel_tube.lua:246
|
||||
msgid "Tunnel Tube Fruiting Body"
|
||||
msgstr "Corpo fruttifero del tubo di galleria"
|
||||
|
||||
#: trees\tunnel_tube.lua:189
|
||||
#: trees\tunnel_tube.lua:277
|
||||
msgid "Tunnel Tube Spawn"
|
||||
msgstr "Prole di tubo di galleria"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-05-20 00:42-0600\n"
|
||||
"POT-Creation-Date: 2018-05-21 13:21-0600\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -44,7 +44,8 @@ msgstr ""
|
||||
|
||||
#: doc.lua:19
|
||||
msgid ""
|
||||
"Cave moss has no known uses. It dies when exposed to bright light sources."
|
||||
"Cave moss has no known uses aside from the faint glow it emits. It dies when "
|
||||
"exposed to bright light sources such as the Sun."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:20
|
||||
@ -77,106 +78,179 @@ msgid ""
|
||||
"a modest amount of growth, allowing it to be divided and propagated."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:27
|
||||
msgid ""
|
||||
"Flowstone is a carbonate-rich rock formation deposited by flowing water. It "
|
||||
"consists of minerals that the water dissolved earlier as it widens cracks "
|
||||
"and fissures into caves."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:28
|
||||
msgid "Whatever this fungus was in life, it is now dead."
|
||||
msgid ""
|
||||
"Aside from the aesthetic beauty of its formations flowstone has no special "
|
||||
"properties or uses."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:29
|
||||
msgid ""
|
||||
"The iconic stalactites and stalagmites found in caverns are composed of "
|
||||
"flowstone (or 'dripstone' in the case of these formations). Moist dripstone "
|
||||
"is still undergoing growth, whereas dry dripstone is found in 'dead' caverns "
|
||||
"once the source of water that created them ceases."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:30
|
||||
msgid ""
|
||||
"Although stalagmites are blunter than the stalactites above them, they can "
|
||||
"cause extra damage to the unwary caver who falls on them."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:31
|
||||
msgid ""
|
||||
"Ice formed by water dripping slowly into a cold environment, icicles tend to "
|
||||
"be exceptionally pure and clear."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:32
|
||||
msgid "Falling onto an icicle is particularly damaging."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:35
|
||||
msgid ""
|
||||
"Deep in the infernal conditions of the magma sea, over the course of "
|
||||
"millions of years, mese crystals grow into flawless blocks that glow bright "
|
||||
"with strange energies."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:36
|
||||
msgid ""
|
||||
"These blocks can be broken down into a large number of mese crystals, but "
|
||||
"cannot be artificially reassembled."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:38
|
||||
msgid ""
|
||||
"Large, dry caverns deep underground are well suited to aeons-long processes "
|
||||
"that concentrate crystalline substances in their walls. This rock is riddled "
|
||||
"with veins of the stuff."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:39
|
||||
msgid "Aside from its aesthetic value this rock has no particular use."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:41
|
||||
msgid ""
|
||||
"Monolithic crystals of this size form only over extremely long periods deep "
|
||||
"underground, in large long-lived cavities that allow them room to grow. "
|
||||
"Water and the life it hosts tend to disrupt the formation process of these "
|
||||
"crystals so they're only found in dry environments."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:42
|
||||
msgid "Aside from its aesthetic value this crystal has no particular use."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:46
|
||||
msgid "Whatever this fungus was in life, it is now dead."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:47
|
||||
msgid ""
|
||||
"Dead fungus quickly decays into an unrecognizable mess. It can be used as "
|
||||
"weak fuel or terrible decor."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:31
|
||||
#: doc.lua:49
|
||||
msgid ""
|
||||
"A species of lavender mushroom ubiquitous in caves that is most notable for "
|
||||
"the soft bioluminescence it produces."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:32
|
||||
#: doc.lua:50
|
||||
msgid ""
|
||||
"This mushroom is inedible but continues producing modest levels of light "
|
||||
"long after it's picked."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:34
|
||||
#: doc.lua:52
|
||||
msgid ""
|
||||
"Cave wheat is literally a breed of grain-producing grass that somehow lost "
|
||||
"its ability to photosynthesize and adapted to a more fungal style of life."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:35
|
||||
#: doc.lua:53
|
||||
msgid ""
|
||||
"Like its surface cousin, cave wheat produces grain that can be ground into a "
|
||||
"form of flour."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:36
|
||||
#: doc.lua:54
|
||||
msgid "Cave wheat seed ground into a powder suitable for cooking."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:37
|
||||
#: doc.lua:55
|
||||
msgid ""
|
||||
"When baked alone it forms an edible bread, but it combines well with other "
|
||||
"more flavorful ingredients."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:38
|
||||
#: doc.lua:56
|
||||
msgid ""
|
||||
"Bread baked from cave wheat flour is tough and durable. A useful ration for "
|
||||
"long expeditions."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:39
|
||||
#: doc.lua:57
|
||||
msgid "It's not tasty, but it keeps you going."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:41
|
||||
#: doc.lua:59
|
||||
msgid ""
|
||||
"The distinctive midnight-blue caps of these mushrooms are inverted, exposing "
|
||||
"their gills to any breeze that might pass, and have dimpled edges that give "
|
||||
"them their name."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:42
|
||||
#: doc.lua:60
|
||||
msgid ""
|
||||
"Dimple cups can be dried, ground, and processed to extract a deep blue dye."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:44
|
||||
#: doc.lua:62
|
||||
msgid ""
|
||||
"Pig tails are a fibrous fungal growth that's most notable for its twisting "
|
||||
"stalks. In a mature stand of pig tails the helical stalks intertwine into a "
|
||||
"dense mesh."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:45
|
||||
#: doc.lua:63
|
||||
msgid "Pig tail stalks can be processed to extract fibers useful as thread."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:46
|
||||
#: doc.lua:64
|
||||
msgid "Threads of pig tail fiber."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:47
|
||||
#: doc.lua:65
|
||||
msgid ""
|
||||
"A crafting item that can be woven into textiles and other similar items."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:49
|
||||
#: doc.lua:67
|
||||
msgid ""
|
||||
"Plump helmets are a thick, fleshy mushroom that's edible picked straight "
|
||||
"from the ground. They form a staple diet for both lost cave explorers and "
|
||||
"the fauna that preys on them."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:50
|
||||
#: doc.lua:68
|
||||
msgid ""
|
||||
"While they can be eaten fresh, they can be monotonous fare and are perhaps "
|
||||
"better appreciated as part of a more complex prepared dish."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:52
|
||||
#: doc.lua:70
|
||||
msgid ""
|
||||
"A rare breed of fungus from deep underground that produces a bushy cluster "
|
||||
"of rumpled gray 'blades'. The biological function of these blades is not "
|
||||
@ -184,24 +258,24 @@ msgid ""
|
||||
"the blade's base."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:53
|
||||
#: doc.lua:71
|
||||
msgid ""
|
||||
"Quarry bush leaves and nodules (called 'rock nuts') can be harvested and are "
|
||||
"edible with processing."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:54
|
||||
#: doc.lua:72
|
||||
msgid ""
|
||||
"The dried blades of a quarry bush add a welcome zing to recipes containing "
|
||||
"otherwise-bland subterranean foodstuffs, but they're too spicy to be eaten "
|
||||
"on their own."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:55
|
||||
#: doc.lua:73
|
||||
msgid "Quarry bush leaves can be used as an ingredient in foodstuffs."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:57
|
||||
#: doc.lua:75
|
||||
msgid ""
|
||||
"Sweet pods grow in rich soil, and once they reach maturity they draw that "
|
||||
"supply of nutrients up to concentrate it in their fruiting bodies. They turn "
|
||||
@ -209,52 +283,52 @@ msgid ""
|
||||
"the sugars they contain."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:60
|
||||
#: doc.lua:78
|
||||
msgid "When milled, sweet pods produce a granular sugary substance."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:62
|
||||
#: doc.lua:80
|
||||
msgid "When dried in an oven, sweet pods produce a granular sugary substance."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:64
|
||||
#: doc.lua:82
|
||||
msgid "Crushing them in a bucket squeezes out a flavorful syrup."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:66
|
||||
#: doc.lua:84
|
||||
msgid "Sweet pod sugar has a pink tint to it."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:67
|
||||
#: doc.lua:85
|
||||
msgid ""
|
||||
"Too sweet to be eaten directly, it makes an excellent ingredient in food "
|
||||
"recipes."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:68
|
||||
#: doc.lua:86
|
||||
msgid "Sweet pod syrup is thick and flavorful."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:69
|
||||
#: doc.lua:87
|
||||
msgid ""
|
||||
"Too strong and thick to drink straight, sweet pod syrup is useful in food "
|
||||
"recipes."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:72
|
||||
#: doc.lua:90
|
||||
msgid ""
|
||||
"The dense black wood of these mushrooms is heavy and hard to work with, and "
|
||||
"has few remarkable properties."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:73
|
||||
#: doc.lua:91
|
||||
msgid ""
|
||||
"Aside from the artistic applications of its particularly dark color, black "
|
||||
"cap wood is a long-burning fuel source that's as good as coal for some "
|
||||
"applications."
|
||||
"applications. Black cap gills are oily and make for excellent torch fuel."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:75
|
||||
#: doc.lua:93
|
||||
msgid ""
|
||||
"Blood thorns are the most vicious of underground flora, as befits their "
|
||||
"harsh environments. Found only in hot, dry caverns with sandy soil far from "
|
||||
@ -263,14 +337,14 @@ msgid ""
|
||||
"fluids from whatever stray plant or creature they might impale."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:76
|
||||
#: doc.lua:94
|
||||
msgid ""
|
||||
"When harvested, the central stalk of a blood thorn can be cut into planks "
|
||||
"and used as wood. It has a purple-red hue that may or may not appeal, "
|
||||
"depending on one's artistic tastes."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:77
|
||||
#: doc.lua:95
|
||||
msgid ""
|
||||
"The spikes of a blood thorn can actually remain living long after they're "
|
||||
"severed from their parent stalk, a testament to their tenacity. As long as "
|
||||
@ -278,39 +352,39 @@ msgid ""
|
||||
"puncture, though they don't grow."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:78
|
||||
#: doc.lua:96
|
||||
msgid ""
|
||||
"Living blood thorn spikes remain harmful to creatures that touch them. If "
|
||||
"killed by bright light, they cause only passive damage to creatures that "
|
||||
"fall on them (as one would expect from an enormous spike)."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:80
|
||||
#: doc.lua:98
|
||||
msgid ""
|
||||
"Thin, irregular layers of spore-producing 'shelves' surround the strong "
|
||||
"central stalk of the mighty Fungiwood."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:81
|
||||
#: doc.lua:99
|
||||
msgid ""
|
||||
"Fungiwood stalk is strong and very fine-grained, making smooth yellow-tinted "
|
||||
"lumber when cut. Fungiwood shelf is too fragile to be much use as anything "
|
||||
"other than fuel."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:83
|
||||
#: doc.lua:101
|
||||
msgid ""
|
||||
"Massive but squat, mature goblin cap mushrooms are the size of small "
|
||||
"cottages."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:84
|
||||
#: doc.lua:102
|
||||
msgid ""
|
||||
"Goblin cap stem and cap material can be cut into wood of two different hues, "
|
||||
"a subdued cream and a bright orange-red."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:86
|
||||
#: doc.lua:104
|
||||
msgid ""
|
||||
"Nether caps have an unusual biochemistry that allows them to somehow subsist "
|
||||
"on ambient heat, in violation of all known laws of thermodynamics. They grow "
|
||||
@ -318,40 +392,40 @@ msgid ""
|
||||
"volcanic."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:87
|
||||
#: doc.lua:105
|
||||
msgid ""
|
||||
"Nether cap wood, in addition to being a beautiful blue hue, retains the odd "
|
||||
"heat-draining ability of living nether caps and is able to quickly freeze "
|
||||
"nearby water solid."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:89
|
||||
#: doc.lua:107
|
||||
msgid ""
|
||||
"Spore trees have a sturdy 'trunk' that supports a large spongy mesh of "
|
||||
"branching fibers, with embedded fruiting bodies that produce a copious "
|
||||
"amount of spores that gently rain down around the spore tree's base."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:90
|
||||
#: doc.lua:108
|
||||
msgid ""
|
||||
"Spore tree trunks can be cut into pale woody planks. The branching fibers "
|
||||
"and fruiting bodies are only useful as fuel."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:92
|
||||
#: doc.lua:110
|
||||
msgid "The king of the fungi, tower cap mushrooms grow to immense proportions."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:93
|
||||
#: doc.lua:111
|
||||
msgid "Tower caps are an excellent source of wood."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:95
|
||||
#: doc.lua:113
|
||||
msgid ""
|
||||
"Tunnel tubes are hollow, curved fungal growths that support a fruiting body."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:97
|
||||
#: doc.lua:115
|
||||
msgid ""
|
||||
"The trunk of a tunnel tube can be cut and processed to produce plywood-like "
|
||||
"material. The fruiting body accumulates high-energy compounds that, when "
|
||||
@ -359,7 +433,7 @@ msgid ""
|
||||
"tunnel tube spawn through the still cavern air."
|
||||
msgstr ""
|
||||
|
||||
#: doc.lua:99
|
||||
#: doc.lua:117
|
||||
msgid ""
|
||||
"The trunk of a tunnel tube can be cut and processed to produce plywood-like "
|
||||
"material."
|
||||
@ -374,19 +448,22 @@ msgid "Cavern Fungi"
|
||||
msgstr ""
|
||||
|
||||
#: features\flowstone_nodes.lua:19
|
||||
#: features\flowstone_nodes.lua:39
|
||||
msgid "Dry Dripstone"
|
||||
msgstr ""
|
||||
|
||||
#: features\flowstone_nodes.lua:28
|
||||
#: features\flowstone_nodes.lua:30
|
||||
msgid "Dry Flowstone"
|
||||
msgstr ""
|
||||
|
||||
#: features\flowstone_nodes.lua:49
|
||||
#: features\flowstone_nodes.lua:43
|
||||
msgid "Wet Dripstone"
|
||||
msgstr ""
|
||||
|
||||
#: features\flowstone_nodes.lua:55
|
||||
msgid "Wet Flowstone"
|
||||
msgstr ""
|
||||
|
||||
#: features\flowstone_nodes.lua:60
|
||||
#: features\flowstone_nodes.lua:68
|
||||
msgid "Icicle"
|
||||
msgstr ""
|
||||
|
||||
@ -394,19 +471,19 @@ msgstr ""
|
||||
msgid "Flawless Mese Block"
|
||||
msgstr ""
|
||||
|
||||
#: features\glow_crystals.lua:27
|
||||
#: features\glow_crystals.lua:29
|
||||
msgid "Crystal Vein"
|
||||
msgstr ""
|
||||
|
||||
#: features\glow_crystals.lua:36
|
||||
#: features\glow_crystals.lua:89
|
||||
#: features\glow_crystals.lua:159
|
||||
#: features\glow_crystals.lua:40
|
||||
#: features\glow_crystals.lua:95
|
||||
#: features\glow_crystals.lua:182
|
||||
msgid "Giant Crystal"
|
||||
msgstr ""
|
||||
|
||||
#: features\glow_crystals.lua:62
|
||||
#: features\glow_crystals.lua:124
|
||||
#: features\glow_crystals.lua:195
|
||||
#: features\glow_crystals.lua:67
|
||||
#: features\glow_crystals.lua:146
|
||||
#: features\glow_crystals.lua:219
|
||||
msgid "Big Crystal"
|
||||
msgstr ""
|
||||
|
||||
@ -573,11 +650,11 @@ msgstr ""
|
||||
msgid "Black Cap Gills"
|
||||
msgstr ""
|
||||
|
||||
#: trees\black_cap.lua:77
|
||||
#: trees\black_cap.lua:85
|
||||
msgid "Black Cap Planks"
|
||||
msgstr ""
|
||||
|
||||
#: trees\black_cap.lua:116
|
||||
#: trees\black_cap.lua:124
|
||||
msgid "Black Cap Spawn"
|
||||
msgstr ""
|
||||
|
||||
@ -702,19 +779,22 @@ msgid "Tower Cap Spawn"
|
||||
msgstr ""
|
||||
|
||||
#: trees\tunnel_tube.lua:16
|
||||
#: trees\tunnel_tube.lua:39
|
||||
#: trees\tunnel_tube.lua:69
|
||||
#: trees\tunnel_tube.lua:98
|
||||
msgid "Tunnel Tube"
|
||||
msgstr ""
|
||||
|
||||
#: trees\tunnel_tube.lua:47
|
||||
#: trees\tunnel_tube.lua:135
|
||||
msgid "Tunnel Tube Plies"
|
||||
msgstr ""
|
||||
|
||||
#: trees\tunnel_tube.lua:82
|
||||
#: trees\tunnel_tube.lua:138
|
||||
#: trees\tunnel_tube.lua:158
|
||||
#: trees\tunnel_tube.lua:170
|
||||
#: trees\tunnel_tube.lua:226
|
||||
#: trees\tunnel_tube.lua:246
|
||||
msgid "Tunnel Tube Fruiting Body"
|
||||
msgstr ""
|
||||
|
||||
#: trees\tunnel_tube.lua:189
|
||||
#: trees\tunnel_tube.lua:277
|
||||
msgid "Tunnel Tube Spawn"
|
||||
msgstr ""
|
||||
|
@ -39,7 +39,7 @@ minetest.register_node("dfcaverns:black_cap_gills", {
|
||||
max_items = 1,
|
||||
items = {
|
||||
{
|
||||
items = {'dfcaverns:black_cap_sapling'},
|
||||
items = {'dfcaverns:black_cap_sapling', 'dfcaverns:black_cap_gills'},
|
||||
rarity = 5,
|
||||
},
|
||||
{
|
||||
@ -73,6 +73,14 @@ minetest.register_craft({
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:torch 8',
|
||||
recipe = {
|
||||
{'dfcaverns:black_cap_gills'},
|
||||
{'group:stick'},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_node("dfcaverns:black_cap_wood", {
|
||||
description = S("Black Cap Planks"),
|
||||
_doc_items_longdesc = dfcaverns.doc.black_cap_desc,
|
||||
|
Loading…
Reference in New Issue
Block a user