slight nerfs to Jimmy W. Campbell's "The Thing" (©2025) (#89527)

## About The Pull Request
tweaks some stats of The Thing as a boss to make it slightly more
bearable to fight specially for people with higher ping.
more specifically increasing some of the telegraphs' time and reducing
some wound chances, also halved the charge's knockdown time (1s to 0.5s)

also (i think) fixed an issue where the spike walls that the thing
summons destroy items on the floor (sucks ass to have your pkcrusher
destroyed)
## Why It's Good For The Game

the thing is one of if not the most fun megafauna added so far, as it's
the first basic mob boss, but it's a bit hard to keep up with specially
if you're a high ping player, the boss itself is also not in a
depressurized enviroment so i think it's justified to make it a bit
easier to dodge since some of the healing items miners have only work in
low pressure
## Changelog
🆑
balance: nerfed Icebox's "The Thing" boss
fix: fixed "The Thing" 's spike walls destroying items on the floor when
summoned
/🆑
This commit is contained in:
LePiromano
2025-02-19 01:56:41 -03:00
committed by Roxy
parent d3b9f230d7
commit f64bbf74df
3 changed files with 6 additions and 6 deletions
@@ -21,8 +21,8 @@
var/mob/living/living_victim = potential_target
if(isliving(living_victim))
hit_someone = TRUE
living_victim.apply_damage(40, damagetype = BRUTE, sharpness = SHARP_POINTY)
else if(potential_target.uses_integrity && !(potential_target.resistance_flags & INDESTRUCTIBLE) && !(initial(potential_target.density)) && !HAS_TRAIT(potential_target, TRAIT_UNDERFLOOR))
living_victim.apply_damage(40, damagetype = BRUTE, sharpness = SHARP_POINTY, wound_bonus = -10)
else if(potential_target.uses_integrity && !(potential_target.resistance_flags & INDESTRUCTIBLE) && initial(potential_target.density) && !HAS_TRAIT(potential_target, TRAIT_UNDERFLOOR))
potential_target.take_damage(100, BRUTE)
if (hit_someone)
expiry_time /= 2