smart_mobs/dirtmonster.lua

47 lines
1.1 KiB
Lua
Raw Normal View History

-- Dirt Monster by PilzAdam
2014-11-09 11:13:11 -08:00
mobs:register_mob("mobs:dirt_monster", {
type = "monster",
passive = false,
attack_type = "dogfight",
damage = 2,
2015-04-09 08:09:10 -07:00
hp_min = 3,
hp_max = 27,
armor = 100,
2014-11-09 11:13:11 -08:00
collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.9, 0.4},
visual = "mesh",
mesh = "mobs_stone_monster.x",
textures = {
{"mobs_dirt_monster.png"},
2014-12-03 11:45:18 -08:00
},
2014-11-09 11:13:11 -08:00
visual_size = {x=3, y=2.6},
blood_texture = "default_dirt.png",
2014-11-09 11:13:11 -08:00
makes_footstep_sound = true,
sounds = {
random = "mobs_dirtmonster",
},
2014-11-09 11:13:11 -08:00
view_range = 15,
walk_velocity = 1,
run_velocity = 3,
jump = true,
2014-11-09 11:13:11 -08:00
drops = {
{name = "default:dirt",
chance = 1, min = 3, max = 5},
2014-11-09 11:13:11 -08:00
},
water_damage = 1,
lava_damage = 5,
light_damage = 2,
animation = {
speed_normal = 15, speed_run = 15,
stand_start = 0, stand_end = 14,
walk_start = 15, walk_end = 38,
run_start = 40, run_end = 63,
punch_start = 40, punch_end = 63,
},
2014-11-09 11:13:11 -08:00
})
2015-04-09 08:09:10 -07:00
2015-04-12 05:46:49 -07:00
mobs:register_spawn("mobs:dirt_monster", {"default:dirt_with_grass", "ethereal:gray_dirt"}, 5, 0, 7000, 1, 31000)
2015-04-09 08:09:10 -07:00
2015-02-20 08:37:36 -08:00
mobs:register_egg("mobs:dirt_monster", "Dirt Monster", "default_dirt.png", 1)