mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-07 11:00:23 +01:00
70 lines
2.6 KiB
Lua
70 lines
2.6 KiB
Lua
|
-----------------------------------------------------------------------------------------------
|
||
|
-- Fishing - Mossmanikin's version - Fishes 0.0.4
|
||
|
-- License (code & textures): WTFPL
|
||
|
-----------------------------------------------------------------------------------------------
|
||
|
|
||
|
-----------------------------------------------------------------------------------------------
|
||
|
-- Fish
|
||
|
-----------------------------------------------------------------------------------------------
|
||
|
minetest.register_craftitem("fishing:fish_raw", {
|
||
|
description = "Fish",
|
||
|
groups = {},
|
||
|
inventory_image = "fishing_fish.png",
|
||
|
on_use = minetest.item_eat(2),
|
||
|
})
|
||
|
-----------------------------------------------------
|
||
|
-- Roasted Fish
|
||
|
-----------------------------------------------------
|
||
|
minetest.register_craftitem("fishing:fish", {
|
||
|
description = "Roasted Fish",
|
||
|
groups = {},
|
||
|
inventory_image = "fishing_fish_cooked.png",
|
||
|
on_use = minetest.item_eat(4),
|
||
|
})
|
||
|
-----------------------------------------------------
|
||
|
-- Sushi
|
||
|
-----------------------------------------------------
|
||
|
minetest.register_craftitem("fishing:sushi", {
|
||
|
description = "Sushi (Hoso Maki)",
|
||
|
groups = {},
|
||
|
inventory_image = "fishing_sushi.png",
|
||
|
on_use = minetest.item_eat(6),
|
||
|
})
|
||
|
|
||
|
-----------------------------------------------------------------------------------------------
|
||
|
-- Whatthef... it's a freakin' Shark!
|
||
|
-----------------------------------------------------------------------------------------------
|
||
|
minetest.register_craftitem("fishing:shark", {
|
||
|
description = "Shark",
|
||
|
groups = {},
|
||
|
inventory_image = "fishing_shark.png",
|
||
|
on_use = minetest.item_eat(2),
|
||
|
})
|
||
|
-----------------------------------------------------
|
||
|
-- Roasted Shark
|
||
|
-----------------------------------------------------
|
||
|
minetest.register_craftitem("fishing:shark_cooked", {
|
||
|
description = "Roasted Shark",
|
||
|
groups = {},
|
||
|
inventory_image = "fishing_shark_cooked.png",
|
||
|
on_use = minetest.item_eat(6),
|
||
|
})
|
||
|
|
||
|
-----------------------------------------------------------------------------------------------
|
||
|
-- Pike
|
||
|
-----------------------------------------------------------------------------------------------
|
||
|
minetest.register_craftitem("fishing:pike", {
|
||
|
description = "Northern Pike",
|
||
|
groups = {},
|
||
|
inventory_image = "fishing_pike.png",
|
||
|
on_use = minetest.item_eat(2),
|
||
|
})
|
||
|
-----------------------------------------------------
|
||
|
-- Roasted Pike
|
||
|
-----------------------------------------------------
|
||
|
minetest.register_craftitem("fishing:pike_cooked", {
|
||
|
description = "Roasted Northern Pike",
|
||
|
groups = {},
|
||
|
inventory_image = "fishing_pike_cooked.png",
|
||
|
on_use = minetest.item_eat(6),
|
||
|
})
|