Nuka cola speed buff nerf (#14815)

* Nuka cola now gives radiation

* Moxian review

Co-authored-by: moxian <moxian@users.noreply.github.com>

* Nerf speed, remove radiation

Co-authored-by: moxian <moxian@users.noreply.github.com>
This commit is contained in:
Varghh
2020-12-22 11:19:03 -05:00
committed by GitHub
co-authored by moxian
parent 3f6b7de694
commit e54fad8525
3 changed files with 5 additions and 2 deletions
@@ -228,6 +228,8 @@
if(has_gravity(H))
if(H.status_flags & GOTTAGOFAST)
. -= 1
else if(H.status_flags & GOTTAGONOTSOFAST)
. -= 0.5
var/ignoreslow = FALSE
if((H.status_flags & IGNORESLOWDOWN) || (RUN in H.mutations))
@@ -73,11 +73,11 @@
update_flags |= M.Druggy(30, FALSE)
M.AdjustDizzy(5)
M.SetDrowsy(0)
M.status_flags |= GOTTAGOFAST
M.status_flags |= GOTTAGONOTSOFAST
return ..() | update_flags
/datum/reagent/consumable/drink/cold/nuka_cola/on_mob_delete(mob/living/M)
M.status_flags &= ~GOTTAGOFAST
M.status_flags &= ~GOTTAGONOTSOFAST
..()
/datum/reagent/consumable/drink/cold/spacemountainwind