VoxeLibre/mods/ENTITIES/mobs_mc/villager_evoker.lua

94 lines
2.1 KiB
Lua
Raw Normal View History

2017-07-05 03:15:46 +02:00
--MCmobs v0.4
--maikerumine
--made for MC like Survival game
--License for code WTFPL and otherwise stated in readmes
-- intllib
local MP = minetest.get_modpath(minetest.get_current_modname())
local S, NS = dofile(MP.."/intllib.lua")
--dofile(minetest.get_modpath("mobs").."/api.lua")
--###################
--################### EVOKER
--###################
local pr = PseudoRandom(os.time()*666)
mobs:register_mob("mobs_mc:evoker", {
type = "monster",
physical = true,
pathfinding = 1,
hp_min = 24,
hp_max = 24,
collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.95, 0.4},
visual = "mesh",
2017-09-13 23:13:47 +02:00
mesh = "mobs_mc_villager.b3d",
textures = { {
2018-05-30 18:48:07 +02:00
"mobs_mc_evoker.png",
2017-09-13 23:13:47 +02:00
"blank.png", --no hat
2017-07-05 03:15:46 +02:00
-- TODO: Attack glow
2017-09-13 23:13:47 +02:00
} },
2017-07-05 03:15:46 +02:00
visual_size = {x=3, y=3},
makes_footstep_sound = true,
damage = 6,
walk_velocity = 0.2,
run_velocity = 1.4,
group_attack = true,
attack_type = "dogfight",
-- Summon vexes
custom_attack = function(self, to_attack)
local r = pr:next(2,4)
2019-02-01 06:33:07 +01:00
local basepos = self.object:get_pos()
2017-07-05 03:15:46 +02:00
basepos.y = basepos.y + 1
for i=1, r do
local spawnpos = vector.add(basepos, minetest.yaw_to_dir(pr:next(0,360)))
local vex = minetest.add_entity(spawnpos, "mobs_mc:vex")
local ent = vex:get_luaentity()
-- Mark vexes as summoned and start their life clock (they take damage it reaches 0)
ent._summoned = true
ent._lifetimer = pr:next(33, 108)
end
end,
shoot_interval = 15,
passive = false,
drops = {
{name = mobs_mc.items.emerald,
chance = 1,
min = 0,
max = 1,},
{name = mobs_mc.items.totem,
chance = 1,
min = 1,
max = 1,},
},
-- TODO: sounds
2017-07-05 03:15:46 +02:00
animation = {
2018-05-30 17:34:38 +02:00
stand_speed = 25,
2017-07-05 03:15:46 +02:00
stand_start = 40,
stand_end = 59,
2018-05-30 17:34:38 +02:00
walk_speed = 25,
2017-07-05 03:15:46 +02:00
walk_start = 0,
walk_end = 40,
2018-05-30 17:34:38 +02:00
run_speed = 25,
shoot_start = 120, --magic arm swinging
2017-09-13 23:13:47 +02:00
shoot_end = 140,
2018-05-30 17:34:38 +02:00
die_speed = 15,
die_start = 190,
die_end = 200,
die_loop = false,
2017-07-05 03:15:46 +02:00
},
water_damage = 0,
lava_damage = 4,
light_damage = 0,
view_range = 16,
fear_height = 4,
})
-- spawn eggs
mobs:register_egg("mobs_mc:evoker", S("Evoker"), "mobs_mc_spawn_icon_evoker.png", 0)
if minetest.settings:get_bool("log_mods") then
minetest.log("action", "MC Evoker loaded")
end