diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm index db856725acf..cefa46447c7 100644 --- a/code/modules/client/client procs.dm +++ b/code/modules/client/client procs.dm @@ -346,6 +346,11 @@ 'icons/stamp_icons/large_stamp-rd.png', 'icons/stamp_icons/large_stamp-cap.png', 'icons/stamp_icons/large_stamp-qm.png', - 'icons/stamp_icons/large_stamp-law.png' - + 'icons/stamp_icons/large_stamp-law.png', ) + + +var/list/extra_resources = list(\ + 'fonts/interstellarlog.ttf', + 'fonts/plasticbag.ttf' + ) \ No newline at end of file diff --git a/code/modules/mob/language.dm b/code/modules/mob/language.dm index 2f9969cb3ac..0cec7d6eb92 100644 --- a/code/modules/mob/language.dm +++ b/code/modules/mob/language.dm @@ -55,7 +55,7 @@ name = "Bubblish" desc = "Languages of slimes, a mixture of bubbling noises and pops. Almost impossible to speak without mechanical aid for non slime people." speech_verb = "bubbles and pops" - colour = "skrell" + colour = "slime" key = "f" flags = RESTRICTED diff --git a/code/stylesheet.dm b/code/stylesheet.dm index bd8bd4f2c31..d52ee3e95f0 100644 --- a/code/stylesheet.dm +++ b/code/stylesheet.dm @@ -61,9 +61,10 @@ h1.alert, h2.alert {color: #000000;} .modooc {color: #184880; font-weight: bold;} .adminmod {color: #402A14; font-weight: bold;} .tajaran {color: #803B56;} -.skrell {color: #00CED1;} .soghun {color: #228B22;} .vox {color: #AA00AA;} +.slime {font-family: \"001 Interstellar Log\", Verdana, sans-serif;} +.skrell {font-family: \"Plastic Bag\", Verdana, sans-serif;} .say_quote {font-family: Georgia, Verdana, sans-serif;} .interface {color: #330033;} diff --git a/fonts/interstellarlog.ttf b/fonts/interstellarlog.ttf new file mode 100644 index 00000000000..2f8b9da9bbc Binary files /dev/null and b/fonts/interstellarlog.ttf differ diff --git a/fonts/plasticbag.ttf b/fonts/plasticbag.ttf new file mode 100644 index 00000000000..7df455719e3 Binary files /dev/null and b/fonts/plasticbag.ttf differ