From c163ba599dbdc218b205e49fc63a8b97ceb1eabc Mon Sep 17 00:00:00 2001 From: skoglol <33292112+kriskog@users.noreply.github.com> Date: Sat, 8 Jun 2019 13:23:28 +0200 Subject: [PATCH] Blood brother alert now has sound and bigger text (#44293) * Makes the blood brother antag alert more obvious. * added css class --- code/modules/antagonists/brother/brother.dm | 3 ++- code/modules/antagonists/traitor/datum_traitor.dm | 2 +- code/modules/goonchat/browserassets/css/browserOutput.css | 1 + .../modules/goonchat/browserassets/css/browserOutput_white.css | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/code/modules/antagonists/brother/brother.dm b/code/modules/antagonists/brother/brother.dm index bf897892c9d..d8e68de95cf 100644 --- a/code/modules/antagonists/brother/brother.dm +++ b/code/modules/antagonists/brother/brother.dm @@ -54,13 +54,14 @@ /datum/antagonist/brother/greet() var/brother_text = get_brother_names() - to_chat(owner.current, "You are the [owner.special_role] of [brother_text].") + to_chat(owner.current, "You are the [owner.special_role] of [brother_text].") to_chat(owner.current, "The Syndicate only accepts those that have proven themselves. Prove yourself and prove your [team.member_name]s by completing your objectives together!") owner.announce_objectives() give_meeting_area() /datum/antagonist/brother/proc/finalize_brother() SSticker.mode.update_brother_icons_added(owner) + owner.current.playsound_local(get_turf(owner.current), 'sound/ambience/antag/tatoralert.ogg', 100, FALSE, pressure_affected = FALSE) /datum/antagonist/brother/admin_add(datum/mind/new_owner,mob/admin) //show list of possible brothers diff --git a/code/modules/antagonists/traitor/datum_traitor.dm b/code/modules/antagonists/traitor/datum_traitor.dm index 720406f27a3..a6f7b483801 100644 --- a/code/modules/antagonists/traitor/datum_traitor.dm +++ b/code/modules/antagonists/traitor/datum_traitor.dm @@ -197,7 +197,7 @@ .=2 /datum/antagonist/traitor/greet() - to_chat(owner.current, "You are the [owner.special_role].") + to_chat(owner.current, "You are the [owner.special_role].") owner.announce_objectives() if(should_give_codewords) give_codewords() diff --git a/code/modules/goonchat/browserassets/css/browserOutput.css b/code/modules/goonchat/browserassets/css/browserOutput.css index 0eab0aea60c..3f4777d6384 100644 --- a/code/modules/goonchat/browserassets/css/browserOutput.css +++ b/code/modules/goonchat/browserassets/css/browserOutput.css @@ -381,6 +381,7 @@ em {font-style: normal; font-weight: bold;} .alertalien {color: #059223; font-weight: bold;} .changeling {color: #059223; font-style: italic;} .assimilator {color: #059223; font-size: 16px ; font-weight: bold;} +.alertsyndie {color: #FF0000; font-size: 24px ; font-weight: bold;} .spider {color: #8800ff;} diff --git a/code/modules/goonchat/browserassets/css/browserOutput_white.css b/code/modules/goonchat/browserassets/css/browserOutput_white.css index 09d2539039c..59fb5d05c81 100644 --- a/code/modules/goonchat/browserassets/css/browserOutput_white.css +++ b/code/modules/goonchat/browserassets/css/browserOutput_white.css @@ -380,6 +380,7 @@ h1.alert, h2.alert {color: #000000;} .changeling {color: #800080; font-style: italic;} .assimilator {color: #800080; font-size: 16px ; font-weight: bold;} .bigassimilator {color: #800080; font-size: 32px ; font-weight: bold;} +.alertsyndie {color: #FF0000; font-size: 24px ; font-weight: bold;} .spider {color: #4d004d;}