From ed2cdd502a9b806bd95df18cb38cb1cfe3dc2e50 Mon Sep 17 00:00:00 2001 From: "Timothy C. McGrath" Date: Thu, 19 Feb 2004 08:26:38 +0000 Subject: [PATCH] Fixed a bug: Normal fish deaths were not producing sounds. Oops. Made fish health a little more realistic. Fish can now be gibbed (it's HARD) by a super shotgun blast to the face. You have to be extremely close and hit with all of the pellets. :) Hikaru --- quake/fish.qc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/quake/fish.qc b/quake/fish.qc index ccdc90f..6aad2bf 100644 --- a/quake/fish.qc +++ b/quake/fish.qc @@ -135,7 +135,7 @@ void() f_death21 =[ $death21, f_death21 ] { void () f_death = { - if (self.health < -35) { + if (self.health < -25) { sound (self, CHAN_VOICE, "player/udeath.wav", 1, ATTN_NORM); ThrowGib ("progs/gib3.mdl", self.health); ThrowGib ("progs/gib3.mdl", self.health); @@ -148,6 +148,7 @@ void () f_death = if (!respawn_enabled) killed_monsters++; + sound (self, CHAN_VOICE, "fish/death.wav", 1, ATTN_NORM); f_death1 (); }; @@ -191,7 +192,7 @@ void() monster_fish = setmodel (self, "progs/fish.mdl"); setsize (self, '-16 -16 -24', '16 16 24'); - self.health = 25; + self.health = 20; self.th_stand = f_stand1; self.th_walk = f_walk1;