mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
* start * see you space cowboy * a * red eye * woopsie * bad * can_synth = false so no you cant duplicate redspace * misplaced * examine but its prolly a little messy * s
65 lines
2.0 KiB
Plaintext
65 lines
2.0 KiB
Plaintext
/datum/mood_event/high
|
|
mood_change = 6
|
|
description = "<span class='nicegreen'>Woooow duudeeeeee...I'm tripping baaalls...</span>\n"
|
|
|
|
/datum/mood_event/red_eye
|
|
mood_change = 10
|
|
description = "<span class='nicegreen'>Keep those eyes open...</span>\n"
|
|
|
|
/datum/mood_event/smoked
|
|
description = "<span class='nicegreen'>I have had a smoke recently.</span>\n"
|
|
mood_change = 2
|
|
timeout = 6 MINUTES
|
|
|
|
/datum/mood_event/wrong_brand
|
|
description = "<span class='warning'>I hate that brand of cigarettes.</span>\n"
|
|
mood_change = -2
|
|
timeout = 6 MINUTES
|
|
|
|
/datum/mood_event/overdose
|
|
mood_change = -8
|
|
timeout = 5 MINUTES
|
|
|
|
/datum/mood_event/overdose/add_effects(drug_name)
|
|
description = "<span class='warning'>I think I took a bit too much of that [drug_name]</span>\n"
|
|
|
|
/datum/mood_event/withdrawal_light
|
|
mood_change = -2
|
|
|
|
/datum/mood_event/withdrawal_light/add_effects(drug_name)
|
|
description = "<span class='warning'>I could use some [drug_name]</span>\n"
|
|
|
|
/datum/mood_event/withdrawal_medium
|
|
mood_change = -5
|
|
|
|
/datum/mood_event/withdrawal_medium/add_effects(drug_name)
|
|
description = "<span class='warning'>I really need [drug_name]</span>\n"
|
|
|
|
/datum/mood_event/withdrawal_severe
|
|
mood_change = -8
|
|
|
|
/datum/mood_event/withdrawal_severe/add_effects(drug_name)
|
|
description = "<span class='boldwarning'>Oh god I need some [drug_name]</span>\n"
|
|
|
|
/datum/mood_event/withdrawal_critical
|
|
mood_change = -10
|
|
|
|
/datum/mood_event/withdrawal_critical/add_effects(drug_name)
|
|
description = "<span class='boldwarning'>[drug_name]! [drug_name]! [drug_name]!</span>\n"
|
|
|
|
/datum/mood_event/happiness_drug
|
|
description = "<span class='nicegreen'>I can't feel anything and I never want this to end.</span>\n"
|
|
mood_change = 50
|
|
|
|
/datum/mood_event/happiness_drug_good_od
|
|
description = "<span class='nicegreen'>YES! YES!! YES!!!</span>\n"
|
|
mood_change = 100
|
|
timeout = 30 SECONDS
|
|
special_screen_obj = "mood_happiness_good"
|
|
|
|
/datum/mood_event/happiness_drug_bad_od
|
|
description = "<span class='boldwarning'>NO! NO!! NO!!!</span>\n"
|
|
mood_change = -100
|
|
timeout = 30 SECONDS
|
|
special_screen_obj = "mood_happiness_bad"
|