Skip to content

Change: Decrease damage radius of GLA Demo death weapon #2420

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
date: 2024-06-11

title: Decreases damage radius of destroyed GLA Demo units after Demo Upgrade from 70 to 50

changes:
- tweak: The destroyed GLA Demo units after Demo Upgrade have their damage radius reduced from 70 to 50. This matches the damage radius of other demolition suicide weapons.

labels:
- controversial
- design
- gla
- minor
- nerf
- v1.0

links:
- https://github.com/TheSuperHackers/GeneralsGamePatch/pull/2420

authors:
- xezon
9 changes: 5 additions & 4 deletions Patch104pZH/GameFilesEdited/Data/INI/Weapon.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2962,7 +2962,7 @@ Weapon QuadCannonGunUpgradeTwoAir
End

;------------------------------------------------------------------------------
Weapon SuicideBomb
Weapon SuicideBomb ; unused
PrimaryDamage = 300.0
PrimaryDamageRadius = 10.0
SecondaryDamage = 60.0
Expand Down Expand Up @@ -7245,12 +7245,13 @@ Weapon Demo_SuicideDynamitePackPlusFire
End

; Patch104p @bugfix xezon 16/09/2023 Changes death type from NORMAL. (#2367)
; Patch104p @tweak xezon 11/06/2024 Decreases damage radii to better match the other suicide weapons. (#2420)
;------------------------------------------------------------------------------
Weapon Demo_DestroyedWeapon
PrimaryDamage = 50.0
PrimaryDamageRadius = 60.0
SecondaryDamage = 10.0
SecondaryDamageRadius = 70.0
PrimaryDamageRadius = 40.0 ; Patch104p @tweak from 60. (#2420)
SecondaryDamage = 30.0 ; Patch104p @tweak from 10. (#2420)
SecondaryDamageRadius = 50.0 ; Patch104p @tweak from 70. (#2420)
AttackRange = 5.0 ; must be very close to use this weapon!
DamageType = EXPLOSION
DeathType = EXPLODED
Expand Down