Skip to content

Commit

Permalink
Merge pull request #2659 from ARF-SS13/You-wish-I-knew-what-I-was-doing
Browse files Browse the repository at this point in the history
Got bored, made an uwu tongue
  • Loading branch information
Tk420634 committed Jul 19, 2023
2 parents 8e297f2 + 99f7894 commit 8ae004a
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions code/_globalvars/lists/flavor_misc.dm
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,7 @@ GLOBAL_LIST_INIT(roundstart_tongues, list(
"japanese tongue" = /obj/item/organ/tongue/japanese,
"chinese tongue" = /obj/item/organ/tongue/chinese,
"irish tongue" = /obj/item/organ/tongue/irish,
"slurry tongue" = /obj/item/organ/tongue/slurry,
"bug tongue" = /obj/item/organ/tongue/bug,
"vampire tongue" = /obj/item/organ/tongue/vampire
//"skeleton tongue" = /obj/item/organ/tongue/bone,
Expand Down
11 changes: 11 additions & 0 deletions code/datums/accents.dm
Original file line number Diff line number Diff line change
Expand Up @@ -258,3 +258,14 @@
message = replacetext(message, " or ", "")
speech_args[SPEECH_MESSAGE] = message
return speech_args

/datum/accent/slurry/modify_speech(list/speech_args)
var/message = speech_args[SPEECH_MESSAGE]
if(message[1] != "*")
message = replacetext(message, "r", "w")
message = replacetext(message, "l", "w")
message = replacetext(message, "th", "ff")
message = replacetext(message, "you", "chu")
speech_args[SPEECH_MESSAGE] = message
return speech_args

7 changes: 7 additions & 0 deletions code/modules/surgery/organs/tongue.dm
Original file line number Diff line number Diff line change
Expand Up @@ -386,3 +386,10 @@
icon_state = "tonguenormal"
say_mod = "says"
initial_accents = list(/datum/accent/irish)

/obj/item/organ/tongue/slurry
name = "\improper Slurry tongue"
desc = "A tongue that is quite human-like, but speaks with a slurred and kind of goofy accent."
icon_state = "tonguenormal"
say_mod = "says"
initial_accents = list(/datum/accent/slurry)

0 comments on commit 8ae004a

Please sign in to comment.