forked from Sandstorm-Station/Sandstorm-Station-13
-
-
Notifications
You must be signed in to change notification settings - Fork 284
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #916 from SPLURT-Station/sexter
Adds a new antag: "Dark Passenger"
- Loading branch information
Showing
3 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/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) | ||
. = ..() |
13 changes: 13 additions & 0 deletions
13
modular_splurt/code/modules/antagonists/dark_passenger/datum_dark_passenger.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/datum/antagonist/dark_passenger | ||
name = "Dark Passenger" | ||
job_rank = ROLE_TRAITOR | ||
|
||
/datum/antagonist/dark_passenger/greet() | ||
to_chat(owner, span_warning("You feel the intrusive thoughts taking over your mind...")) | ||
to_chat(owner, span_boldwarning("Ahelp IMMEDIATELY if you got this antag in any way that wasn't through admin intervention.")) | ||
owner.announce_objectives() | ||
antag_memory += "I just know there's something dark in me. I hide it. I certainly don't talk about it. But it's there. Always. This 'Dark Passenger.' And when he's driving, I feel...alive. Half sick with the thrill of complete wrongness. I don't fight him. I don't want to." | ||
|
||
/datum/antagonist/dark_passenger/farewell() | ||
to_chat(owner, span_warning("The intrusive thoughts begin to fade away...")) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters