Files
Yogstation/code/modules/language/swarmer.dm
Jamie D b80a77572d Fixes Runechat runtimes and Adds Singing And fixes lots of other runtimes (#10325)
* E

* More runtimes

* Fucking i(n)dent I swear
2020-11-05 20:25:37 +00:00

31 lines
683 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
sing_verb = "tones"
icon_state = "swarmer"
// since various flats and sharps are the same,
// all non-accidental notes are doubled in the list
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")