mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-22 04:07:04 +01:00
15 lines
537 B
Plaintext
15 lines
537 B
Plaintext
/datum/brain_trauma/severe/dark_passenger
|
|
name = "Severe intrusive thoughts"
|
|
desc = "Patient presents erratic and hazardous behavior for unknown motives."
|
|
gain_text = ""
|
|
lose_text = span_warning("You've won the battle against your intrusive thoughts!")
|
|
random_gain = FALSE
|
|
|
|
/datum/brain_trauma/severe/dark_passenger/on_gain()
|
|
owner.mind.add_antag_datum(/datum/antagonist/dark_passenger)
|
|
. = ..()
|
|
|
|
/datum/brain_trauma/severe/dark_passenger/on_lose(silent)
|
|
owner.mind.remove_antag_datum(/datum/antagonist/dark_passenger)
|
|
. = ..()
|