Being drunk improves mood (#39525)

At last, the bartender finds his purpose. This may be a bit strong but I think
making the bar the best place to go to improve mood is a good thing.
This commit is contained in:
Mickyan
2018-08-05 02:27:50 +02:00
committed by Tad Hardesty
parent 341afe77e0
commit c2f7b80c8f
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -2,6 +2,11 @@
mood_change = 6
description = "<span class='nicegreen'>Woooow duudeeeeee...I'm tripping baaalls...</span>\n"
/datum/mood_event/drugs/drunk
mood_change = 4
description = "<span class='nicegreen'>Everything just feels better after a drink or two.</span>\n"
timeout = 3000
/datum/mood_event/drugs/smoked
description = "<span class='nicegreen'>I have had a smoke recently.</span>\n"
mood_change = 2
+1
View File
@@ -424,6 +424,7 @@ GLOBAL_LIST_INIT(ballmer_windows_me_msg, list("Yo man, what if, we like, uh, put
if(drunkenness)
drunkenness = max(drunkenness - (drunkenness * 0.04), 0)
if(drunkenness >= 6)
SEND_SIGNAL(src, COMSIG_ADD_MOOD_EVENT, "drunk", /datum/mood_event/drugs/drunk)
if(prob(25))
slurring += 2
jitteriness = max(jitteriness - 3, 0)