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/zombie.lua
Quentin BUISSON-DEBON 2029fd7428 Prepare the next update of the mobs mod
- Prepared the update of Minotaur (renamed this mob minotaur)
- NPC tamed with 4 diamonds now do 4 damage (before 6)
- Wolf can now be tamed in exchange of 4 "raw_meat" and become dog, the dog can be healed with "raw_meat" (need to be change, maybe conflicted)
- The dog mob is less powerful than the wolf (-2 damage, less walk/run velocity) => the explanation for this "nerf" is simple, the dog is almost free, compared to the NPC who costs 4 diamonds ! :)
- Add one sound when wolfs attack
- One small fix for the zombie monster
- Add a pre-alpha version of yeti, many things missing for the moment (yeti is a monster who spawns in snow biome and attack wit snowball)
2015-04-28 15:45:35 +02:00

62 lines
1.4 KiB
Lua

-- Zombie by BlockMen
mobs:register_mob("mobs:zombie", {
-- animal, monster, npc, barbarian
type = "monster",
-- aggressive, deals 6 damage to player when hit
passive = false,
attack_type = "dogfight",
damage = 6,
-- health & armor
hp_min = 30,
hp_max = 40,
armor = 100,
-- textures and model
collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.9, 0.4},
visual = "mesh",
mesh = "mobs_zombie.x",
textures = {
{"mobs_zombie.png"},
},
visual_size = {x=1, y=1},
blood_texture = "mobs_blood.png",
-- sounds
makes_footstep_sound = true,
sounds = {
random = "mobs_zombie",
damage = "mobs_zombie_hit",
attack = "mobs_zombie_attack",
death = "mobs_zombie_death",
},
-- speed and jump
walk_velocity = 1,
run_velocity = 3,
jump = true,
floats = 0,
view_range = 10,
-- drops dirt and coins when dead
drops = {
{name = "maptools:copper_coin",
chance = 2, min = 2, max = 8,},
},
-- damaged by
water_damage = 1,
lava_damage = 5,
light_damage = 2,
-- model animation
animation = {
speed_normal = 10, speed_run = 15,
stand_start = 0, stand_end = 79,
walk_start = 168, walk_end = 188,
run_start = 168, run_end = 188,
-- punch_start = 168, punch_end = 188,
},
})
-- spawn in nether forest between -1 and 5 light, 1 in 6000 change, 1 zombie in area up to 31000 in height
mobs:register_spawn("mobs:zombie", {"nether:dirt_top"}, 5, -1, 6000, 1, 31000)
-- register spawn egg
mobs:register_egg("mobs:zombie", "Zombie", "mobs_zombie_head.png", 1)