1 #ifdef REGISTER_MONSTER
4 /* function */ m_zombie,
6 /* mins,maxs */ '-18 -18 -25', '18 18 47',
7 /* model */ "zombie.dpm",
8 /* netname */ "zombie",
9 /* fullname */ _("Zombie")
12 #define ZOMBIE_SETTINGS(monster) \
13 MON_ADD_CVAR(monster, health) \
14 MON_ADD_CVAR(monster, attack_melee_damage) \
15 MON_ADD_CVAR(monster, attack_melee_delay) \
16 MON_ADD_CVAR(monster, attack_leap_damage) \
17 MON_ADD_CVAR(monster, attack_leap_force) \
18 MON_ADD_CVAR(monster, attack_leap_speed) \
19 MON_ADD_CVAR(monster, attack_leap_delay) \
20 MON_ADD_CVAR(monster, speed_stop) \
21 MON_ADD_CVAR(monster, speed_run) \
22 MON_ADD_CVAR(monster, speed_walk)
25 ZOMBIE_SETTINGS(zombie)
29 const float zombie_anim_attackleap = 0;
30 const float zombie_anim_attackrun1 = 1;
31 const float zombie_anim_attackrun2 = 2;
32 const float zombie_anim_attackrun3 = 3;
33 const float zombie_anim_attackstanding1 = 4;
34 const float zombie_anim_attackstanding2 = 5;
35 const float zombie_anim_attackstanding3 = 6;
36 const float zombie_anim_blockend = 7;
37 const float zombie_anim_blockstart = 8;
38 const float zombie_anim_deathback1 = 9;
39 const float zombie_anim_deathback2 = 10;
40 const float zombie_anim_deathback3 = 11;
41 const float zombie_anim_deathfront1 = 12;
42 const float zombie_anim_deathfront2 = 13;
43 const float zombie_anim_deathfront3 = 14;
44 const float zombie_anim_deathleft1 = 15;
45 const float zombie_anim_deathleft2 = 16;
46 const float zombie_anim_deathright1 = 17;
47 const float zombie_anim_deathright2 = 18;
48 const float zombie_anim_idle = 19;
49 const float zombie_anim_painback1 = 20;
50 const float zombie_anim_painback2 = 21;
51 const float zombie_anim_painfront1 = 22;
52 const float zombie_anim_painfront2 = 23;
53 const float zombie_anim_runbackwards = 24;
54 const float zombie_anim_runbackwardsleft = 25;
55 const float zombie_anim_runbackwardsright = 26;
56 const float zombie_anim_runforward = 27;
57 const float zombie_anim_runforwardleft = 28;
58 const float zombie_anim_runforwardright = 29;
59 const float zombie_anim_spawn = 30;
61 void zombie_attack_leap_touch()
70 angles_face = vectoangles(self.moveto - self.origin);
71 angles_face = normalize(angles_face) * MON_CVAR(zombie, attack_leap_force);
72 Damage(other, self, self, MON_CVAR(zombie, attack_leap_damage) * monster_skill, DEATH_MONSTER_ZOMBIE_JUMP, other.origin, angles_face);
73 self.touch = MonsterTouch; // instantly turn it off to stop damage spam
76 if (trace_dphitcontents)
77 self.touch = MonsterTouch;
80 float zombie_attack(float attack_type)
84 case MONSTER_ATTACK_MELEE:
86 float rand = random(), chosen_anim;
89 chosen_anim = zombie_anim_attackstanding1;
91 chosen_anim = zombie_anim_attackstanding2;
93 chosen_anim = zombie_anim_attackstanding3;
95 monsters_setframe(chosen_anim);
97 self.attack_finished_single = time + MON_CVAR(zombie, attack_melee_delay);
99 monster_melee(self.enemy, MON_CVAR(zombie, attack_melee_damage), 0.3, DEATH_MONSTER_ZOMBIE_MELEE, TRUE);
103 case MONSTER_ATTACK_RANGED:
105 makevectors(self.angles);
106 if(monster_leap(zombie_anim_attackleap, zombie_attack_leap_touch, v_forward * MON_CVAR(zombie, attack_leap_speed) + '0 0 200', MON_CVAR(zombie, attack_leap_delay)))
114 void spawnfunc_monster_zombie()
116 self.classname = "monster_zombie";
118 self.monster_spawnfunc = spawnfunc_monster_zombie;
120 self.spawnflags |= MONSTER_RESPAWN_DEATHPOINT;
122 if(Monster_CheckAppearFlags(self))
125 if not(monster_initialize(MON_ZOMBIE, FALSE)) { remove(self); return; }
128 float m_zombie(float req)
134 monster_move(MON_CVAR(zombie, speed_run), MON_CVAR(zombie, speed_walk), MON_CVAR(zombie, speed_stop), zombie_anim_runforward, zombie_anim_runforward, zombie_anim_idle);
139 monsters_setframe((random() > 0.5) ? zombie_anim_deathback1 : zombie_anim_deathfront1);
144 if not(self.health) self.health = MON_CVAR(zombie, health);
146 self.monster_attackfunc = zombie_attack;
147 monsters_setframe(zombie_anim_spawn);
148 self.spawn_time = time + 2.1;
149 self.spawnshieldtime = self.spawn_time;
150 self.respawntime = 0.1;
161 MON_CONFIG_SETTINGS(ZOMBIE_SETTINGS(zombie))
171 float m_zombie(float req)
182 precache_model ("models/monsters/zombie.dpm");
191 #endif // REGISTER_MONSTER