bitchange/moreores.lua

35 lines
1.0 KiB
Lua
Raw Normal View History

-- Conversion of other ores to money
2014-01-08 17:02:04 +01:00
if bitchange.use_moreores_tin and minetest.get_modpath("moreores") then
2014-01-08 17:02:04 +01:00
minetest.register_craft({
output = "bitchange:mineninth 18",
2014-01-08 17:02:04 +01:00
recipe = {
{"moreores:tin_block", "default:pick_diamond"},
{"moreores:tin_block", ""}
},
replacements = { {"default:pick_diamond", "default:pick_diamond"} }
2014-01-08 17:02:04 +01:00
})
end
if bitchange.use_technic_zinc and minetest.get_modpath("technic_worldgen") then
2014-01-08 17:02:04 +01:00
minetest.register_craft({
output = "bitchange:mineninth 8",
2014-01-08 17:02:04 +01:00
recipe = {
{"technic:zinc_block", "default:pick_diamond"},
{"technic:zinc_block", ""}
},
replacements = { {"default:pick_diamond", "default:pick_diamond"} }
2014-01-08 17:02:04 +01:00
})
2014-01-18 15:39:01 +01:00
end
if bitchange.use_quartz and minetest.get_modpath("quartz") then
2014-01-18 15:39:01 +01:00
minetest.register_craft({
output = "bitchange:mineninth",
2014-01-18 15:39:01 +01:00
recipe = {
{"quartz:quartz_crystal", "default:pick_diamond"},
{"quartz:quartz_crystal", "quartz:quartz_crystal"},
{"quartz:quartz_crystal", "quartz:quartz_crystal"}
},
replacements = { {"default:pick_diamond", "default:pick_diamond"} }
2014-01-18 15:39:01 +01:00
})
2014-01-08 17:02:04 +01:00
end