mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-04-02 02:30:37 +02: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
|
||||
-----------------------------------------------------------------------------------------------
|
||||
-- mc style
|
||||
-- Wooden Fishing Pole
|
||||
minetest.register_craft({
|
||||
output = "fishing:pole",
|
||||
recipe = {
|
||||
@ -21,6 +21,7 @@ minetest.register_craft({
|
||||
}
|
||||
})
|
||||
|
||||
if minetest.get_modpath("moreblocks") ~= nil then
|
||||
minetest.register_craft({
|
||||
output = "fishing:pole",
|
||||
recipe = {
|
||||
@ -29,6 +30,8 @@ minetest.register_craft({
|
||||
{"group:stick", "", "moreblocks:rope" },
|
||||
}
|
||||
})
|
||||
end
|
||||
|
||||
if minetest.get_modpath("ropes") ~= nil then
|
||||
minetest.register_craft({
|
||||
output = "fishing:pole",
|
||||
@ -40,6 +43,18 @@ minetest.register_craft({
|
||||
})
|
||||
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
|
||||
-----------------------------------------------------------------------------------------------
|
||||
|
Loading…
x
Reference in New Issue
Block a user