MineClone2/mods/ENTITIES/mobs_mc/agent.lua

40 lines
825 B
Lua
Raw Permalink Normal View History

2017-11-03 22:14:27 +01:00
--###################
2021-10-13 21:00:06 +02:00
--################### AGENT - seemingly unused
2017-11-03 22:14:27 +01:00
--###################
2021-10-13 21:00:06 +02:00
local S = minetest.get_translator(minetest.get_current_modname())
2017-11-03 22:14:27 +01:00
mobs:register_mob("mobs_mc:agent", {
type = "npc",
2020-04-11 02:46:03 +02:00
spawn_class = "passive",
2017-11-03 22:14:27 +01:00
passive = true,
hp_min = 20,
hp_max = 20,
armor = 100,
collisionbox = {-0.35, -0.01, -0.35, 0.35, 1, 0.35},
visual = "mesh",
mesh = "mobs_mc_agent.b3d",
textures = {
{"mobs_mc_agent.png"},
},
-- TODO: sounds
2017-11-03 22:14:27 +01:00
visual_size = {x=3, y=3},
2019-10-02 18:58:29 +02:00
walk_chance = 0,
2017-11-03 22:14:27 +01:00
walk_velocity = 0.6,
run_velocity = 2,
jump = true,
animation = {
stand_speed = 25,
walk_speed = 25,
run_speed = 50,
stand_start = 20,
stand_end = 60,
walk_start = 0,
walk_end = 20,
run_start = 0,
run_end = 20,
},
})
mobs:register_egg("mobs_mc:agent", S("Agent"), "mobs_mc_spawn_icon_agent.png", 0)