Increase prospector's charge capacity
authorZefram <zefram@fysh.org>
Tue, 8 Jul 2014 13:19:06 +0000 (14:19 +0100)
committerNovatux <nathanael.courant@laposte.net>
Thu, 10 Jul 2014 06:56:48 +0000 (08:56 +0200)
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.

technic/tools/prospector.lua

index 686e0a7c1039ac50997d1630181c24d4fc0b8d2e..d663bd24040dc86efed0267ad02f9214f124a592 100644 (file)
@@ -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", ""},
        }
 })