VoxeLibre/mods/ENTITIES/mobs_mc/squid.lua

65 lines
1.6 KiB
Lua
Raw Normal View History

2017-07-05 03:15:46 +02:00
-- v1.1
--###################
--################### SQUID
--###################
local S = minetest.get_translator("mobs_mc")
2017-07-05 03:15:46 +02:00
mobs:register_mob("mobs_mc:squid", {
type = "animal",
2020-04-11 02:46:03 +02:00
spawn_class = "water",
can_despawn = true,
2017-07-05 03:15:46 +02:00
passive = true,
hp_min = 10,
hp_max = 10,
armor = 100,
-- FIXME: If the squid is near the floor, it turns black
2020-02-19 22:28:18 +01:00
collisionbox = {-0.4, 0.0, -0.4, 0.4, 0.9, 0.4},
2017-07-05 03:15:46 +02:00
visual = "mesh",
mesh = "mobs_mc_squid.b3d",
textures = {
{"mobs_mc_squid.png"}
},
sounds = {
damage = "mobs_mc_squid_hurt",
death = "mobs_mc_squid_hurt",
-- TODO: sounds: random, damage, death
2017-07-05 03:15:46 +02:00
distance = 16,
},
animation = {
stand_start = 1,
stand_end = 60,
walk_start = 1,
walk_end = 60,
run_start = 1,
run_end = 60,
},
drops = {
{name = mobs_mc.items.black_dye,
chance = 1,
min = 1,
max = 3,},
},
2020-02-19 22:28:18 +01:00
visual_size = {x=3, y=3},
2017-07-05 03:15:46 +02:00
makes_footstep_sound = false,
fly = true,
2017-11-30 15:36:17 +01:00
fly_in = { mobs_mc.items.water_source, mobs_mc.items.river_water_source },
2019-10-02 18:31:16 +02:00
breathes_in_water = true,
jump = false,
2017-07-05 03:15:46 +02:00
view_range = 16,
runaway = true,
fear_height = 4,
})
-- TODO: Behaviour: squirt
2017-07-05 03:15:46 +02:00
-- Spawn near the water surface
local water = mobs_mc.spawn_height.water
2017-07-05 03:15:46 +02:00
--name, nodes, neighbours, minlight, maxlight, interval, chance, active_object_count, min_height, max_height
mobs:spawn_specific("mobs_mc:squid", mobs_mc.spawn.water, {mobs_mc.items.water_source}, 0, minetest.LIGHT_MAX+1, 30, 5500, 3, water-16, water)
-- spawn eggs
mobs:register_egg("mobs_mc:squid", S("Squid"), "mobs_mc_spawn_icon_squid.png", 0)