From 528a184f55cbaa2e3780e5426cf34a4e1e44dded Mon Sep 17 00:00:00 2001 From: Dahlular Date: Thu, 9 Jul 2020 14:48:39 -0600 Subject: [PATCH] im tired and forgot to do work --- code/datums/mood_events/generic_positive_events.dm | 4 ++++ code/modules/antagonists/radiant/radiant.dm | 8 ++++++++ 2 files changed, 12 insertions(+) create mode 100644 code/modules/antagonists/radiant/radiant.dm diff --git a/code/datums/mood_events/generic_positive_events.dm b/code/datums/mood_events/generic_positive_events.dm index 01f7933c..a4fd1a6d 100644 --- a/code/datums/mood_events/generic_positive_events.dm +++ b/code/datums/mood_events/generic_positive_events.dm @@ -118,3 +118,7 @@ description = "I love headpats so much!\n" mood_change = 3 timeout = 2 MINUTES + +/datum/mood_event/radiant + description = "I have seen the light of The Phoenix; I cannot be stopped.\n" + mood_change = 12 diff --git a/code/modules/antagonists/radiant/radiant.dm b/code/modules/antagonists/radiant/radiant.dm new file mode 100644 index 00000000..dbfe49d0 --- /dev/null +++ b/code/modules/antagonists/radiant/radiant.dm @@ -0,0 +1,8 @@ +/datum/antagonist/radiant + name = "Radiant" + roundend_category = "The Radiant" + show_in_roundend = TRUE + antagpanel_category = "Radiant" + JOB_RANK = ROLE_RADIANT + antag_moodlet = /datum/mood_event/radiant + can_coexist_with_others = FALSE