From f463564ed2a1e76ce7c55470d8e19861fe62fe74 Mon Sep 17 00:00:00 2001 From: Magnus Date: Mon, 9 Jan 2006 00:36:36 +0000 Subject: [PATCH] *** empty log message *** git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1827 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- quakec/fallout2/hknight.qc | 10 +++++----- quakec/fallout2/progs.src | 3 +++ quakec/fallout2/shalrath.qc | 8 ++++---- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/quakec/fallout2/hknight.qc b/quakec/fallout2/hknight.qc index 6680448f..50adcdba 100644 --- a/quakec/fallout2/hknight.qc +++ b/quakec/fallout2/hknight.qc @@ -420,11 +420,11 @@ void() monster_hell_knight = setmodel (self, "progs/hknight.mdl"); setsize (self, '-16 -16 -24', '16 16 40'); - self.health = 250; - self.armor = 12; - self.armortype = 0.1; - self.helmet = 2; - self.corporation = 3; + self.health = 125; + self.islot3 = 10; //hell-knight armor + self.armortype = 0.30; + self.helmet = 1; + self.team = 3; self.classname = "monster"; self.netname = "reaver"; self.th_stand = hknight_stand1; diff --git a/quakec/fallout2/progs.src b/quakec/fallout2/progs.src index 29b829e9..f98e098e 100644 --- a/quakec/fallout2/progs.src +++ b/quakec/fallout2/progs.src @@ -27,6 +27,9 @@ soldier.qc demon.qc boss.qc knight.qc +hknight.qc +shalrath.qc +shambler.qc wizard.qc dog.qc ogre.qc diff --git a/quakec/fallout2/shalrath.qc b/quakec/fallout2/shalrath.qc index c58b48e5..812d23a2 100644 --- a/quakec/fallout2/shalrath.qc +++ b/quakec/fallout2/shalrath.qc @@ -177,7 +177,7 @@ void() ShalMissileTouch = if (other.classname == "monster_zombie") 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); WriteByte (MSG_BROADCAST, SVC_TEMPENTITY); @@ -214,9 +214,9 @@ void() monster_shalrath = setmodel (self, "progs/shalrath.mdl"); setsize (self, VEC_HULL2_MIN, VEC_HULL2_MAX); self.health = 800; - self.corporation = 3; - self.armor = 9; - self.armortype = 0.2; + self.team = 3; + self.islot3 = 11; //vore armor + self.armortype = 0.1; self.helmet = 1; self.classname = "monster"; self.netname = "experiment";