*** empty log message ***
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1827 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
72aff09dd1
commit
f463564ed2
3 changed files with 12 additions and 9 deletions
|
@ -420,11 +420,11 @@ void() monster_hell_knight =
|
||||||
setmodel (self, "progs/hknight.mdl");
|
setmodel (self, "progs/hknight.mdl");
|
||||||
|
|
||||||
setsize (self, '-16 -16 -24', '16 16 40');
|
setsize (self, '-16 -16 -24', '16 16 40');
|
||||||
self.health = 250;
|
self.health = 125;
|
||||||
self.armor = 12;
|
self.islot3 = 10; //hell-knight armor
|
||||||
self.armortype = 0.1;
|
self.armortype = 0.30;
|
||||||
self.helmet = 2;
|
self.helmet = 1;
|
||||||
self.corporation = 3;
|
self.team = 3;
|
||||||
self.classname = "monster";
|
self.classname = "monster";
|
||||||
self.netname = "reaver";
|
self.netname = "reaver";
|
||||||
self.th_stand = hknight_stand1;
|
self.th_stand = hknight_stand1;
|
||||||
|
|
|
@ -27,6 +27,9 @@ soldier.qc
|
||||||
demon.qc
|
demon.qc
|
||||||
boss.qc
|
boss.qc
|
||||||
knight.qc
|
knight.qc
|
||||||
|
hknight.qc
|
||||||
|
shalrath.qc
|
||||||
|
shambler.qc
|
||||||
wizard.qc
|
wizard.qc
|
||||||
dog.qc
|
dog.qc
|
||||||
ogre.qc
|
ogre.qc
|
||||||
|
|
|
@ -177,7 +177,7 @@ void() ShalMissileTouch =
|
||||||
|
|
||||||
if (other.classname == "monster_zombie")
|
if (other.classname == "monster_zombie")
|
||||||
T_Damage (other, self, self, 110);
|
T_Damage (other, self, self, 110);
|
||||||
T_RadiusDamage (self, self.owner, 40, world);
|
T_RadiusDamage (self, self.owner, 40, world, "vore");
|
||||||
sound (self, CHAN_WEAPON, "weapons/r_exp3.wav", 1, ATTN_NORM);
|
sound (self, CHAN_WEAPON, "weapons/r_exp3.wav", 1, ATTN_NORM);
|
||||||
|
|
||||||
WriteByte (MSG_BROADCAST, SVC_TEMPENTITY);
|
WriteByte (MSG_BROADCAST, SVC_TEMPENTITY);
|
||||||
|
@ -214,9 +214,9 @@ void() monster_shalrath =
|
||||||
setmodel (self, "progs/shalrath.mdl");
|
setmodel (self, "progs/shalrath.mdl");
|
||||||
setsize (self, VEC_HULL2_MIN, VEC_HULL2_MAX);
|
setsize (self, VEC_HULL2_MIN, VEC_HULL2_MAX);
|
||||||
self.health = 800;
|
self.health = 800;
|
||||||
self.corporation = 3;
|
self.team = 3;
|
||||||
self.armor = 9;
|
self.islot3 = 11; //vore armor
|
||||||
self.armortype = 0.2;
|
self.armortype = 0.1;
|
||||||
self.helmet = 1;
|
self.helmet = 1;
|
||||||
self.classname = "monster";
|
self.classname = "monster";
|
||||||
self.netname = "experiment";
|
self.netname = "experiment";
|
||||||
|
|
Loading…
Reference in a new issue