diff --git a/code/datums/mind.dm b/code/datums/mind.dm index 83e551db20e..0d71c8d0e13 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -1711,6 +1711,7 @@ if("Scientist") L = agent_landmarks[team] H.forceMove(L.loc) + SEND_SOUND(H, sound('sound/ambience/antag/abductors.ogg')) /datum/mind/proc/AddSpell(obj/effect/proc_holder/spell/S) spell_list += S diff --git a/code/game/gamemodes/miniantags/abduction/abduction.dm b/code/game/gamemodes/miniantags/abduction/abduction.dm index a0b9b0d176b..aa498e817f7 100644 --- a/code/game/gamemodes/miniantags/abduction/abduction.dm +++ b/code/game/gamemodes/miniantags/abduction/abduction.dm @@ -155,6 +155,7 @@ abductor.objectives += team_objectives[team_number] var/team_name = team_names[team_number] + SEND_SOUND(abductor.current, sound('sound/ambience/antag/abductors.ogg')) to_chat(abductor.current, "You are an agent of [team_name]!") to_chat(abductor.current, "With the help of your teammate, kidnap and experiment on station crew members!") to_chat(abductor.current, "Use your stealth technology and equipment to incapacitate humans for your scientist to retrieve.") @@ -168,6 +169,7 @@ abductor.objectives += team_objectives[team_number] var/team_name = team_names[team_number] + SEND_SOUND(abductor.current, sound('sound/ambience/antag/abductors.ogg')) to_chat(abductor.current, "You are a scientist of [team_name]!") to_chat(abductor.current, "With the help of your teammate, kidnap and experiment on station crew members!") to_chat(abductor.current, "Use your tool and ship consoles to support the agent and retrieve human specimens.") diff --git a/code/modules/events/spider_terror.dm b/code/modules/events/spider_terror.dm index d9a85524150..0ee1a3ef52c 100644 --- a/code/modules/events/spider_terror.dm +++ b/code/modules/events/spider_terror.dm @@ -59,6 +59,7 @@ var/mob/living/simple_animal/hostile/poison/terror_spider/S = new spider_type(vent.loc) var/mob/M = pick_n_take(candidates) S.key = M.key + SEND_SOUND(S, sound('sound/ambience/antag/terrorspider.ogg')) to_chat(S, "For more information, check the wiki page: ([GLOB.configuration.url.wiki_url]/index.php/Terror_Spider)") spawncount-- successSpawn = TRUE diff --git a/sound/ambience/antag/abductors.ogg b/sound/ambience/antag/abductors.ogg new file mode 100644 index 00000000000..1fe7ead0895 Binary files /dev/null and b/sound/ambience/antag/abductors.ogg differ diff --git a/sound/ambience/antag/terrorspider.ogg b/sound/ambience/antag/terrorspider.ogg new file mode 100644 index 00000000000..4d24c199756 Binary files /dev/null and b/sound/ambience/antag/terrorspider.ogg differ