mirror of
https://github.com/MinetestForFun/fishing.git
synced 2025-07-22 18:10:27 +02:00
fix typo
add support to modpack mobs_fish and mobs_sharks, fish|sharks mobs can be now catched re-add craft worms with 2 dirt
This commit is contained in:
36
crafting.lua
36
crafting.lua
@ -127,6 +127,21 @@ minetest.register_craft({
|
||||
cooktime = 2,
|
||||
})
|
||||
|
||||
if minetest.get_modpath("mobs_fish") ~= nil then
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "fishing:fish_cooked",
|
||||
recipe = "mobs_fish:clownfish",
|
||||
cooktime = 2,
|
||||
})
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "fishing:fish_cooked",
|
||||
recipe = "mobs_fish:tropical",
|
||||
cooktime = 2,
|
||||
})
|
||||
end
|
||||
|
||||
-----------------------------------------------------------------------------------------------
|
||||
-- Wheat Seed
|
||||
-----------------------------------------------------------------------------------------------
|
||||
@ -166,6 +181,27 @@ minetest.register_craft({
|
||||
cooktime = 2,
|
||||
})
|
||||
|
||||
if minetest.get_modpath("mobs_sharks") ~= nil then
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "fishing:shark_cooked",
|
||||
recipe = "mobs_sharks:shark_lg",
|
||||
cooktime = 2,
|
||||
})
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "fishing:shark_cooked",
|
||||
recipe = "mobs_sharks:shark_md",
|
||||
cooktime = 2,
|
||||
})
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "fishing:shark_cooked",
|
||||
recipe = "mobs_sharks:shark_sm",
|
||||
cooktime = 2,
|
||||
})
|
||||
end
|
||||
|
||||
-----------------------------------------------------------------------------------------------
|
||||
-- Roasted Pike
|
||||
-----------------------------------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user