2015-04-16 21:33:56 +02:00
|
|
|
-------------------------------------------------------------------------------------------
|
2015-06-26 22:33:51 +02:00
|
|
|
-- Fishing - crabman77 version
|
|
|
|
-- Rewrited from original Fishing - Mossmanikin's version - Fishes 0.0.4
|
|
|
|
-- License (code & textures): WTFPL
|
2015-04-16 21:33:56 +02:00
|
|
|
-----------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------------------------------
|
|
|
|
-- Fish
|
|
|
|
-----------------------------------------------------------------------------------------------
|
2015-06-27 20:33:36 +02:00
|
|
|
minetest.register_craftitem("fishing:fish_raw", {
|
2015-06-16 01:42:05 +02:00
|
|
|
description = fishing_setting.func.S("Fish"),
|
2015-06-26 22:33:51 +02:00
|
|
|
groups = {},
|
2015-06-27 20:33:36 +02:00
|
|
|
inventory_image = "fishing_fish_raw.png",
|
2015-04-16 21:33:56 +02:00
|
|
|
on_use = minetest.item_eat(2),
|
|
|
|
})
|
|
|
|
-----------------------------------------------------
|
|
|
|
-- Roasted Fish
|
|
|
|
-----------------------------------------------------
|
2015-06-26 22:33:51 +02:00
|
|
|
minetest.register_craftitem("fishing:fish_cooked", {
|
2015-06-16 01:42:05 +02:00
|
|
|
description = fishing_setting.func.S("Roasted Fish"),
|
2015-04-16 21:33:56 +02:00
|
|
|
groups = {},
|
|
|
|
inventory_image = "fishing_fish_cooked.png",
|
|
|
|
on_use = minetest.item_eat(4),
|
|
|
|
})
|
|
|
|
-----------------------------------------------------
|
|
|
|
-- Sushi
|
|
|
|
-----------------------------------------------------
|
|
|
|
minetest.register_craftitem("fishing:sushi", {
|
2015-06-16 01:42:05 +02:00
|
|
|
description = fishing_setting.func.S("Sushi (Hoso Maki)"),
|
2015-04-16 21:33:56 +02:00
|
|
|
groups = {},
|
|
|
|
inventory_image = "fishing_sushi.png",
|
|
|
|
on_use = minetest.item_eat(6),
|
|
|
|
})
|
|
|
|
|
2015-06-26 22:33:51 +02:00
|
|
|
-----------------------------------------------------------------------------------------------
|
|
|
|
-- clownfish
|
|
|
|
-----------------------------------------------------------------------------------------------
|
2015-06-27 20:33:36 +02:00
|
|
|
minetest.register_craftitem("fishing:clownfish_raw", {
|
2015-06-26 22:33:51 +02:00
|
|
|
description = fishing_setting.func.S("Clownfish"),
|
|
|
|
groups = {},
|
2015-06-27 20:33:36 +02:00
|
|
|
inventory_image = "fishing_clownfish_raw.png",
|
2015-06-26 22:33:51 +02:00
|
|
|
on_use = minetest.item_eat(2),
|
|
|
|
})
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------------------------------
|
|
|
|
-- bluefish
|
|
|
|
-----------------------------------------------------------------------------------------------
|
2015-06-27 20:33:36 +02:00
|
|
|
minetest.register_craftitem("fishing:bluefish_raw", {
|
2015-06-26 22:33:51 +02:00
|
|
|
description = fishing_setting.func.S("Bluefish"),
|
|
|
|
groups = {},
|
2015-06-27 20:33:36 +02:00
|
|
|
inventory_image = "fishing_bluefish_raw.png",
|
2015-06-26 22:33:51 +02:00
|
|
|
on_use = minetest.item_eat(2),
|
|
|
|
})
|
|
|
|
|
2015-04-16 21:33:56 +02:00
|
|
|
-----------------------------------------------------------------------------------------------
|
|
|
|
-- Whatthef... it's a freakin' Shark!
|
|
|
|
-----------------------------------------------------------------------------------------------
|
2015-06-27 20:33:36 +02:00
|
|
|
minetest.register_craftitem("fishing:shark_raw", {
|
2015-06-16 01:42:05 +02:00
|
|
|
description = fishing_setting.func.S("Shark"),
|
2015-06-26 22:33:51 +02:00
|
|
|
groups = {},
|
2015-06-27 20:33:36 +02:00
|
|
|
inventory_image = "fishing_shark_raw.png",
|
2015-04-16 21:33:56 +02:00
|
|
|
on_use = minetest.item_eat(2),
|
|
|
|
})
|
|
|
|
-----------------------------------------------------
|
|
|
|
-- Roasted Shark
|
|
|
|
-----------------------------------------------------
|
|
|
|
minetest.register_craftitem("fishing:shark_cooked", {
|
2015-06-16 01:42:05 +02:00
|
|
|
description = fishing_setting.func.S("Roasted Shark"),
|
2015-04-16 21:33:56 +02:00
|
|
|
groups = {},
|
|
|
|
inventory_image = "fishing_shark_cooked.png",
|
|
|
|
on_use = minetest.item_eat(6),
|
|
|
|
})
|
2015-06-26 22:33:51 +02:00
|
|
|
|
2015-04-16 21:33:56 +02:00
|
|
|
-----------------------------------------------------------------------------------------------
|
|
|
|
-- Pike
|
|
|
|
-----------------------------------------------------------------------------------------------
|
2015-06-27 20:33:36 +02:00
|
|
|
minetest.register_craftitem("fishing:pike_raw", {
|
2015-06-16 01:42:05 +02:00
|
|
|
description = fishing_setting.func.S("Northern Pike"),
|
2015-06-26 22:33:51 +02:00
|
|
|
groups = {},
|
2015-06-27 20:33:36 +02:00
|
|
|
inventory_image = "fishing_pike_raw.png",
|
2015-04-16 21:33:56 +02:00
|
|
|
on_use = minetest.item_eat(2),
|
|
|
|
})
|
|
|
|
-----------------------------------------------------
|
|
|
|
-- Roasted Pike
|
|
|
|
-----------------------------------------------------
|
|
|
|
minetest.register_craftitem("fishing:pike_cooked", {
|
2015-06-16 01:42:05 +02:00
|
|
|
description = fishing_setting.func.S("Roasted Northern Pike"),
|
2015-04-16 21:33:56 +02:00
|
|
|
groups = {},
|
|
|
|
inventory_image = "fishing_pike_cooked.png",
|
|
|
|
on_use = minetest.item_eat(6),
|
|
|
|
})
|