Skip to content

Commit

Permalink
Reduce frag grenade power
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioSMB committed Feb 14, 2025
1 parent 793c5cc commit 235e6a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions mod/quake/common/monsters/monster/gug.qc
Original file line number Diff line number Diff line change
Expand Up @@ -451,15 +451,15 @@ void BileFragTouch(entity this, entity toucher)
vector org = this.origin - 8 * normalize(this.velocity);
if(toucher.takedamage)
{
T_Damage(toucher, this, this.owner, 20, this.projectiledeathtype);
T_RadiusDamage(this, this.owner, 60 * 0.5, this.projectiledeathtype, toucher);
T_Damage(toucher, this, this.owner, 15, this.projectiledeathtype);
T_RadiusDamage(this, this.owner, 50 * 0.4, this.projectiledeathtype, toucher);
}
else
{
if(this.nextthink > time)
return;

T_RadiusDamage(this, this.owner, 60, this.projectiledeathtype, NULL);
T_RadiusDamage(this, this.owner, 50 * 0.4, this.projectiledeathtype, NULL);
}
te_explosion2(org, 240, 3);
_sound(this, CH_WEAPON_SINGLE, "gug/bile.wav", 0.5 + 0.5 * random(), 0.8);
Expand Down
2 changes: 1 addition & 1 deletion mod/quake/common/monsters/monster/gug.qh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include "../all.qh"

MSG_INFO_NOTIF(DEATH_SELF_MON_GUG, 1, 2, 0, "s1 s2", "", "", _("^BG%s%s^K1's skull was caved in by a Gug"), "")
MSG_INFO_NOTIF(DEATH_SELF_MON_GUG, 1, 2, 0, "s1 s2", "", "", _("^BG%s%s^K1 was hawk tuah'd by a Gug"), "")
MSG_MULTI_NOTIF(DEATH_SELF_MON_GUG, 1, NULL, INFO_DEATH_SELF_MON_GUG, CENTER_DEATH_SELF_MONSTER)
REGISTER_DEATHTYPE(MONSTER_GUG, DEATH_SELF_MON_GUG, DEATH_MURDER_MONSTER, "monster")

Expand Down

0 comments on commit 235e6a6

Please sign in to comment.