mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-01-12 19:10:26 +01:00
Add the craft recipe of "pole_perfect"
And indentation correction for more visibility
This commit is contained in:
parent
a3cee45129
commit
7bc218a363
@ -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
|
||||||
-----------------------------------------------------------------------------------------------
|
-----------------------------------------------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user