diff options
author | Zefram <zefram@fysh.org> | 2014-07-08 14:19:06 +0100 |
---|---|---|
committer | Novatux <nathanael.courant@laposte.net> | 2014-07-10 08:56:48 +0200 |
commit | 871ded6e6a93a2aacb3624f6f46bc29c6f286536 (patch) | |
tree | 34121302d686e32986eb641365df7e57db66a586 | |
parent | 83e9cab3adc77fa22fff4ec098c01b162c2443c4 (diff) |
Increase prospector's charge capacity
The low capacity of the prospector turned out to be annoying, while the
other limitations do not substantially detract from fun. Also adjust
recipe to include a blue energy crystal, to explain the source of the
charge capacity.
-rw-r--r-- | technic/tools/prospector.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/technic/tools/prospector.lua b/technic/tools/prospector.lua index 686e0a7..d663bd2 100644 --- a/technic/tools/prospector.lua +++ b/technic/tools/prospector.lua @@ -1,6 +1,6 @@ local S = technic.getter -technic.register_power_tool("technic:prospector", 15000) +technic.register_power_tool("technic:prospector", 300000) local function get_metadata(toolstack) local m = minetest.deserialize(toolstack:get_metadata()) @@ -121,6 +121,6 @@ minetest.register_craft({ recipe = { {"moreores:pick_silver", "moreores:mithril_block", "pipeworks:teleport_tube_1"}, {"technic:brass_ingot", "technic:control_logic_unit", "technic:brass_ingot"}, - {"", "technic:brass_ingot", ""}, + {"", "technic:blue_energy_crystal", ""}, } }) |