bitchange/moreores.lua

48 lines
1.3 KiB
Lua
Raw Normal View History

2014-01-08 17:02:04 +01:00
--Created by Krock
--License: WTFPL
2014-01-18 15:39:01 +01:00
if(bitchange_use_moreores_tin) then
if(minetest.get_modpath("moreores")) then
2014-01-08 17:02:04 +01:00
minetest.register_craft({
output = "bitchange:coinbase 18",
recipe = {
{"moreores:tin_block", "default:pick_diamond"},
{"moreores:tin_block", ""}
},
replacements = { {"default:pick_diamond", "default:pick_diamond"} },
})
2014-01-18 15:39:01 +01:00
else
print("[BitChange] Error: tin support disabled, missing mod: 'moreores'"
end
2014-01-08 17:02:04 +01:00
end
2014-01-18 15:39:01 +01:00
if(bitchange_use_technic_zinc) then
if(minetest.get_modpath("technic_worldgen")) then
2014-01-08 17:02:04 +01:00
minetest.register_craft({
output = "bitchange:coinbase 8",
recipe = {
{"technic:zinc_block", "default:pick_diamond"},
{"technic:zinc_block", ""}
},
replacements = { {"default:pick_diamond", "default:pick_diamond"} },
})
2014-01-18 15:39:01 +01:00
else
print("[BitChange] Warning: zinc support disabled, missing mod: 'technic_worldgen'"
end
end
if(bitchange_use_quartz) then
if(minetest.get_modpath("quartz")) then
minetest.register_craft({
output = "bitchange:coinbase",
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"} },
})
else
print("[BitChange] Error: quartz support disabled, missing mod: 'quartz'"
end
2014-01-08 17:02:04 +01:00
end