1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-30 00:10:33 +02:00

Add the craft recipe of "pole_perfect"

And indentation correction for more visibility
This commit is contained in:
Ombridride 2015-03-11 16:33:17 +01:00
parent a3cee45129
commit 7bc218a363

View File

@ -11,7 +11,7 @@
----------------------------------------------------------------------------------------------- -----------------------------------------------------------------------------------------------
-- Fishing Pole -- Fishing Pole
----------------------------------------------------------------------------------------------- -----------------------------------------------------------------------------------------------
-- mc style -- Wooden Fishing Pole
minetest.register_craft({ minetest.register_craft({
output = "fishing:pole", output = "fishing:pole",
recipe = { recipe = {
@ -21,6 +21,7 @@ minetest.register_craft({
} }
}) })
if minetest.get_modpath("moreblocks") ~= nil then
minetest.register_craft({ minetest.register_craft({
output = "fishing:pole", output = "fishing:pole",
recipe = { recipe = {
@ -29,6 +30,8 @@ minetest.register_craft({
{"group:stick", "", "moreblocks:rope" }, {"group:stick", "", "moreblocks:rope" },
} }
}) })
end
if minetest.get_modpath("ropes") ~= nil then if minetest.get_modpath("ropes") ~= nil then
minetest.register_craft({ minetest.register_craft({
output = "fishing:pole", output = "fishing:pole",
@ -40,6 +43,18 @@ minetest.register_craft({
}) })
end end
-- Mithril Fishing Pole
if minetest.get_modpath("moreore") ~= nil then
minetest.register_craft({
output = "fishing:pole_perfect",
recipe = {
{"", "", "moreoress:mithril_ingot" },
{"", "moreoress:mithril_ingot", "mobs:spider_cobweb" },
{"moreoress:mithril_ingot", "", "mobs:spider_cobweb" },
}
})
end
----------------------------------------------------------------------------------------------- -----------------------------------------------------------------------------------------------
-- Roasted Fish -- Roasted Fish
----------------------------------------------------------------------------------------------- -----------------------------------------------------------------------------------------------