Tweak energy crystal recipes
authorZefram <zefram@fysh.org>
Tue, 8 Jul 2014 14:16:20 +0000 (15:16 +0100)
committerNovatux <nathanael.courant@laposte.net>
Wed, 9 Jul 2014 07:17:44 +0000 (09:17 +0200)
Use silver instead of gold in the recipe for the red energy crystal,
and mithril instead of gold in the recipe for the blue energy crystal.
This provides more appreciable steps in the expense of the upgrades,
which were too similar, and in particular makes the blue energy crystal
less ridiculously cheap.

technic/crafts.lua

index 8bf477bfa281b034dc87869b9c0ff8a704567036..29ff0d056248a014ddec83d271cfe557a1170533 100644 (file)
@@ -37,18 +37,18 @@ minetest.register_craft({
 minetest.register_craft({
        output = 'technic:blue_energy_crystal',
        recipe = {
-               {'default:gold_ingot', 'technic:battery', 'dye:blue'},
+               {'moreores:mithril_ingot', 'technic:battery', 'dye:blue'},
                {'technic:battery', 'technic:green_energy_crystal', 'technic:battery'},
-               {'dye:blue', 'technic:battery', 'default:gold_ingot'},
+               {'dye:blue', 'technic:battery', 'moreores:mithril_ingot'},
        }
 })
 
 minetest.register_craft({
        output = 'technic:red_energy_crystal',
        recipe = {
-               {'default:gold_ingot', 'technic:battery', 'dye:red'},
+               {'moreores:silver_ingot', 'technic:battery', 'dye:red'},
                {'technic:battery', 'default:diamondblock', 'technic:battery'},
-               {'dye:red', 'technic:battery', 'default:gold_ingot'},
+               {'dye:red', 'technic:battery', 'moreores:silver_ingot'},
        }
 })