mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-24 14:36:46 +01:00
56 lines
1.5 KiB
Plaintext
56 lines
1.5 KiB
Plaintext
/datum/prototype/language/corgi
|
|
id = LANGUAGE_ID_DOG
|
|
name = "Dog"
|
|
translation_class = TRANSLATION_CLASS_ANIMAL
|
|
desc = "Woof woof woof."
|
|
speech_verb = "barks"
|
|
ask_verb = "woofs"
|
|
exclaim_verb = "howls"
|
|
language_flags = LANGUAGE_RESTRICTED
|
|
key = null // demoted
|
|
space_chance = 100
|
|
syllables = list("bark", "woof", "bowwow", "yap", "arf")
|
|
shorthand = "DOG"
|
|
|
|
/datum/prototype/language/cat
|
|
id = LANGUAGE_ID_CAT
|
|
name = "Cat"
|
|
translation_class = TRANSLATION_CLASS_ANIMAL
|
|
desc = "Meow meow meow."
|
|
speech_verb = "meows"
|
|
ask_verb = "mrowls"
|
|
exclaim_verb = "yowls"
|
|
language_flags = LANGUAGE_RESTRICTED
|
|
key = null // demoted
|
|
space_chance = 100
|
|
syllables = list("meow", "mrowl", "purr", "meow", "meow", "meow")
|
|
shorthand = "CAT"
|
|
|
|
/datum/prototype/language/mouse
|
|
id = LANGUAGE_ID_MOUSE
|
|
name = "Mouse"
|
|
translation_class = TRANSLATION_CLASS_ANIMAL
|
|
desc = "Squeak squeak. *Nibbles on cheese*"
|
|
speech_verb = "squeaks"
|
|
ask_verb = "squeaks"
|
|
exclaim_verb = "squeaks"
|
|
language_flags = LANGUAGE_RESTRICTED
|
|
key = null // demoted
|
|
space_chance = 100
|
|
syllables = list("squeak") // , "gripes", "oi", "meow")
|
|
shorthand = "MSE"
|
|
|
|
/datum/prototype/language/bird
|
|
id = LANGUAGE_ID_BIRD
|
|
name = "Bird"
|
|
translation_class = TRANSLATION_CLASS_ANIMAL
|
|
desc = "Chirp chirp, give me food"
|
|
speech_verb = "chirps"
|
|
ask_verb = "tweets"
|
|
exclaim_verb = "squawks"
|
|
language_flags = LANGUAGE_RESTRICTED
|
|
key = null // demoted
|
|
space_chance = 100
|
|
syllables = list("chirp", "squawk", "tweet")
|
|
shorthand = "BIRD"
|