diff --git a/code/modules/goonchat/browserassets/css/browserOutput.css b/code/modules/goonchat/browserassets/css/browserOutput.css index bf0a239bc3b4..4a46d0b5bee0 100644 --- a/code/modules/goonchat/browserassets/css/browserOutput.css +++ b/code/modules/goonchat/browserassets/css/browserOutput.css @@ -327,6 +327,24 @@ em {font-style: normal; font-weight: bold;} .shadowling {color: #8e8a99;} .velvet {color: #37198b;} .cult {color: #aa1c1c;} +.surrender { + color: #1235d1; + font-weight: bold; + font-size: 27px; + animation: surrender 1s ease-in-out infinite alternate; + transform-origin: 0 0; + display: inline-block; + } + @keyframes surrender { + 0% { + transform: scale(1,1); + color: #ff0000; + } + 100% { + transform: scale(1.05,1); + color: #0000ff + } + } .cultitalic {color: #aa1c1c; font-style: italic;} .cultbold {color: #aa1c1c; font-style: italic; font-weight: bold;} diff --git a/code/modules/goonchat/browserassets/css/browserOutput_white.css b/code/modules/goonchat/browserassets/css/browserOutput_white.css index bed969e84b04..7391cf6bfef4 100644 --- a/code/modules/goonchat/browserassets/css/browserOutput_white.css +++ b/code/modules/goonchat/browserassets/css/browserOutput_white.css @@ -326,6 +326,24 @@ h1.alert, h2.alert {color: #000000;} .shadowling {color: #3b2769;} .velvet {color: #21007F;} .cult {color: #960000;} +.surrender { + color: #1235d1; + font-weight: bold; + font-size: 27px; + animation: surrender 1s ease-in-out infinite alternate; + transform-origin: 0 0; + display: inline-block; + } + @keyframes surrender { + 0% { + transform: scale(1,1); + color: #ff0000; + } + 100% { + transform: scale(1.05,1); + color: #0000ff + } + } .cultitalic {color: #960000; font-style: italic;} .cultbold {color: #960000; font-style: italic; font-weight: bold;} diff --git a/code/modules/mob/living/emote.dm b/code/modules/mob/living/emote.dm index 1fac149696af..74f33179be40 100644 --- a/code/modules/mob/living/emote.dm +++ b/code/modules/mob/living/emote.dm @@ -350,7 +350,7 @@ /datum/emote/living/surrender key = "surrender" key_third_person = "surrenders" - message = "puts their hands on their head and falls to the ground, they surrender!" + message = "puts their hands on their head and falls to the ground, they surrender!" emote_type = EMOTE_AUDIBLE /datum/emote/living/surrender/run_emote(mob/user, params, type_override, intentional) diff --git a/interface/stylesheet.dm b/interface/stylesheet.dm index 02877468bdfc..18e386ac2ecf 100644 --- a/interface/stylesheet.dm +++ b/interface/stylesheet.dm @@ -96,6 +96,24 @@ h1.alert, h2.alert {color: #000000;} .hierophant_warning {color: #660099; font-style: italic;} .purple {color: #5e2d79;} .holoparasite {color: #35333a;} +.surrender { + color: #1235d1; + font-weight: bold; + font-size: 3; + animation: surrender 1s ease-in-out infinite alternate; + transform-origin: 0 0; + display: inline-block; + } + @keyframes surrender { + 0% { + transform: scale(1,1); + color: #ff0000; + } + 100% { + transform: scale(1.05,1); + color: #0000ff + } + } .revennotice {color: #1d2953;} .revenboldnotice {color: #1d2953; font-weight: bold;}