animalworld/squid.lua

106 lines
2.8 KiB
Lua

mobs:register_mob("animalworld:squid", {
stepheight = 0.0,
type = "animal",
passive = false,
attack_type = "dogfight",
attack_animals = false,
reach = 2,
damage = 8,
hp_min = 10,
hp_max = 40,
armor = 100,
collisionbox = {-0.7, -0.01, -0.7, 0.7, 0.6, 0.7},
visual = "mesh",
mesh = "Squid.b3d",
visual_size = {x = 1.0, y = 1.0},
textures = {
{"texturesquid.png"},
},
sounds = {},
makes_footstep_sound = false,
sounds = {
},
walk_velocity = 2,
run_velocity = 4,
fly = true,
fly_in = "default:water_source", "default:river_water_source", "default:water_flowing", "default:river_water_flowing",
fall_speed = 0,
runaway = false,
jump = false,
stepheight = 0.0,
drops = {
{name = "animalworld:rawmollusk", chance = 1, min = 1, max = 1},
},
water_damage = 0,
air_damage = 1,
lava_damage = 4,
light_damage = 0,
fear_height = 2,
animation = {
speed_normal = 100,
stand_start = 0,
stand_end = 100,
walk_start = 100,
walk_end = 200,
fly_start = 100, -- swim animation
fly_end = 200,
punch_start = 270,
punch_end = 330,
-- 50-70 is slide/water idle
},
fly_in = {"default:water_source", "default:river_water_source", "default:water_flowing"},
floats = 0,
follow = {
"mobs:meat_raw", "xocean:fish_edible", "ethereal:fish_raw", "mobs:clownfish_raw", "mobs:bluefish_raw", "fishing:bait_worm", "fishing:clownfish_raw", "fishing:bluewhite_raw", "fishing:exoticfish_raw", "fishing:fish_raw", "fishing:carp_raw", "fishing:perch_raw", "water_life:meat_raw", "fishing:shark_raw", "fishing:pike_raw"
},
view_range = 6,
on_rightclick = function(self, clicker)
-- feed or tame
if mobs:feed_tame(self, clicker, 4, false, true) then return end
if mobs:protect(self, clicker) then return end
if mobs:capture_mob(self, clicker, 5, 50, 80, false, nil) then return end
end,
})
if not mobs.custom_spawn_animalworld then
mobs:spawn({
name = "animalworld:squid",
nodes = {"default:water_source"},
min_light = 0,
interval = 60,
chance = 8000, -- 15000
active_object_count = 4,
min_height = 0,
max_height = 10,
day_toggle = false,
})
end
mobs:register_egg("animalworld:squid", ("Squid"), "asquid.png")
-- raw squid
minetest.register_craftitem(":animalworld:rawmollusk", {
description = ("Raw Mollusk"),
inventory_image = "animalworld_rawmollusk.png",
on_use = minetest.item_eat(3),
groups = {food_meat_raw = 1, flammable = 2},
})
-- cooked fish
minetest.register_craftitem(":animalworld:cookedmollusk", {
description = ("Fried Mollusk"),
inventory_image = "animalworld_cookedmollusk.png",
on_use = minetest.item_eat(5),
groups = {food_meat = 1, flammable = 2},
})
minetest.register_craft({
type = "cooking",
output = "animalworld:cookedmollusk",
recipe = "animalworld:rawmollusk",
cooktime = 5,
})