mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-07 23:42:44 +00:00
* Initial burst of languages * Scratchings of beginnings * Code review I * Compilation! * You can now understand your own speech * Fixes whispering * Gets typecaches working again * Remie's `PASS`ing * Back to pass() to stop the compiler whining * Why can't drones check their languages * Everyone speaks how they should * Removes world string debug stuff * Currently failing to massage radio code into working * The radio transmits the languages! * ,0 to talk common * Replaces speech wheel with language menu * Observers can speak all languages * pAIs now speak languages FOREVER * New action button for language menu * pAIs have an action button to open their language menu * AIs can talk and all that * AIs have a language menu button * Fixes supermatter making strange noises * Fixes AI holopads * Fixes request consoles * Fixes bots making strange sounds * Meaningless MMI change * Some caching of datums * Brains in MMIs speak common * Ratvarian AIs can only speak Ratvarian * Tables can speak common, apparently * Removes var in args * Fixes the (AI Eye) problem Thanks to Shadowmobile for their help with this one. * Fixes tape recorders * Fixes humans being able to speak in languages they did not know * Adds some new posibrain names Honk. * The voice analyzer replies in the language you spoke to it * Gives swarmers only swarmer language * `initial_languages` var. * OMNITONGUE, clockwork restrictions * Fixes barmaid and bardrone language abilities * Code review I * Omnitongue correction * Code review II * Removes force_compose var
43 lines
901 B
Plaintext
43 lines
901 B
Plaintext
/datum/language/swarmer
|
|
name = "Swarmer"
|
|
desc = "A language only consisting of musical notes."
|
|
speech_verb = "tones"
|
|
ask_verb = "tones inquisitively"
|
|
exclaim_verb = "tones loudly"
|
|
spans = list(SPAN_ROBOT)
|
|
key = "s"
|
|
flags = NO_STUTTER
|
|
space_chance = 100
|
|
sentence_chance = 0
|
|
default_priority = 60
|
|
// since various flats and sharps are the same,
|
|
// all non-accidental notes are doubled in the list
|
|
/* The list with unicode symbols for the accents.
|
|
syllables = list(
|
|
"C", "C",
|
|
"C♯", "D♭",
|
|
"D", "D",
|
|
"D♯", "E♭",
|
|
"E", "E",
|
|
"F", "F",
|
|
"F♯", "G♭",
|
|
"G", "G",
|
|
"G♯", "A♭",
|
|
"A", "A",
|
|
"A♯", "B♭",
|
|
"B", "B")
|
|
*/
|
|
syllables = list(
|
|
"C", "C",
|
|
"C#", "Db",
|
|
"D", "D",
|
|
"D#", "Eb",
|
|
"E", "E",
|
|
"F", "F",
|
|
"F#", "Gb",
|
|
"G", "G",
|
|
"G#", "Ab",
|
|
"A", "A",
|
|
"A#", "Bb",
|
|
"B", "B")
|