all the other barks

(that I have been requested)
This commit is contained in:
BongaTheProto
2022-06-17 11:30:57 -05:00
parent 16ea17e55b
commit 921f93fe50
29 changed files with 164 additions and 4 deletions
+3 -3
View File
@@ -2926,19 +2926,19 @@ GLOBAL_LIST_EMPTY(preferences_datums)
if("barkspeed")
var/datum/bark/B = GLOB.bark_list[bark_id]
var/borkset = input(user, "Choose your desired bark speed (Higher is slower, lower is faster). Min: [initial(B.minspeed)]. Max: [initial(B.maxspeed)]", "Character Preference") as null|num
if(borkset)
if(!isnull(borkset))
bark_speed = round(clamp(borkset, initial(B.minspeed), initial(B.maxspeed)), 1)
if("barkpitch")
var/datum/bark/B = GLOB.bark_list[bark_id]
var/borkset = input(user, "Choose your desired baseline bark pitch. Min: [initial(B.minpitch)]. Max: [initial(B.maxpitch)]", "Character Preference") as null|num
if(borkset)
if(!isnull(borkset))
bark_pitch = clamp(borkset, initial(B.minpitch), initial(B.maxpitch))
if("barkvary")
var/datum/bark/B = GLOB.bark_list[bark_id]
var/borkset = input(user, "Choose your desired baseline bark pitch. Min: [initial(B.minvariance)]. Max: [initial(B.maxvariance)]", "Character Preference") as null|num
if(borkset)
if(!isnull(borkset))
bark_variance = clamp(borkset, initial(B.minvariance), initial(B.maxvariance))
if("bodysprite")
+161 -1
View File
@@ -21,49 +21,209 @@
id = "meow"
allow_random = TRUE
soundpath = 'modular_citadel/sound/voice/meow1.ogg'
minspeed = 5
maxspeed = 11
//Undertale
/datum/bark/alphys
name = "Alphys"
id = "alphys"
soundpath = 'modular_splurt/sound/voice/barks/undertale/voice_alphys.ogg'
minvariance = 0
/datum/bark/asgore
name = "Asgore"
id = "asgore"
soundpath = 'modular_splurt/sound/voice/barks/undertale/voice_asgore.ogg'
minvariance = 0
/datum/bark/flowey
name = "Flowey (normal)"
id = "flowey1"
soundpath = 'modular_splurt/sound/voice/barks/undertale/voice_flowey_1.ogg'
minvariance = 0
/datum/bark/flowey/evil
name = "Flowey (evil)"
id = "flowey2"
soundpath = 'modular_splurt/sound/voice/barks/undertale/voice_flowey_2.ogg'
minvariance = 0
/datum/bark/papyrus
name = "Papyrus"
id = "papyrus"
soundpath = 'modular_splurt/sound/voice/barks/undertale/voice_papyrus.ogg'
minvariance = 0
/datum/bark/ralsei
name = "Ralsei"
id = "ralsei"
soundpath = 'modular_splurt/sound/voice/barks/undertale/voice_ralsei.ogg'
minvariance = 0
/datum/bark/sans //real
name = "Sans"
id = "sans"
soundpath = 'modular_splurt/sound/voice/barks/undertale/voice_sans.ogg'
minvariance = 0
/datum/bark/toriel
name = "Toriel"
id = "toriel"
soundpath = 'modular_splurt/sound/voice/barks/undertale/voice_toriel.ogg'
minvariance = 0
maxpitch = BARK_DEFAULT_MAXPITCH*2 //Just because if it's high enough you get Asriel's voice
/datum/bark/undyne
name = "Undyne"
id = "undyne"
soundpath = 'modular_splurt/sound/voice/barks/undertale/voice_undyne.ogg'
minvariance = 0
/datum/bark/temmie
name = "Temmie"
id = "temmie"
soundpath = 'modular_splurt/sound/voice/barks/undertale/voice_temmie.ogg'
minvariance = 0
/datum/bark/gen_monster
name = "Generic Monster 1"
id = "gen_monster_1"
soundpath = 'modular_splurt/sound/voice/barks/undertale/voice_monster1.ogg'
minvariance = 0
/datum/bark/gen_monster/alt
name = "Generic Monster 2"
id = "gen_monster_2"
soundpath = 'modular_splurt/sound/voice/barks/undertale/voice_monster2.ogg'
minvariance = 0
//Don't starve
/datum/bark/wilson
name = "Wilson"
id = "wilson"
soundpath = 'modular_splurt/sound/voice/barks/dont_starve/wilson_bark.ogg'
/datum/bark/wolfgang
name = "Wolfgang"
id = "wolfgang"
soundpath = 'modular_splurt/sound/voice/barks/dont_starve/wolfgang_bark.ogg'
minspeed = 4
maxspeed = 10
/datum/bark/woodie
name = "Woodie"
id = "woodie"
soundpath = 'modular_splurt/sound/voice/barks/dont_starve/woodie_bark.ogg'
minspeed = 4
maxspeed = 10
/datum/bark/wurt
name = "Wurt"
id = "wurt"
soundpath = 'modular_splurt/sound/voice/barks/dont_starve/wurt_bark.ogg'
/datum/bark/wx78
name = "wx78"
id = "wx78"
soundpath = 'modular_splurt/sound/voice/barks/dont_starve/wx78_bark.ogg'
minspeed = 3
maxspeed = 9
//Goon
/datum/bark/blub
name = "Blub"
id = "blub"
soundpath = 'modular_splurt/sound/voice/barks/goon/blub.ogg'
/datum/bark/bottalk
name = "Bottalk 1"
id = "bottalk1"
soundpath = 'modular_splurt/sound/voice/barks/goon/bottalk_1.ogg'
minspeed = 3
maxspeed = 9
/datum/bark/bottalk/alt1
name = "Bottalk 2"
id = "bottalk2"
soundpath = 'modular_splurt/sound/voice/barks/goon/bottalk_2.ogg'
/datum/bark/bottalk/alt2
name = "Bottalk 3"
id = "bottalk3"
soundpath = 'modular_splurt/sound/voice/barks/goon/bottalk_3.ogg'
/datum/bark/bottalk/alt3
name = "Bottalk 4"
id = "bottalk4"
soundpath = 'modular_splurt/sound/voice/barks/goon/bottalk_4.ogg'
/datum/bark/buwoo
name = "Buwoo"
id = "buwoo"
soundpath = 'modular_splurt/sound/voice/barks/goon/buwoo.ogg'
/datum/bark/cow
name = "Cow"
id = "cow"
soundpath = 'modular_splurt/sound/voice/barks/goon/cow.ogg'
/datum/bark/lizard
name = "Lizard"
id = "lizard"
soundpath = 'modular_splurt/sound/voice/barks/goon/lizard.ogg'
/datum/bark/pug
name = "Pug"
id = "pug"
soundpath = 'modular_splurt/sound/voice/barks/goon/pug.ogg'
/datum/bark/pugg
name = "Pugg"
id = "pugg"
soundpath = 'modular_splurt/sound/voice/barks/goon/pugg.ogg'
/datum/bark/radio
name = "Radio 1"
id = "radio1"
soundpath = 'modular_splurt/sound/voice/barks/goon/radio.ogg'
/datum/bark/radio/short
name = "Radio 2"
id = "radio2"
soundpath = 'modular_splurt/sound/voice/barks/goon/radio2.ogg'
/datum/bark/radio/ai
name = "Radio (AI)"
id = "radio_ai"
soundpath = 'modular_splurt/sound/voice/barks/goon/radio_ai.ogg'
/datum/bark/roach //Turkish characters be like
name = "Roach"
id = "roach"
soundpath = 'modular_splurt/sound/voice/barks/goon/roach.ogg'
/datum/bark/skelly
name = "Skelly"
id = "skelly"
soundpath = 'modular_splurt/sound/voice/barks/goon/skelly.ogg'
/datum/bark/speak
name = "Speak 1"
id = "speak1"
soundpath = 'modular_splurt/sound/voice/barks/goon/speak_1.ogg'
/datum/bark/speak/alt1
name = "Speak 2"
id = "speak2"
soundpath = 'modular_splurt/sound/voice/barks/goon/speak_2.ogg'
/datum/bark/speak/alt2
name = "Speak 3"
id = "speak3"
soundpath = 'modular_splurt/sound/voice/barks/goon/speak_3.ogg'
/datum/bark/speak/alt3
name = "Speak 4"
id = "speak4"
soundpath = 'modular_splurt/sound/voice/barks/goon/speak_4.ogg'
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.