forked from Occulus-Server/Occulus-Eris
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
56b1bc2
commit 86721e0
Showing
5 changed files
with
41 additions
and
2 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
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
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
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,19 @@ | ||
// Stat Loss breakdown, negative mirror of lesson learnt | ||
/datum/breakdown/negative/forgotten | ||
name = "A Lesson Forgotten" | ||
duration = 0 | ||
restore_sanity_post = 50 | ||
|
||
start_messages = list( | ||
"Your experience weighs you down, each one making you worse", | ||
"Nothing in your mind clicks anymore, you feel more incompetent", | ||
"Your past mistakes haunt you, and they keep repeating", | ||
"You've forgotten what you've learned in the past", | ||
"Nothing makes sense anymore!" | ||
) | ||
|
||
// This is like a negative mirror of A Lesson Learnt, stat loss is less harsh but still significant | ||
/datum/breakdown/negative/forgotten/conclude() | ||
for(var/stat in ALL_STATS) | ||
holder.owner.stats.changeStat(stat, -rand(2,5)) | ||
..() |
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