1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-18 10:40:22 +02:00
server-nalc/mods/mobs/dirtmonster.lua

58 lines
1.5 KiB
Lua
Raw Normal View History

-- Dirt Monster by PilzAdam
2014-10-28 18:01:32 +01:00
mobs:register_mob("mobs:dirt_monster", {
-- animal, monster, npc, barbarian
2014-10-28 18:01:32 +01:00
type = "monster",
-- aggressive, deals 6 damage to player when hit
passive = false,
attack_type = "dogfight",
damage = 6,
-- health & armor
hp_min = 25,
hp_max = 30,
armor = 90,
-- textures and model
2014-10-28 18:01:32 +01: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-10-28 18:01:32 +01:00
visual_size = {x=3, y=2.6},
blood_texture = "default_dirt.png",
-- sounds
2014-10-28 18:01:32 +01:00
makes_footstep_sound = true,
sounds = {
random = "mobs_dirtmonster",
},
-- speed and jump
2014-10-28 18:01:32 +01:00
view_range = 16,
walk_velocity = 3,
run_velocity = 5,
jump = true,
-- drops dirt and coins when dead
2014-10-28 18:01:32 +01:00
drops = {
{name = "default:dirt",
chance = 1, min = 3, max = 5,},
{name = "maptools:silver_coin",
chance = 2, min = 1, max = 1,},
2014-10-28 18:01:32 +01:00
},
-- damaged by
2014-10-28 18:01:32 +01:00
water_damage = 1,
lava_damage = 5,
light_damage = 2,
-- model animation
2014-10-28 18:01:32 +01:00
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-10-28 18:01:32 +01:00
},
})
-- spawn on normal;grey dirt between -1 and 5 light, 1 in 7000 change, 1 dirt monster in area up to 31000 in height
mobs:register_spawn("mobs:dirt_monster", {"default:dirt_with_grass"}, 5, -1, 9500, 1, 31000)
-- register spawn egg
2015-02-26 01:40:22 +01:00
mobs:register_egg("mobs:dirt_monster", "Dirt Monster", "default_dirt.png", 1)