Skip to content
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

Combine Ahwassa bomb's final 3 damage instances into 1 #6563

Merged
merged 3 commits into from
Jan 6, 2025
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
3 changes: 3 additions & 0 deletions changelog/snippets/balance.6563.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- (#6563) Combine Ahwassa's final 3 damage instances into 1 damage instance.
- Greatly improves the effectiveness of stacked low HP shields, such as the UEF and Aeon mobile shields.
- Fixes Ahwassa not overkilling units as much as it should, and leaving more reclaim because of that.
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,9 @@ SBOOhwalliStategicBomb01 = ClassProjectile(SOhwalliStrategicBombProjectile) {
DamageArea(instigator, position, 0.9 * radius, 1, 'TreeFire', true, true)

-- wait for the full explosion and then deal the remaining damage
WaitTicks(26)
DamageArea(instigator, position, 0.2 * radius, 1, 'Disintegrate', true, true)
DamageArea(instigator, position, radius, 0.3 * damage, damageType, damageFriendly, damageSelf)
WaitTicks(1)
DamageArea(instigator, position, 0.3 * radius, 1, 'Disintegrate', true, true)
DamageArea(instigator, position, radius, 0.3 * damage, damageType, damageFriendly, damageSelf)
WaitTicks(1)
WaitTicks(28)
DamageArea(instigator, position, 0.4 * radius, 1, 'Disintegrate', true, true)
DamageArea(instigator, position, radius, 0.3 * damage, damageType, damageFriendly, damageSelf)
DamageArea(instigator, position, radius, 0.9 * damage, damageType, damageFriendly, damageSelf)
end,
}
TypeClass = SBOOhwalliStategicBomb01
Loading