2021-03-14 22:55:16 +03:00
|
|
|
--[[
|
2016-06-09 17:08:34 +03:00
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
This fishing routine is inspired by the great work Rootyjr did for MineClone2
|
2016-06-09 17:08:34 +03:00
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
]]--
|
2014-11-09 22:17:41 +03:00
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
local S = ethereal.intllib
|
2014-11-09 22:17:41 +03:00
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
local fish_items = {
|
|
|
|
"ethereal:fish_bluefin",
|
|
|
|
"ethereal:fish_blueram",
|
|
|
|
"ethereal:fish_catfish",
|
2021-03-15 18:12:18 +03:00
|
|
|
{"ethereal:fish_clownfish", "savanna"},
|
|
|
|
{"ethereal:fish_pike", "grassy"},
|
2021-03-15 18:58:34 +03:00
|
|
|
{"ethereal:fish_flathead", "jungle"},
|
2021-03-14 22:55:16 +03:00
|
|
|
"ethereal:fish_plaice",
|
2021-03-15 18:12:18 +03:00
|
|
|
{"ethereal:fish_pufferfish", "desert_ocean"},
|
2021-03-14 22:55:16 +03:00
|
|
|
"ethereal:fish_salmon",
|
2021-03-15 18:12:18 +03:00
|
|
|
{"ethereal:fish_chichlid", "junglee_ocean"},
|
2021-03-15 17:49:16 +03:00
|
|
|
{"ethereal:fish_coy", "sakura"}
|
2021-03-14 22:55:16 +03:00
|
|
|
}
|
2015-07-04 14:22:39 +03:00
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
local junk_items = {
|
|
|
|
"ethereal:bowl",
|
|
|
|
"default:stick",
|
|
|
|
"farming:string",
|
2021-03-15 11:57:05 +03:00
|
|
|
"default:papyrus",
|
2021-03-15 17:49:16 +03:00
|
|
|
"dye:black",
|
|
|
|
{"ethereal:bamboo", "bamboo"}
|
2021-03-14 22:55:16 +03:00
|
|
|
}
|
2014-11-09 22:17:41 +03:00
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
local bonus_items = {
|
|
|
|
"mobs:nametag",
|
|
|
|
"mobs:saddle",
|
2021-03-15 11:57:05 +03:00
|
|
|
"flowers:waterlily",
|
2021-03-15 17:49:16 +03:00
|
|
|
"default:book",
|
|
|
|
{"ethereal:crystal_spike", "frost"},
|
|
|
|
{"ethereal:banana_bunch", "grove"}
|
2021-03-14 22:55:16 +03:00
|
|
|
}
|
2014-11-09 22:17:41 +03:00
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
local default_item = "default:dirt"
|
2014-11-09 22:17:41 +03:00
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
local random = math.random -- yup we use this a lot
|
2019-03-18 11:50:38 +03:00
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
-- add item function
|
|
|
|
ethereal.add_item = function(fish, junk, bonus)
|
2019-03-18 11:50:38 +03:00
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
if fish and fish ~= "" then
|
|
|
|
table.insert(fish_items, fish)
|
|
|
|
end
|
2019-03-18 11:50:38 +03:00
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
if junk and junk ~= "" then
|
|
|
|
table.insert(junk_items, junk)
|
|
|
|
end
|
2019-03-18 11:50:38 +03:00
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
if bonus and bonus ~= "" then
|
|
|
|
table.insert(bonus_items, bonus)
|
2019-03-18 11:50:38 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2021-03-15 16:06:21 +03:00
|
|
|
-- fishing bob entity that is thrown into water
|
2021-03-14 22:55:16 +03:00
|
|
|
minetest.register_entity("ethereal:prebob_entity", {
|
2014-11-09 22:17:41 +03:00
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
textures = {"ethereal_fishing_bob.png"},
|
|
|
|
visual_size = {x = 0.5, y = 0.5},
|
|
|
|
collisionbox = {-0.1,-0.1,-0.1,0.1,0.1,0.1},
|
|
|
|
pointable = false,
|
|
|
|
physical = false,
|
|
|
|
lastpos = {},
|
|
|
|
|
|
|
|
on_step = function(self, dtime)
|
|
|
|
|
|
|
|
local pos = self.object:get_pos()
|
|
|
|
|
|
|
|
-- Destroy when hitting a solid node
|
|
|
|
if self.lastpos.x then
|
|
|
|
|
|
|
|
local node = minetest.get_node(pos)
|
|
|
|
local def = minetest.registered_nodes[node.name]
|
|
|
|
|
|
|
|
-- remove if we hit something hard
|
|
|
|
if def and def.walkable then
|
2021-03-15 11:57:05 +03:00
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
self.object:remove()
|
2021-03-15 11:57:05 +03:00
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
if def and def.liquidtype == "source"
|
|
|
|
and minetest.get_item_group(node.name, "water") > 0 then
|
|
|
|
|
|
|
|
--print("---water")
|
|
|
|
|
2021-03-15 11:57:05 +03:00
|
|
|
-- do we have worms for bait, if so take one
|
|
|
|
local player = self.fisher and minetest.get_player_by_name(self.fisher)
|
|
|
|
local inv = player and player:get_inventory()
|
|
|
|
local bait = 0
|
|
|
|
|
|
|
|
if inv and inv:contains_item("main", "ethereal:worm") then
|
|
|
|
inv:remove_item("main", "ethereal:worm")
|
|
|
|
bait = 20
|
|
|
|
end
|
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
local obj = minetest.add_entity(self.lastpos, "ethereal:bob_entity")
|
|
|
|
local ent = obj:get_luaentity()
|
|
|
|
|
2021-03-15 11:57:05 +03:00
|
|
|
ent.fisher = self.fisher
|
|
|
|
ent.bait = bait
|
2021-03-14 22:55:16 +03:00
|
|
|
|
|
|
|
minetest.sound_play("default_water_footstep", {
|
|
|
|
pos = self.lastpos, gain = 0.1}, true)
|
|
|
|
|
|
|
|
self.object:remove()
|
|
|
|
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
self.lastpos = {x = pos.x, y = pos.y, z = pos.z}
|
|
|
|
end
|
2014-11-09 22:17:41 +03:00
|
|
|
})
|
|
|
|
|
2015-12-23 13:13:09 +03:00
|
|
|
|
2021-03-15 16:06:21 +03:00
|
|
|
-- fishing bob entity that moves from time to time
|
2021-03-14 22:55:16 +03:00
|
|
|
minetest.register_entity("ethereal:bob_entity", {
|
|
|
|
|
|
|
|
textures = {"ethereal_fishing_bob.png"},
|
|
|
|
visual_size = {x = 0.5, y = 0.5},
|
|
|
|
collisionbox = {0.4,0.4,0.4,0.4,0.4,0.4},
|
|
|
|
physical = false,
|
|
|
|
pointable = false,
|
|
|
|
static_save = false,
|
|
|
|
lastpos = {},
|
|
|
|
timer = 0,
|
|
|
|
patience = nil,
|
|
|
|
old_y = nil,
|
|
|
|
bob = false,
|
|
|
|
|
|
|
|
on_step = function(self, dtime)
|
|
|
|
|
|
|
|
-- we need a name
|
2021-03-15 11:57:05 +03:00
|
|
|
if self.fisher == nil or self.fisher == "" then
|
2021-03-14 22:55:16 +03:00
|
|
|
|
|
|
|
self.object:remove()
|
|
|
|
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2021-03-15 11:57:05 +03:00
|
|
|
local player = minetest.get_player_by_name(self.fisher)
|
2021-03-14 22:55:16 +03:00
|
|
|
|
|
|
|
-- we need an actual person
|
|
|
|
if not player then
|
|
|
|
|
|
|
|
self.object:remove()
|
|
|
|
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local pos = self.object:get_pos()
|
|
|
|
|
|
|
|
pos.y = math.floor(pos.y)
|
|
|
|
|
|
|
|
local node = minetest.get_node(pos)
|
|
|
|
local def = minetest.registered_nodes[node.name]
|
|
|
|
local wield = player:get_wielded_item()
|
|
|
|
|
|
|
|
-- we also need a rod to fish with
|
2021-03-15 11:57:05 +03:00
|
|
|
if not wield or wield:get_name() ~= "ethereal:fishing_rod" then
|
2021-03-14 22:55:16 +03:00
|
|
|
|
|
|
|
self.object:remove()
|
2015-07-04 14:22:39 +03:00
|
|
|
|
2016-01-21 17:59:28 +03:00
|
|
|
return
|
|
|
|
end
|
2018-11-29 14:09:41 +03:00
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
-- remove bob if player is too far away
|
|
|
|
local bob_pos = self.object:get_pos()
|
|
|
|
local pla_pos = player:get_pos()
|
|
|
|
|
|
|
|
if (pla_pos.y - bob_pos.y) > 25
|
|
|
|
or (pla_pos.y - bob_pos.y) < -25
|
|
|
|
or (pla_pos.x - bob_pos.x) > 25
|
|
|
|
or (pla_pos.x - bob_pos.x) < -25
|
|
|
|
or (pla_pos.z - bob_pos.z) > 25
|
|
|
|
or (pla_pos.z - bob_pos.z) < -25 then
|
|
|
|
|
|
|
|
--print("-- out of range")
|
2015-07-04 14:22:39 +03:00
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
self.object:remove()
|
|
|
|
|
|
|
|
return
|
|
|
|
end
|
2015-12-23 13:13:09 +03:00
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
-- when in water, bob.
|
|
|
|
if def and def.liquidtype == "source"
|
|
|
|
and minetest.get_item_group(def.name, "water") ~= 0 then
|
2015-12-23 13:13:09 +03:00
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
if self.old_y == nil then
|
2016-01-21 17:59:28 +03:00
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
self.object:set_pos({
|
|
|
|
x = self.object:get_pos().x,
|
|
|
|
y = math.floor(self.object:get_pos().y) + 0.5,
|
|
|
|
z = self.object:get_pos().z})
|
|
|
|
|
|
|
|
self.old_y = self.object:get_pos().y
|
|
|
|
end
|
|
|
|
|
|
|
|
-- reset to original position after dive.
|
|
|
|
if self.object:get_pos().y > self.old_y then
|
|
|
|
|
|
|
|
self.object:set_pos({
|
|
|
|
x = self.object:get_pos().x,
|
|
|
|
y = self.old_y,
|
|
|
|
z = self.object:get_pos().z})
|
|
|
|
|
|
|
|
self.object:set_velocity({x = 0, y = 0, z = 0})
|
|
|
|
self.object:set_acceleration({x = 0, y = 0, z = 0})
|
|
|
|
end
|
2016-01-21 17:59:28 +03:00
|
|
|
|
2021-03-15 11:57:05 +03:00
|
|
|
-- choose random time to wait (minus bait time for worm)
|
2021-03-14 22:55:16 +03:00
|
|
|
if not self.patience or self.patience <= 0 then
|
2021-03-15 11:57:05 +03:00
|
|
|
|
|
|
|
self.patience = random(10, (45 - self.bait))
|
|
|
|
self.bait = 0
|
2021-03-14 22:55:16 +03:00
|
|
|
end
|
2018-11-29 14:09:41 +03:00
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
-- add particles if bobber bobbing
|
|
|
|
if self.bob then
|
2018-11-29 14:09:41 +03:00
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
minetest.add_particle({
|
|
|
|
pos = {
|
|
|
|
x = pos.x + random() - 0.5,
|
|
|
|
y = pos.y + 0.1,
|
|
|
|
z = pos.z + random() - 0.5
|
|
|
|
},
|
|
|
|
velocity = {x = 0, y = 4, z = 0},
|
|
|
|
acceleration = {x = 0, y = -5, z = 0},
|
|
|
|
expirationtime = random() * 0.5,
|
|
|
|
size = random(),
|
2018-11-29 14:09:41 +03:00
|
|
|
collisiondetection = false,
|
|
|
|
vertical = false,
|
|
|
|
texture = "bubble.png",
|
|
|
|
})
|
|
|
|
|
2021-03-14 22:55:16 +03:00
|
|
|
-- handle timer
|
|
|
|
if self.timer < self.patience then
|
|
|
|
self.timer = self.timer + dtime
|
|
|
|
else
|
|
|
|
self.patience = 0
|
|
|
|
self.timer = 0
|
|
|
|
self.bob = false
|
|
|
|
end
|
2015-07-04 14:22:39 +03:00
|
|
|
else
|
2021-03-14 22:55:16 +03:00
|
|
|
-- handle timer
|
|
|
|
if self.timer < self.patience then
|
|
|
|
self.timer = self.timer + dtime
|
|
|
|
else
|
|
|
|
-- waiting over, bob that bobber and play splash sound
|
|
|
|
self.bob = true
|
2021-03-18 20:10:56 +03:00
|
|
|
self.patience = 1.5 -- timeframe to catch fish after bob
|
2021-03-14 22:55:16 +03:00
|
|
|
self.timer = 0
|
|
|
|
|
|
|
|
self.object:set_velocity({x = 0, y = -2, z = 0})
|
|
|
|
self.object:set_acceleration({x = 0, y = 5, z = 0})
|
|
|
|
|
|
|
|
minetest.sound_play("default_water_footstep", {
|
|
|
|
pos = pos, gain = 0.1}, true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2021-03-15 17:49:16 +03:00
|
|
|
-- narrow item list depending on biome if applicable
|
|
|
|
local find_item = function(list, pos)
|
|
|
|
|
|
|
|
local item
|
|
|
|
local items = {}
|
|
|
|
local data= minetest.get_biome_data(pos)
|
|
|
|
local biome = data and minetest.get_biome_name(data.biome) or ""
|
|
|
|
|
|
|
|
for n = 1, #list do
|
|
|
|
|
|
|
|
item = list[n]
|
|
|
|
|
|
|
|
if type(item) == "string" then
|
|
|
|
|
|
|
|
table.insert(items, item)
|
|
|
|
|
|
|
|
elseif type(item) == "table" then
|
|
|
|
|
2021-03-15 18:58:34 +03:00
|
|
|
if item[2] == "" or biome:find(item[2]) then
|
2021-03-15 17:49:16 +03:00
|
|
|
table.insert(items, item[1])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
--print("==biome: " .. biome, dump(items))
|
|
|
|
|
|
|
|
if #items > 0 then
|
|
|
|
return items[random(#items)]
|
|
|
|
end
|
|
|
|
|
|
|
|
return ""
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2021-03-15 16:06:21 +03:00
|
|
|
-- fishing rod function that throws pre bob, places bob and catches fish when it moves
|
|
|
|
local use_rod = function(itemstack, player, pointed_thing)
|
|
|
|
|
|
|
|
local pos = player:get_pos()
|
|
|
|
local objs = minetest.get_objects_inside_radius(pos, 25)
|
|
|
|
local found = true
|
|
|
|
local ent
|
|
|
|
|
|
|
|
-- loop through entities and look for bobs
|
|
|
|
for n = 1, #objs do
|
|
|
|
|
|
|
|
ent = objs[n]:get_luaentity()
|
|
|
|
|
|
|
|
if ent
|
|
|
|
and ent.fisher
|
|
|
|
and (ent.name == "ethereal:prebob_entity" or ent.name == "ethereal:bob_entity")
|
|
|
|
and player:get_player_name() == ent.fisher then
|
|
|
|
|
|
|
|
found = false
|
|
|
|
|
|
|
|
if ent.bob == true then
|
|
|
|
|
|
|
|
local item
|
|
|
|
local r = random(100)
|
|
|
|
|
|
|
|
if r < 86 then
|
|
|
|
|
2021-03-15 17:49:16 +03:00
|
|
|
item = find_item(fish_items, pos)
|
2021-03-15 16:06:21 +03:00
|
|
|
|
|
|
|
elseif r > 85 and r < 96 then
|
|
|
|
|
2021-03-15 17:49:16 +03:00
|
|
|
item = find_item(junk_items, pos)
|
2021-03-15 16:06:21 +03:00
|
|
|
|
|
|
|
else
|
|
|
|
|
2021-03-15 17:49:16 +03:00
|
|
|
item = find_item(bonus_items, pos)
|
2021-03-15 16:06:21 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
-- make sure item exists, if not replace with default item
|
|
|
|
if not minetest.registered_items[item] then
|
|
|
|
item = default_item
|
|
|
|
end
|
|
|
|
|
|
|
|
--print ("---caught", item, r)
|
|
|
|
|
|
|
|
item = ItemStack(item)
|
|
|
|
|
|
|
|
local inv = player:get_inventory()
|
|
|
|
|
|
|
|
if inv:room_for_item("main", item) then
|
|
|
|
inv:add_item("main", item)
|
|
|
|
else
|
|
|
|
minetest.add_item(pos, item)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
ent.object:remove()
|
|
|
|
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- loop through entities and look for bobs
|
|
|
|
for n = 1, #objs do
|
|
|
|
|
|
|
|
ent = objs[n]:get_luaentity()
|
|
|
|
|
|
|
|
if ent
|
|
|
|
and ent.fisher
|
|
|
|
and (ent.name == "ethereal:prebob_entity" or ent.name == "ethereal:bob_entity")
|
|
|
|
and player:get_player_name() == ent.fisher then
|
|
|
|
|
|
|
|
found = false
|
|
|
|
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if found == true then
|
|
|
|
|
|
|
|
local playerpos = player:get_pos()
|
|
|
|
local dir = player:get_look_dir()
|
|
|
|
local pos = {x = playerpos.x, y = playerpos.y + 1.5, z = playerpos.z}
|
|
|
|
|
2021-03-18 20:30:21 +03:00
|
|
|
minetest.sound_play("ethereal_casting_rod",
|
2021-03-15 16:06:21 +03:00
|
|
|
{pos = pos, gain = 0.4, max_hear_distance = 16}, true)
|
|
|
|
|
|
|
|
-- place actual bob
|
|
|
|
local obj = minetest.add_entity(pos, "ethereal:prebob_entity")
|
|
|
|
|
|
|
|
obj:set_velocity({x = dir.x * 8, y = dir.y * 8, z = dir.z * 8})
|
|
|
|
obj:set_acceleration({x = dir.x * -3, y = -9.8, z = dir.z * -3})
|
|
|
|
obj:get_luaentity().fisher = player and player:get_player_name()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
-- scan area for bobs that belong to player and remove
|
2021-03-14 22:55:16 +03:00
|
|
|
local remove_bob = function(player)
|
|
|
|
|
|
|
|
local objs = minetest.get_objects_inside_radius(player:get_pos(), 25)
|
2021-03-15 11:57:05 +03:00
|
|
|
local name = player:get_player_name()
|
2021-03-14 22:55:16 +03:00
|
|
|
local ent
|
|
|
|
|
|
|
|
for n = 1, #objs do
|
|
|
|
|
|
|
|
ent = objs[n]:get_luaentity()
|
|
|
|
|
|
|
|
if ent
|
|
|
|
and (ent.name == "ethereal:prebob_entity"
|
|
|
|
or ent.name == "ethereal:bob_entity") then
|
|
|
|
|
2021-03-15 11:57:05 +03:00
|
|
|
-- only remove players own bob
|
|
|
|
if ent.fisher and ent.fisher == name then
|
2021-03-14 22:55:16 +03:00
|
|
|
ent.object:remove()
|
2015-07-04 14:22:39 +03:00
|
|
|
end
|
|
|
|
end
|
2021-03-14 22:55:16 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
-- remove bob if player signs off
|
|
|
|
minetest.register_on_leaveplayer(function(player)
|
|
|
|
remove_bob(player)
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
|
|
-- remove bob if player dies
|
|
|
|
minetest.register_on_dieplayer(function(player)
|
|
|
|
remove_bob(player)
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
|
|
-- fishing rod
|
|
|
|
minetest.register_tool("ethereal:fishing_rod", {
|
|
|
|
description = S("Fishing Rod (USE to cast and again when the time is right)"),
|
2021-03-15 11:57:05 +03:00
|
|
|
groups = {tool = 1},
|
2021-03-14 22:55:16 +03:00
|
|
|
inventory_image = "ethereal_fishing_rod.png",
|
|
|
|
wield_image = "ethereal_fishing_rod.png^[transformFX",
|
|
|
|
wield_scale = {x = 1.5, y = 1.5, z = 1},
|
|
|
|
stack_max = 1,
|
|
|
|
on_use = use_rod,
|
|
|
|
sound = {breaks = "default_tool_breaks"},
|
2014-11-09 22:17:41 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-03-14 22:55:16 +03:00
|
|
|
output = "ethereal:fishing_rod",
|
|
|
|
recipe = {
|
|
|
|
{"","","group:stick"},
|
|
|
|
{"","group:stick","farming:string"},
|
|
|
|
{"group:stick","","farming:string"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
2021-03-15 16:06:21 +03:00
|
|
|
recipe = "ethereal:fishing_rod",
|
2021-03-14 22:55:16 +03:00
|
|
|
burntime = 15,
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
local fish = {
|
|
|
|
{"Blue Fin", "bluefin", 2},
|
|
|
|
{"Blue Ram", "blueram", 2},
|
|
|
|
{"Catfish", "catfish", 2},
|
|
|
|
{"Clownfish", "clownfish", 2},
|
|
|
|
{"Pike", "pike", 2},
|
|
|
|
{"Flathead", "flathead", 2},
|
|
|
|
{"Plaice", "plaice", 2},
|
|
|
|
{"Pufferfish", "pufferfish", -2},
|
2021-03-15 16:48:34 +03:00
|
|
|
{"Coy", "coy", 2},
|
2021-03-14 22:55:16 +03:00
|
|
|
{"Salmon", "salmon", 2},
|
|
|
|
{"Chichlid", "chichlid", 2}
|
|
|
|
}
|
|
|
|
|
|
|
|
for n = 1, #fish do
|
|
|
|
|
|
|
|
minetest.register_craftitem("ethereal:fish_" .. fish[n][2], {
|
|
|
|
description = S(fish[n][1]),
|
|
|
|
inventory_image = "ethereal_fish_" .. fish[n][2] .. ".png",
|
|
|
|
on_use = minetest.item_eat(fish[n][3]),
|
|
|
|
groups = {food_fish_raw = 1, ethereal_fish = 1}
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
-- cooked fish
|
|
|
|
minetest.register_craftitem(":ethereal:fish_cooked", {
|
|
|
|
description = S("Cooked Fish"),
|
|
|
|
inventory_image = "ethereal_fish_cooked.png",
|
|
|
|
wield_image = "ethereal_fish_cooked.png",
|
|
|
|
groups = {food_fish = 1, flammable = 3},
|
|
|
|
on_use = minetest.item_eat(5),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "ethereal:fish_cooked",
|
|
|
|
recipe = "group:ethereal_fish",
|
|
|
|
cooktime = 8,
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Sashimi (Thanks to Natalia Grosner for letting me use the sashimi image)
|
|
|
|
minetest.register_craftitem("ethereal:sashimi", {
|
|
|
|
description = S("Sashimi"),
|
|
|
|
inventory_image = "sashimi.png",
|
|
|
|
wield_image = "sashimi.png",
|
|
|
|
on_use = minetest.item_eat(4)
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "ethereal:sashimi 2",
|
|
|
|
recipe = {
|
|
|
|
{"group:food_seaweed", "group:food_fish_raw", "group:food_seaweed"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Worm
|
|
|
|
minetest.register_craftitem("ethereal:worm", {
|
|
|
|
description = S("Worm"),
|
|
|
|
inventory_image = "worm.png",
|
|
|
|
wield_image = "worm.png",
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "ethereal:worm",
|
|
|
|
recipe = {
|
|
|
|
{"default:dirt","default:dirt"},
|
|
|
|
}
|
2015-11-23 23:43:48 +03:00
|
|
|
})
|
2021-03-15 16:06:21 +03:00
|
|
|
|
|
|
|
-- compatibility
|
|
|
|
minetest.register_alias("ethereal:fish_raw", "ethereal:fish_chichlid")
|
|
|
|
minetest.register_alias("ethereal:fishing_rod_baited", "ethereal:fishing_rod")
|