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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nerfs fugu gland somewhat #10554

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -137,9 +137,9 @@
A.buffed++
A.maxHealth *= 1.5
A.health = min(A.maxHealth,A.health*1.5)
A.melee_damage = max((A.melee_damage * 2), 10)
A.melee_damage = max((A.melee_damage * 1.5), 10)
A.obj_damage = max(A.melee_damage, A.obj_damage) //Some mobs already have turbo object damage, and this doesn't need to be boosted. This ensures it's never less than their basic damage though.
A.transform *= 2
A.environment_smash |= ENVIRONMENT_SMASH_STRUCTURES | ENVIRONMENT_SMASH_RWALLS
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isn't this just an AI flag which lets them know they are capable of breaking walls?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alright yeah, this entire PR was born of me being lied to and mis-interpreting the code afterwards.
Not anything wrong with fugu glands, though I do still think the 100% boost in damage is a bit steep.

to_chat(user, "<span class='info'>You increase the size of [A], giving it a surge of strength!</span>")
qdel(src)

Expand Down