Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.

Perhaps you should duck, sweet Nerevar (Dagoth Ur Announcer Pack) #984

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions beestation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -3710,6 +3710,7 @@
#include "monkestation\code\datums\status_effects.dm"
#include "monkestation\code\datums\votesounds.dm"
#include "monkestation\code\datums\announcers\duke_announcer.dm"
#include "monkestation\code\datums\announcers\dagoth_announcer.dm"
#include "monkestation\code\datums\brain_damage\mild.dm"
#include "monkestation\code\datums\components\hot_ice.dm"
#include "monkestation\code\datums\components\pricetag.dm"
Expand Down
6 changes: 4 additions & 2 deletions code/datums/station_traits/neutral_traits.dm
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@
blacklist = list(
/datum/station_trait/announcement_intern,
/datum/station_trait/announcement_baystation,
/datum/station_trait/announcement_duke
/datum/station_trait/announcement_duke,
/datum/station_trait/announcement_dagoth
)

/datum/station_trait/announcement_medbot/New()
Expand All @@ -60,7 +61,8 @@
report_message = "We lost the primary datatape that holds the announcement system's voice responses. We did however find an older backup."
blacklist = list(/datum/station_trait/announcement_intern,
/datum/station_trait/announcement_medbot,
/datum/station_trait/announcement_duke
/datum/station_trait/announcement_duke,
/datum/station_trait/announcement_dagoth
)

/datum/station_trait/announcement_baystation/New()
Expand Down
33 changes: 33 additions & 0 deletions monkestation/code/datums/announcers/dagoth_announcer.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/datum/centcom_announcer/dagoth
welcome_sounds = list('monkestation/sound/ai/dagoth/welcome/welcome.ogg',
'monkestation/sound/ai/dagoth/welcome/welcome2.ogg',
'monkestation/sound/ai/dagoth/welcome/welcome3.ogg',
'monkestation/sound/ai/dagoth/welcome/welcome4.ogg')

alert_sounds = list('monkestation/sound/ai/dagoth/alerts/alert1.ogg',
'monkestation/sound/ai/dagoth/alerts/alert2.ogg',
'monkestation/sound/ai/dagoth/alerts/alert3.ogg',
'monkestation/sound/ai/dagoth/alerts/alert4.ogg',
'monkestation/sound/ai/dagoth/alerts/alert5.ogg',
'monkestation/sound/ai/dagoth/alerts/alert6.ogg',
'monkestation/sound/ai/dagoth/alerts/alert7.ogg')

command_report_sounds = list('monkestation/sound/ai/dagoth/commandreport/centralcommand1.ogg',
'monkestation/sound/ai/dagoth/commandreport/centralcommand2.ogg')

event_sounds = list(ANNOUNCER_AIMALF = 'monkestation/sound/ai/dagoth/aimalf.ogg',
ANNOUNCER_ALIENS = 'monkestation/sound/ai/dagoth/aliens.ogg',
ANNOUNCER_ANIMES = 'monkestation/sound/ai/dagoth/animes.ogg',
ANNOUNCER_GRANOMALIES = 'monkestation/sound/ai/dagoth/granomalies.ogg',
ANNOUNCER_INTERCEPT = 'monkestation/sound/ai/dagoth/intercept.ogg',
ANNOUNCER_IONSTORM = 'monkestation/sound/ai/dagoth/ionstorm.ogg',
ANNOUNCER_METEORS = 'monkestation/sound/ai/dagoth/meteors.ogg',
ANNOUNCER_OUTBREAK5 = 'monkestation/sound/ai/dagoth/blob.ogg',
ANNOUNCER_OUTBREAK7 = 'monkestation/sound/ai/dagoth/virus.ogg',
ANNOUNCER_POWEROFF = 'monkestation/sound/ai/dagoth/power_off.ogg',
ANNOUNCER_POWERON = 'monkestation/sound/ai/dagoth/power_on.ogg',
ANNOUNCER_RADIATION = 'monkestation/sound/ai/dagoth/radiation.ogg',
ANNOUNCER_SHUTTLECALLED = 'monkestation/sound/ai/dagoth/shuttle_call.ogg',
ANNOUNCER_SHUTTLEDOCK = 'monkestation/sound/ai/dagoth/shuttle_arrive.ogg',
ANNOUNCER_SHUTTLERECALLED = 'monkestation/sound/ai/dagoth/shuttle_recall.ogg',
ANNOUNCER_SPANOMALIES = 'monkestation/sound/ai/dagoth/spanomalies.ogg')
20 changes: 19 additions & 1 deletion monkestation/code/datums/station_traits/neutral_traits.dm
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,27 @@
report_message = "The Duke himself is your announcer today."
blacklist = list(/datum/station_trait/announcement_medbot,
/datum/station_trait/announcement_baystation,
/datum/station_trait/announcement_intern
/datum/station_trait/announcement_intern,
/datum/station_trait/announcement_dagoth
)

/datum/station_trait/announcement_duke/New()
. = ..()
SSstation.announcer = /datum/centcom_announcer/duke


/datum/station_trait/announcement_dagoth
name = "Announcement Dagoth Ur"
trait_type = STATION_TRAIT_NEUTRAL
weight = 10
show_in_report = TRUE
report_message = "I am bestowing upon you my presence, Nerevar."
blacklist = list(/datum/station_trait/announcement_medbot,
/datum/station_trait/announcement_baystation,
/datum/station_trait/announcement_intern,
/datum/station_trait/announcement_duke
)

/datum/station_trait/announcement_dagoth/New()
. = ..()
SSstation.announcer = /datum/centcom_announcer/dagoth
Binary file added monkestation/sound/ai/dagoth/aimalf.ogg
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/alerts/alert1.ogg
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/alerts/alert2.ogg
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/alerts/alert3.ogg
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/alerts/alert4.ogg
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/alerts/alert5.ogg
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/alerts/alert6.ogg
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/alerts/alert7.ogg
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/aliens.ogg
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/animes.ogg
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/blob.ogg
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/granomalies.ogg
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/intercept.ogg
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/ionstorm.ogg
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/meteors.ogg
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/power_off.ogg
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/power_on.ogg
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/radiation.ogg
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/shuttle_arrive.ogg
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/shuttle_call.ogg
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/shuttle_recall.ogg
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/spanomalies.ogg
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/virus.ogg
Binary file not shown.
Binary file not shown.
Binary file added monkestation/sound/ai/dagoth/welcome/welcome2.ogg
Binary file not shown.
Binary file not shown.
Binary file not shown.