diff options
author | Wuzzy <almikes@aol.com> | 2017-11-28 09:42:33 +0100 |
---|---|---|
committer | Wuzzy <almikes@aol.com> | 2017-11-28 09:42:33 +0100 |
commit | b8775662e8e5e4525fe5e412828ff6809f8992fe (patch) | |
tree | 6b28d2a038b034b5526391e6d38768f916c08606 | |
parent | c1f300ce21f9b2dbf9b85d57a6c62e7c212d2e61 (diff) |
Add mapping kit, binoculars, kelp on sand
-rw-r--r-- | depends.txt | 2 | ||||
-rw-r--r-- | helptexts.lua | 9 | ||||
-rw-r--r-- | init.lua | 2 |
3 files changed, 13 insertions, 0 deletions
diff --git a/depends.txt b/depends.txt index cfda662..1efd96a 100644 --- a/depends.txt +++ b/depends.txt @@ -17,6 +17,8 @@ vessels walls wool xpanes +map +binoculars mesecons? doc_items doc_basics? diff --git a/helptexts.lua b/helptexts.lua index 42a53c5..3742381 100644 --- a/helptexts.lua +++ b/helptexts.lua @@ -115,6 +115,7 @@ local export_longdesc = { ["default:coral_skeleton"] = S("A coral skeleton once was a living colorful coral but now has died. Coral skeletons can be found naturally in shallow water of warm climates."), ["default:coral_brown"] = coral_living, ["default:coral_orange"] = coral_living, + ["default:sand_with_kelp"] = S("Kelp is an ocean plant which grows several blocks high and only grows in water on top of a sand block. The sand block is part of the plant and behaves differently from normal sand. It does not fall. The kelp itself is part of the same block, it can not be separated."), ["default:stone"] = S("A very common block in the world of Minetest Game, almost the entire underground consists of stone. It sometimes contains ores. Stone may be created when water meets lava."), ["default:desert_stone"] = S("Desert stone is less common than stone and is found in large quantities near the surface of deserts. Desert stone doesn't go very deep."), @@ -392,6 +393,9 @@ local export_longdesc = { ["farming:string"] = craftitemdesc, ["farming:wheat"] = craftitemdesc, ["farming:flour"] = craftitemdesc, + + ["binoculars:binoculars"] = S("Binoculars allow you to zoom."), + ["map:mapping_kit"] = S("A mapping kit allows you to use the minimap (but not the radar mode)."), } local bonestime = tonumber(minetest.setting_get("share_bones_time")) @@ -443,6 +447,7 @@ local export_usagehelp = { ["default:furnace"] = S("Right-click the furnace to view it. Place a furnace fuel in the lower slot and the source material in the upper slot. The furnace will slowly use its fuel to smelt the item. The result will be placed into the 4 slots at the right side."), ["default:chest"] = S("Right-click the chest to open it and to exchange items. You can only mine it when the chest is empty."), ["default:chest_locked"] = S("Point it to reveal the name of its owner. Right-click the chest to open it and to exchange items. This is only possible if you own the chest. You also can only mine the chest when you own it and it is empty."), + ["default:sand_with_kelp"] = S("To mine this block/plant, mine the sand block on which the kelp grows. The kelp itself can not be pointed.").."\n"..S("This block can only be placed deep in the water (at least 5 blocks deep). Placement may randomly fail if the water is not deep enough."), ["default:book"] = S("Hold the book in hand and left-click to write some notes. You have to provide both a title and contents. Doing so will turn the book into a new item (see “Book With Text”)."), ["default:book_written"] = S("Hold the book with text in hand and left-click to read or rewrite the notes. To copy the text, combine the book with text together with a book (without text) in the crafting grid."), ["default:sign_wall_wood"] = signuse, @@ -498,6 +503,9 @@ local export_usagehelp = { ["stairs:slab_cobble"] = slabuse .. "\n" .. S("A cobblestone slab will slowly turn into a mossy cobblestone slab when it is near water (or any other block in the @1 group).", groupname_water), ["stairs:slab_mossycobble"] = slabuse .. "\n" .. S("A mossy cobblestone slab is created when a cobblestone slab is near water (or any other block in the @1 group) for a while.", groupname_water), + + ["binoculars:binoculars"] = S("Before you can zoom, this item must be activated. To activate it, hold it in your hand, then use the attack key. Now you can zoom with the zoom key (Z by default) until you lose this item. Alternatively, the binoculars get activated ca. 5 seconds after putting them into your inventory."), + ["map:mapping_kit"] = S("Before you can use the minimap, this item must be activated. To activate it, hold it in your hand, then use the attack key. Now you can cycle through the minimap modes (surface mode only) with the minimap key (F9 by default) until you lose this item. Alternatively, the mapping kit is activated automatically ca. 5 seconds after putting them into your inventory."), } local export_uses = { @@ -612,6 +620,7 @@ S([=[Enabling Creative Mode in Minetest Game applies the following changes: • Greatly increased hand damage • Increased pointing range of hand • Tools don't wear off +• You can always zoom and use the minimap • When you die, you keep your items and no bones appear]=]) }}) end @@ -99,6 +99,8 @@ local hidden_items = { local item_name_overrides = { ["screwdriver:screwdriver"] = S("Screwdriver"), + ["map:mapping_kit"] = S("Mapping Kit"), + ["binoculars:binoculars"] = S("Binoculars"), ["carts:cart"] = S("Cart"), ["fire:basic_flame"] = S("Basic Flame"), ["farming:wheat_8"] = S("Wheat Plant"), |