mobs_monster/dirt_monster.lua

67 lines
1.3 KiB
Lua
Raw Normal View History

2016-04-15 16:00:45 +02:00
2016-06-11 12:03:00 +02:00
local S = mobs.intllib
2016-04-15 16:00:45 +02:00
-- Dirt Monster by PilzAdam
mobs:register_mob("mobs_monster:dirt_monster", {
type = "monster",
passive = false,
attack_type = "dogfight",
pathfinding = true,
reach = 2,
damage = 2,
hp_min = 3,
hp_max = 27,
armor = 100,
collisionbox = {-0.4, -1, -0.4, 0.4, 0.8, 0.4},
visual = "mesh",
mesh = "mobs_stone_monster.b3d",
textures = {
{"mobs_dirt_monster.png"},
},
blood_texture = "default_dirt.png",
makes_footstep_sound = true,
sounds = {
random = "mobs_dirtmonster",
},
view_range = 15,
walk_velocity = 1,
run_velocity = 3,
jump = true,
drops = {
{name = "default:dirt", chance = 1, min = 3, max = 5},
},
water_damage = 1,
lava_damage = 5,
2016-10-24 19:26:13 +02:00
light_damage = 3,
2016-04-15 16:00:45 +02:00
fear_height = 4,
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,
},
})
2016-10-29 17:48:04 +02:00
mobs:spawn({
name = "mobs_monster:dirt_monster",
nodes = {"default:dirt_with_grass", "ethereal:gray_dirt"},
min_light = 0,
max_light = 7,
chance = 7000,
active_object_count = 2,
min_height = 0,
day_toggle = false,
})
2016-04-15 16:00:45 +02:00
2016-06-11 12:03:00 +02:00
mobs:register_egg("mobs_monster:dirt_monster", S("Dirt Monster"), "default_dirt.png", 1)
2016-04-15 16:00:45 +02:00
-- compatibility
mobs:alias_mob("mobs:dirt_monster", "mobs_monster:dirt_monster")