mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-12 02:32:10 +00:00
* Skyrat Prefs Menu: Fixing everything to work correctly * whoops haha * Examine menu! * haha whoops * Mutant Parts in tgui prefs * fug * LIMBS, MARKINGS, LANGUAGES * EEEE FUCK * Update tgui_prefs_migration.dm * Update tgui_prefs_migration.dm * FUCK * Proper migration * Update preferences.dm * Final fixes for this shit * Update LoadoutManager.js * adds cursed shit * e * Update preferences.dm * fixes examine panel * adds // SKYRAT EDIT to bullshit * sabshesgawgzxghsv * wargesthgeargfea * stegresgdytfrw * EEE * Update species_features.tsx * EEE * Update cursed_shit.tsx * fixed taurs * body size is now a 0.01 step * Fixes some bugs * Some required changes. * Update examine.dm * actually nekked * Update code/modules/client/preferences/middleware/jobs.dm Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> * Update code/modules/client/preferences/middleware/limbs_and_markings.dm Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> * Update code/modules/client/preferences/middleware/limbs_and_markings.dm Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> * Update code/modules/client/preferences/middleware/limbs_and_markings.dm Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> * Update modular_skyrat/master_files/code/modules/client/preferences/erp_preferences.dm Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> * Update modular_skyrat/modules/loadouts/loadout_ui/loadout_manager.dm Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> * Update tgui/packages/tgui/interfaces/PreferencesMenu/preferences/features/character_preferences/skyrat/species_features.tsx Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> * More fixes * Donator items no show * EEE * fixes rapier sheaths * gender =/= body type * Loadout fixes * Skintone * Update skin_tone.dm * Slick it up * Update loadout_manager.dm * Fixes typing indicator * SSD indicator fixes * fixes * oops * Fix this. * Fixing the Occupations Menu * Fixing NT Rep's alt-titles * Update tgui/packages/tgui/interfaces/PreferencesMenu/jobs/jobs/janitor.ts Co-authored-by: death and coding <58394696+thestubborn@users.noreply.github.com> * Update code/controllers/subsystem/language.dm Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> * Update tgui/packages/tgui/interfaces/PreferencesMenu/jobs/jobs/research_director.ts Co-authored-by: death and coding <58394696+thestubborn@users.noreply.github.com> Co-authored-by: Gandalf <jzo123@hotmail.com> Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> Co-authored-by: GoldenAlpharex <jerego1234@hotmail.com> Co-authored-by: death and coding <58394696+thestubborn@users.noreply.github.com>
44 lines
869 B
Plaintext
44 lines
869 B
Plaintext
/datum/language/swarmer
|
|
name = "Swarmer"
|
|
desc = "A language only consisting of musical notes."
|
|
spans = list(SPAN_ROBOT)
|
|
key = "s"
|
|
flags = NO_STUTTER
|
|
space_chance = 100
|
|
sentence_chance = 0
|
|
default_priority = 60
|
|
|
|
icon_state = "swarmer"
|
|
secret = TRUE // SKYRAT EDIT
|
|
|
|
// 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")
|