Files
Bubberstation/strings/elvis_replacement.json
SmArtKar 565c548108 Converts common speech modifiers into a component (#84675)
## About The Pull Request

Added a ``/datum/component/speechmod`` component which can be used to
perform basic speech modifications. It use either simple replacements or
regex, add a string at the end of any message (at a chance if required)
and convert speech to uppercase. However, a good chunk of speechmods are
far too niche and specific to be put into a speechmod component and thus
have been left alone.

## Why It's Good For The Game

Cuts down on copypasted code, makes making new speechmods easier.

## Changelog
🆑
refactor: Refactored a lot of speech modifiers to use a component
instead of copied over code.
/🆑
2024-07-08 22:52:45 -06:00

14 lines
389 B
JSON

{
"elvis": {
"i'm not ": "I ain't ",
" girl ": [" honey ", " baby ", " baby doll "],
" man ": [" son ", " buddy ", " brother ", " pal ", " friendo "],
" out of ": " outta ",
" thank you ": " thank you, thank you very much ",
" thanks ": " thank you, thank you very much ",
" what are you": " whatcha ",
" yes": [" sure ", " yea "],
" muh valids ": " my kicks "
}
}