VoxeLibre/mods/ENTITIES/mobs_mc/villager_vindicator.lua

81 lines
1.6 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
local S = minetest.get_translator("mobs_mc")
2017-07-05 03:15:46 +02:00
--###################
--################### VINDICATOR
--###################
mcl_mobs.register_mob("mobs_mc:vindicator", {
2021-04-25 17:30:15 +02:00
description = S("Vindicator"),
2017-07-05 03:15:46 +02:00
type = "monster",
2020-04-11 02:46:03 +02:00
spawn_class = "hostile",
2017-07-05 03:15:46 +02:00
physical = false,
pathfinding = 1,
hp_min = 24,
hp_max = 24,
2020-12-06 15:46:42 +01:00
xp_min = 6,
xp_max = 6,
2017-07-05 03:15:46 +02:00
collisionbox = {-0.3, -0.01, -0.3, 0.3, 1.94, 0.3},
visual = "mesh",
mesh = "mobs_mc_vindicator.b3d",
2022-10-07 03:56:38 +02:00
head_swivel = "head.control",
bone_eye_height = 2.2,
head_eye_height = 2.2,
curiosity = 10,
textures = {
{
"mobs_mc_vindicator.png",
"blank.png", --no hat
"default_tool_steelaxe.png",
-- TODO: Glow when attacking (mobs_mc_vindicator.png)
},
},
visual_size = {x=2.75, y=2.75},
2017-07-05 03:15:46 +02:00
makes_footstep_sound = true,
damage = 13,
2017-07-26 00:26:18 +02:00
reach = 2,
2017-07-05 03:15:46 +02:00
walk_velocity = 1.2,
run_velocity = 2.4,
attack_type = "dogfight",
2022-08-01 00:39:49 +02:00
attack_npcs = true,
2017-07-05 03:15:46 +02:00
drops = {
2022-05-25 23:25:15 +02:00
{name = "mcl_core:emerald",
2017-07-05 03:15:46 +02:00
chance = 1,
min = 0,
2020-12-23 17:41:42 +01:00
max = 1,
looting = "common",},
2022-05-25 23:25:15 +02:00
{name = "mcl_tools:axe_iron",
2020-12-23 17:41:42 +01:00
chance = 100 / 8.5,
2017-07-05 03:15:46 +02:00
min = 1,
2020-12-23 17:41:42 +01:00
max = 1,
looting = "rare",},
2017-07-05 03:15:46 +02:00
},
-- TODO: sounds
2017-07-05 03:15:46 +02:00
animation = {
2017-09-13 23:13:47 +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,
punch_speed = 25,
2017-07-05 03:15:46 +02:00
punch_start = 90,
punch_end = 110,
2020-12-05 03:52:08 +01:00
die_speed = 15,
2018-05-30 17:34:38 +02:00
die_start = 170,
die_end = 180,
die_loop = false,
2017-07-05 03:15:46 +02:00
},
view_range = 16,
fear_height = 4,
})
-- spawn eggs
mcl_mobs.register_egg("mobs_mc:vindicator", S("Vindicator"), "#959b9b", "#275e61", 0)