-
Notifications
You must be signed in to change notification settings - Fork 275
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some minor bloodsucker fixes (#4886)
* Some minor bloodsucker fixes * Spellcheck my spellcheck * fix moodlets
- Loading branch information
Showing
5 changed files
with
14 additions
and
11 deletions.
There are no files selected for viewing
16 changes: 8 additions & 8 deletions
16
monkestation/code/modules/bloodsuckers/bloodsucker/bloodsucker_moodlets.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 |
---|---|---|
@@ -1,40 +1,40 @@ | ||
/datum/mood_event/drankblood | ||
description = "<span class='nicegreen'>I have fed greedly from that which nourishes me.</span>\n" | ||
description = span_nicegreen("I have fed greedly from that which nourishes me.") | ||
mood_change = 10 | ||
timeout = 8 MINUTES | ||
|
||
/datum/mood_event/drankblood_bad | ||
description = "<span class='boldwarning'>I drank the blood of a lesser creature. Disgusting.</span>\n" | ||
description = span_boldwarning("I drank the blood of a lesser creature. Disgusting.") | ||
mood_change = -4 | ||
timeout = 3 MINUTES | ||
|
||
/datum/mood_event/drankblood_dead | ||
description = "<span class='boldwarning'>I drank dead blood. I am better than this.</span>\n" | ||
description = span_boldwarning("I drank dead blood. I am better than this.") | ||
mood_change = -7 | ||
timeout = 8 MINUTES | ||
|
||
/datum/mood_event/drankblood_synth | ||
description = "<span class='boldwarning'>I drank synthetic blood. What is wrong with me?</span>\n" | ||
description = span_boldwarning("I drank synthetic blood. What is wrong with me?") | ||
mood_change = -7 | ||
timeout = 8 MINUTES | ||
|
||
/datum/mood_event/drankkilled | ||
description = "<span class='boldwarning'>I fed off of a dead person. I feel... less human.</span>\n" | ||
description = span_boldwarning("I fed off of a dead person. I feel... less human.") | ||
mood_change = -15 | ||
timeout = 10 MINUTES | ||
|
||
/datum/mood_event/madevamp | ||
description = "<span class='boldwarning'>A mortal has reached an apotheosis- undeath- by my own hand.</span>\n" | ||
description = span_boldwarning("A mortal has reached an apotheosis- undeath- by my own hand.") | ||
mood_change = 15 | ||
timeout = 20 MINUTES | ||
|
||
/datum/mood_event/coffinsleep | ||
description = "<span class='nicegreen'>I slept in a coffin during the day. I feel whole again.</span>\n" | ||
description = span_nicegreen("I slept in a coffin during the day. I feel whole again.") | ||
mood_change = 10 | ||
timeout = 6 MINUTES | ||
|
||
///Candelabrum's mood event to non Bloodsucker/Vassals | ||
/datum/mood_event/vampcandle | ||
description = "<span class='boldwarning'>Something is making your mind feel... loose.</span>\n" | ||
description = span_boldwarning("Something is making your mind feel... loose.") | ||
mood_change = -15 | ||
timeout = 5 MINUTES |
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