Skip to content

Commit

Permalink
palatine speech
Browse files Browse the repository at this point in the history
  • Loading branch information
realforest2001 committed May 10, 2024
1 parent 1b0ef45 commit 871bdc7
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 3 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/living/carbon/xenomorph/say.dm
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
else if(istype(X) && IS_XENO_LEADER(X))
ghostrend = SPAN_XENOLEADER("Hivemind, Leader [src.name][track] hisses, <span class='normal'>'[message]'</span>")
else if(istype(X, /mob/living/carbon/xenomorph/palatine))
ghostrend = SPAN_XENOLEADER("Hivemind, [src.name][track] hisses, <span class='normal'>'[message]'</span>")
ghostrend = SPAN_XENOPALATINE("Hivemind, [src.name][track] hisses, <span class='normal'>'[message]'</span>")
else
ghostrend = SPAN_XENO("Hivemind, [src.name][track] hisses, <span class='normal'>'[message]'</span>")
S.show_message(ghostrend, SHOW_MESSAGE_AUDIBLE)
Expand All @@ -156,7 +156,7 @@
else if(istype(X) && IS_XENO_LEADER(X))
rendered = SPAN_XENOLEADER("Hivemind, Leader [src.name][overwatch_insert] hisses, <span class='normal'>'[message]'</span>")
else if(istype(X, /mob/living/carbon/xenomorph/palatine))
rendered = SPAN_XENOLEADER("Hivemind, [src.name][overwatch_insert] hisses, <span class='normal'>'[message]'</span>")
rendered = SPAN_XENOPALATINE("Hivemind, [src.name][overwatch_insert] hisses, <span class='normal'>'[message]'</span>")
else
rendered = SPAN_XENO("Hivemind, [src.name][overwatch_insert] hisses, <span class='normal'>'[message]'</span>")

Expand Down
1 change: 1 addition & 0 deletions code/span_macros.dm
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
// Xeno related
#define SPAN_XENO(X) "<span class='xeno'>[X]</span>"
#define SPAN_XENOLEADER(X) "<span class='xenoleader'>[X]</span>"
#define SPAN_XENOPALATINE(X) "<span class='xenopalatine'>[X]</span>"
#define SPAN_XENOQUEEN(X) "<span class='xenoqueen'>[X]</span>"
#define SPAN_XENOANNOUNCE(X) "<span class='xenoannounce'>[X]</span>"
#define SPAN_XENONOTICE(X) "<span class='xenonotice'>[X]</span>"
Expand Down
1 change: 1 addition & 0 deletions code/stylesheet.dm
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ h1.alert, h2.alert {color: #000000;}

.xeno {color: #900090; font-style: italic;}
.xenoleader {color: #730d73; font-style: italic; font-size: 3;}
.xenopalatine {color: #3f053f; font-style: italic; font-size: 3;}
.xenoqueen {color: #730d73; font-style: italic; font-weight: bold; font-size: 3;}
.newscaster {color: #800000;}

Expand Down
6 changes: 6 additions & 0 deletions tgui/packages/tgui-panel/styles/goon/chat-dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1198,6 +1198,12 @@ em {
font-size: 125%;
}

.xenopalatine {
color: #730d73;
font-style: italic;
font-size: 125%;
}

.xenoqueen {
color: #996e99;
font-style: italic;
Expand Down
6 changes: 6 additions & 0 deletions tgui/packages/tgui-panel/styles/goon/chat-light.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1230,6 +1230,12 @@ h2.alert {
font-size: 125%;
}

.xenopalatine {
color: #3f053f;
font-style: italic;
font-size: 125%;
}

.xenoqueen {
color: #730d73;
font-style: italic;
Expand Down
2 changes: 1 addition & 1 deletion tgui/public/tgui-panel.bundle.css

Large diffs are not rendered by default.

0 comments on commit 871bdc7

Please sign in to comment.