Skip to content

Commit

Permalink
Nerfs the health of basic giant spiders (shiptest-ss13#4107)
Browse files Browse the repository at this point in the history
## About The Pull Request

Nerfs the health of basic giant spiders from 200 to 60.

All other health thresholds are untouched.

## Why It's Good For The Game

They had more health than the supposedly "tanky" Tarantulas, and
oftentimes took more rounds to down than a goliath. All other spiders
had around 40 health so I believe this was likely an oversight, but as
the basic spiders were incredibly fast with this health it made them
very hard to fight and very punishing being that they poison people.

## Changelog

:cl:
balance: Basic spiders no longer take more bullets than your average
frontiersman.
/:cl:
  • Loading branch information
firebudgy authored and MrCat15352 committed Feb 16, 2025
1 parent 589590a commit 84b4d5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/living/simple_animal/hostile/giant_spider.dm
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
response_help_simple = "pet"
response_disarm_continuous = "gently pushes aside"
response_disarm_simple = "gently push aside"
maxHealth = 200
health = 200
maxHealth = 60
health = 60
obj_damage = 60
melee_damage_lower = 15
melee_damage_upper = 20
Expand Down

0 comments on commit 84b4d5c

Please sign in to comment.