German transl.: mcl_fishing to mcl_maps + fixes

This commit is contained in:
Wuzzy 2019-03-15 06:12:03 +01:00
parent 86e5eb748f
commit 77ab44217a
30 changed files with 174 additions and 39 deletions

View file

@ -92,7 +92,7 @@ local wheat_seed_drop = {
local def_tallgrass = {
description = S("Tall Grass"),
drawtype = "plantlike",
_doc_items_longdesc = S("Tall grass is a small plant which often occours on the surface of grasslands. It can be harvested for wheat seeds. By using bone meal, tall grass can be turned into double tallgrass which is two blocks high."),
_doc_items_longdesc = S("Tall grass is a small plant which often occurs on the surface of grasslands. It can be harvested for wheat seeds. By using bone meal, tall grass can be turned into double tallgrass which is two blocks high."),
_doc_items_usagehelp = plant_usage_help,
_doc_items_hidden = false,
waving = 1,
@ -125,7 +125,7 @@ minetest.register_node("mcl_flowers:tallgrass", def_tallgrass)
-- The fern is very similar to tall grass, so we can copy a lot from it.
local def_fern = table.copy(def_tallgrass)
def_fern.description = S("Fern")
def_fern._doc_items_longdesc = S("Ferns are small plants which occour naturally in grasslands. They can be harvested for wheat seeds. By using bone meal, a fern can be turned into a large fern which is two blocks high.")
def_fern._doc_items_longdesc = S("Ferns are small plants which occur naturally in jungles and taigas. They can be harvested for wheat seeds. By using bone meal, a fern can be turned into a large fern which is two blocks high.")
def_fern.tiles = { "mcl_flowers_fern.png" }
def_fern.inventory_image = "mcl_flowers_fern_inv.png"
def_fern.wield_image = "mcl_flowers_fern_inv.png"