Mineclonia/mods/mcl_fishing/init.lua

186 lines
4.9 KiB
Lua
Raw Normal View History

2017-02-01 14:20:28 +00:00
-- Fishing Rod
minetest.register_tool("mcl_fishing:fishing_rod", {
description = "Fishing Rod",
groups = { tool=1 },
inventory_image = "mcl_fishing_fishing_rod.png",
stack_max = 1,
liquids_pointable = true,
on_use = function (itemstack, user, pointed_thing)
if pointed_thing and pointed_thing.under then
local node = minetest.get_node(pointed_thing.under)
if string.find(node.name, "mcl_core:water") then
local itemname
local itemcount = 1
2017-02-01 14:56:40 +00:00
local itemwear = 0
2017-02-01 14:20:28 +00:00
local r = math.random(1, 100)
if r <= 85 then
-- Fish
r = math.random(1, 100)
if r <= 60 then
itemname = "mcl_fishing:fish_raw"
elseif r <= 85 then
2017-02-01 14:29:43 +00:00
itemname = "mcl_fishing:salmon_raw"
2017-02-01 14:20:28 +00:00
elseif r <= 87 then
2017-02-01 14:29:43 +00:00
itemname = "mcl_fishing:clownfish_raw"
2017-02-01 14:20:28 +00:00
else
2017-02-01 14:29:43 +00:00
itemname = "mcl_fishing:pufferfish_raw"
2017-02-01 14:20:28 +00:00
end
elseif r <= 95 then
-- Junk
r = math.random(1, 83)
if r <= 10 then
2017-02-01 14:29:43 +00:00
itemname = "mcl_core:bowl"
2017-02-01 14:20:28 +00:00
elseif r <= 12 then
itemname = "mcl_fishing:fishing_rod"
2017-02-01 14:56:40 +00:00
itemwear = math.random(6554, 65535) -- 10%-100% damaged
2017-02-01 14:20:28 +00:00
elseif r <= 22 then
itemname = "mcl_mobitems:leather"
elseif r <= 32 then
itemname = "3d_armor:boots_leather"
2017-02-01 14:56:40 +00:00
itemwear = math.random(6554, 65535) -- 10%-100% damaged
2017-02-01 14:20:28 +00:00
elseif r <= 42 then
itemname = "mcl_mobitems:rotten_flesh"
elseif r <= 47 then
itemname = "mcl_core:stick"
elseif r <= 52 then
itemname = "mcl_core:string"
elseif r <= 62 then
itemname = "mcl_potions:glass_bottle"
--TODO itemname = "mcl_potions:bottle_water"
elseif r <= 72 then
itemname = "mcl_core:bone"
elseif r <= 73 then
itemname = "mcl_dye:black"
itemcount = 10
else
-- TODO: Tripwire hook
itemname = "mcl_core:string"
end
else
-- Treasure
r = math.random(1, 6)
if r == 1 then
2017-02-01 14:56:40 +00:00
-- TODO: Enchanted
2017-02-01 14:29:43 +00:00
itemname = "mcl_throwing:bow"
2017-02-01 14:56:40 +00:00
itemwear = math.random(49144, 65535) -- 75%-100% damaged
2017-02-01 14:20:28 +00:00
elseif r == 2 then
-- TODO: Enchanted book
itemname = "mcl_core:book"
elseif r == 3 then
2017-02-01 14:56:40 +00:00
-- TODO: Enchanted
2017-02-01 14:20:28 +00:00
itemname = "mcl_fishing:fishing_rod"
2017-02-01 14:56:40 +00:00
itemwear = math.random(49144, 65535) -- 75%-100% damaged
2017-02-01 14:20:28 +00:00
elseif r == 4 then
2017-02-01 14:37:04 +00:00
itemname = "mobs:nametag"
2017-02-01 14:20:28 +00:00
elseif r == 5 then
itemname = "mcl_mobitems:saddle"
elseif r == 6 then
itemname = "mcl_flowers:waterlily"
end
end
local inv = user:get_inventory()
2017-02-01 14:56:40 +00:00
local item = {name=itemname, count=itemcount, wear=itemwear, metadata=""}
if inv:room_for_item("main", item) then
inv:add_item("main", item)
2017-02-01 14:20:28 +00:00
end
if not minetest.setting_get("creative_mode") then
itemstack:add_wear(66000/65) -- 65 uses
end
2017-02-01 14:20:28 +00:00
return itemstack
end
end
return nil
end,
})
minetest.register_craft({
output = "mcl_fishing:fishing_rod",
recipe = {
{'','','mcl_core:stick'},
{'','mcl_core:stick','mcl_core:string'},
{'mcl_core:stick','','mcl_core:string'},
}
})
minetest.register_craft({
output = "mcl_fishing:fishing_rod",
recipe = {
{'mcl_core:stick', '', ''},
{'mcl_core:string', 'mcl_core:stick', ''},
{'mcl_core:string','','mcl_core:stick'},
}
})
minetest.register_craft({
type = "fuel",
recipe = "mcl_fishing:fishing_rod",
burntime = 15,
})
-- Fish
minetest.register_craftitem("mcl_fishing:fish_raw", {
description = "Raw Fish",
inventory_image = "mcl_fishing_fish_raw.png",
on_use = minetest.item_eat(2),
stack_max = 64,
groups = { food=2, eatable = 2 },
})
minetest.register_craftitem("mcl_fishing:fish_cooked", {
description = "Cooked Fish",
inventory_image = "mcl_fishing_fish_cooked.png",
on_use = minetest.item_eat(5),
stack_max = 64,
groups = { food=2, eatable=5 },
})
minetest.register_craft({
type = "cooking",
output = "mcl_fishing:fish_cooked",
recipe = "mcl_fishing:fish_raw",
cooktime = 10,
})
2017-02-01 14:29:43 +00:00
-- Salmon
minetest.register_craftitem("mcl_fishing:salmon_raw", {
description = "Raw Salmon",
inventory_image = "mcl_fishing_salmon_raw.png",
on_use = minetest.item_eat(2),
stack_max = 64,
groups = { food=2, eatable = 2 },
})
minetest.register_craftitem("mcl_fishing:salmon_cooked", {
description = "Cooked Salmon",
inventory_image = "mcl_fishing_salmon_cooked.png",
on_use = minetest.item_eat(6),
stack_max = 64,
groups = { food=2, eatable=6 },
})
minetest.register_craft({
type = "cooking",
output = "mcl_fishing:salmon_cooked",
recipe = "mcl_fishing:salmon_raw",
cooktime = 10,
})
-- Clownfish
minetest.register_craftitem("mcl_fishing:clownfish_raw", {
description = "Clownfish",
inventory_image = "mcl_fishing_clownfish_raw.png",
on_use = minetest.item_eat(1),
stack_max = 64,
groups = { food=2, eatable = 1 },
})
-- Pufferfish
minetest.register_craftitem("mcl_fishing:pufferfish_raw", {
description = "Pufferfish",
inventory_image = "mcl_fishing_pufferfish_raw.png",
on_use = minetest.item_eat(1),
stack_max = 64,
groups = { food=2, eatable=1 },
})