summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZefram <zefram@fysh.org>2014-07-08 15:16:20 +0100
committerNovatux <nathanael.courant@laposte.net>2014-07-09 09:17:44 +0200
commit78128fd49a6267ced207ef11067533b7abb387f5 (patch)
tree7ee942be2e704b4416adfd5dc72d6f59cbf59f46
parent5e4a87b92599aa0fc9a56081209c930d08a2c3bd (diff)
Tweak energy crystal recipes
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.
-rw-r--r--technic/crafts.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/technic/crafts.lua b/technic/crafts.lua
index 8bf477b..29ff0d0 100644
--- a/technic/crafts.lua
+++ b/technic/crafts.lua
@@ -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'},
}
})