diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index 06f23574e1..5442fcb932 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -817,6 +817,10 @@ GLOBAL_LIST_EMPTY(external_rsc_urls) var/file = GLOB.vox_sounds[name] Export("##action=load_rsc", file) stoplag() + for (var/name in GLOB.vox_sounds_male) + var/file = GLOB.vox_sounds_male[name] + Export("##action=load_rsc", file) + stoplag() #endif diff --git a/code/modules/mob/living/silicon/ai/say.dm b/code/modules/mob/living/silicon/ai/say.dm index 4ac5c1f0bb..c6d4527812 100644 --- a/code/modules/mob/living/silicon/ai/say.dm +++ b/code/modules/mob/living/silicon/ai/say.dm @@ -100,6 +100,8 @@ last_announcement = message + var/voxType = input(src, "Male or female VOX?", "VOX-gender") in list("male", "female") + if(!message || announcing_vox > world.time) return @@ -121,7 +123,9 @@ if(!word) words -= word continue - if(!GLOB.vox_sounds[word]) + if(!GLOB.vox_sounds[word] && voxType == "female") + incorrect_words += word + if(!GLOB.vox_sounds_male[word] && voxType == "male") incorrect_words += word if(incorrect_words.len) @@ -133,16 +137,21 @@ log_game("[key_name(src)] made a vocal announcement with the following message: [message].") for(var/word in words) - play_vox_word(word, src.z, null) + play_vox_word(word, src.z, null, voxType) -/proc/play_vox_word(word, z_level, mob/only_listener) +/proc/play_vox_word(word, z_level, mob/only_listener, voxType = "female") word = lowertext(word) - if(GLOB.vox_sounds[word]) + if( (GLOB.vox_sounds[word] && voxType == "female") || (GLOB.vox_sounds_male[word] && voxType == "male") ) - var/sound_file = GLOB.vox_sounds[word] + var/sound_file + + if(voxType == "female") + sound_file = GLOB.vox_sounds[word] + else + sound_file = GLOB.vox_sounds_male[word] var/sound/voice = sound(sound_file, wait = 1, channel = CHANNEL_VOX) voice.status = SOUND_STREAM diff --git a/modular_citadel/code/modules/mob/living/silicon/ai/vox_sounds.dm b/modular_citadel/code/modules/mob/living/silicon/ai/vox_sounds.dm new file mode 100644 index 0000000000..b1e112aac5 --- /dev/null +++ b/modular_citadel/code/modules/mob/living/silicon/ai/vox_sounds.dm @@ -0,0 +1,633 @@ +// List is required to compile the resources into the game when it loads. +// Dynamically loading it has bad results with sounds overtaking each other, even with the wait variable. +#ifdef AI_VOX + +GLOBAL_LIST_INIT(vox_sounds_male, list("," = 'modular_citadel/sound/vox/_comma.ogg', +"." = 'modular_citadel/sound/vox/_period.ogg', +"a" = 'modular_citadel/sound/vox/a.ogg', +"accelerating" = 'modular_citadel/sound/vox/accelerating.ogg', +"accelerator" = 'modular_citadel/sound/vox/accelerator.ogg', +"accepted" = 'modular_citadel/sound/vox/accepted.ogg', +"access" = 'modular_citadel/sound/vox/access.ogg', +"acknowledge" = 'modular_citadel/sound/vox/acknowledge.ogg', +"acknowledged" = 'modular_citadel/sound/vox/acknowledged.ogg', +"acquired" = 'modular_citadel/sound/vox/acquired.ogg', +"acquisition" = 'modular_citadel/sound/vox/acquisition.ogg', +"across" = 'modular_citadel/sound/vox/across.ogg', +"activate" = 'modular_citadel/sound/vox/activate.ogg', +"activated" = 'modular_citadel/sound/vox/activated.ogg', +"activity" = 'modular_citadel/sound/vox/activity.ogg', +"adios" = 'modular_citadel/sound/vox/adios.ogg', +"administration" = 'modular_citadel/sound/vox/administration.ogg', +"advanced" = 'modular_citadel/sound/vox/advanced.ogg', +"after" = 'modular_citadel/sound/vox/after.ogg', +"agent" = 'modular_citadel/sound/vox/agent.ogg', +"alarm" = 'modular_citadel/sound/vox/alarm.ogg', +"alert" = 'modular_citadel/sound/vox/alert.ogg', +"alien" = 'modular_citadel/sound/vox/alien.ogg', +"aligned" = 'modular_citadel/sound/vox/aligned.ogg', +"all" = 'modular_citadel/sound/vox/all.ogg', +"alpha" = 'modular_citadel/sound/vox/alpha.ogg', +"am" = 'modular_citadel/sound/vox/am.ogg', +"amigo" = 'modular_citadel/sound/vox/amigo.ogg', +"ammunition" = 'modular_citadel/sound/vox/ammunition.ogg', +"an" = 'modular_citadel/sound/vox/an.ogg', +"and" = 'modular_citadel/sound/vox/and.ogg', +"announcement" = 'modular_citadel/sound/vox/announcement.ogg', +"anomalous" = 'modular_citadel/sound/vox/anomalous.ogg', +"antenna" = 'modular_citadel/sound/vox/antenna.ogg', +"any" = 'modular_citadel/sound/vox/any.ogg', +"apprehend" = 'modular_citadel/sound/vox/apprehend.ogg', +"approach" = 'modular_citadel/sound/vox/approach.ogg', +"are" = 'modular_citadel/sound/vox/are.ogg', +"area" = 'modular_citadel/sound/vox/area.ogg', +"arm" = 'modular_citadel/sound/vox/arm.ogg', +"armed" = 'modular_citadel/sound/vox/armed.ogg', +"armor" = 'modular_citadel/sound/vox/armor.ogg', +"armory" = 'modular_citadel/sound/vox/armory.ogg', +"arrest" = 'modular_citadel/sound/vox/arrest.ogg', +"ass" = 'modular_citadel/sound/vox/ass.ogg', +"at" = 'modular_citadel/sound/vox/at.ogg', +"atomic" = 'modular_citadel/sound/vox/atomic.ogg', +"attention" = 'modular_citadel/sound/vox/attention.ogg', +"authorize" = 'modular_citadel/sound/vox/authorize.ogg', +"authorized" = 'modular_citadel/sound/vox/authorized.ogg', +"automatic" = 'modular_citadel/sound/vox/automatic.ogg', +"away" = 'modular_citadel/sound/vox/away.ogg', +"b" = 'modular_citadel/sound/vox/b.ogg', +"back" = 'modular_citadel/sound/vox/back.ogg', +"backman" = 'modular_citadel/sound/vox/backman.ogg', +"bad" = 'modular_citadel/sound/vox/bad.ogg', +"bag" = 'modular_citadel/sound/vox/bag.ogg', +"bailey" = 'modular_citadel/sound/vox/bailey.ogg', +"barracks" = 'modular_citadel/sound/vox/barracks.ogg', +"base" = 'modular_citadel/sound/vox/base.ogg', +"bay" = 'modular_citadel/sound/vox/bay.ogg', +"be" = 'modular_citadel/sound/vox/be.ogg', +"been" = 'modular_citadel/sound/vox/been.ogg', +"before" = 'modular_citadel/sound/vox/before.ogg', +"beyond" = 'modular_citadel/sound/vox/beyond.ogg', +"biohazard" = 'modular_citadel/sound/vox/biohazard.ogg', +"biological" = 'modular_citadel/sound/vox/biological.ogg', +"birdwell" = 'modular_citadel/sound/vox/birdwell.ogg', +"bizwarn" = 'modular_citadel/sound/vox/bizwarn.ogg', +"black" = 'modular_citadel/sound/vox/black.ogg', +"blast" = 'modular_citadel/sound/vox/blast.ogg', +"blocked" = 'modular_citadel/sound/vox/blocked.ogg', +"bloop" = 'modular_citadel/sound/vox/bloop.ogg', +"blue" = 'modular_citadel/sound/vox/blue.ogg', +"bottom" = 'modular_citadel/sound/vox/bottom.ogg', +"bravo" = 'modular_citadel/sound/vox/bravo.ogg', +"breach" = 'modular_citadel/sound/vox/breach.ogg', +"breached" = 'modular_citadel/sound/vox/breached.ogg', +"break" = 'modular_citadel/sound/vox/break.ogg', +"bridge" = 'modular_citadel/sound/vox/bridge.ogg', +"bust" = 'modular_citadel/sound/vox/bust.ogg', +"but" = 'modular_citadel/sound/vox/but.ogg', +"button" = 'modular_citadel/sound/vox/button.ogg', +"buzwarn" = 'modular_citadel/sound/vox/buzwarn.ogg', +"bypass" = 'modular_citadel/sound/vox/bypass.ogg', +"c" = 'modular_citadel/sound/vox/c.ogg', +"cable" = 'modular_citadel/sound/vox/cable.ogg', +"call" = 'modular_citadel/sound/vox/call.ogg', +"called" = 'modular_citadel/sound/vox/called.ogg', +"canal" = 'modular_citadel/sound/vox/canal.ogg', +"cap" = 'modular_citadel/sound/vox/cap.ogg', +"captain" = 'modular_citadel/sound/vox/captain.ogg', +"capture" = 'modular_citadel/sound/vox/capture.ogg', +"captured" = 'modular_citadel/sound/vox/captured.ogg', +"ceiling" = 'modular_citadel/sound/vox/ceiling.ogg', +"celsius" = 'modular_citadel/sound/vox/celsius.ogg', +"center" = 'modular_citadel/sound/vox/center.ogg', +"centi" = 'modular_citadel/sound/vox/centi.ogg', +"central" = 'modular_citadel/sound/vox/central.ogg', +"chamber" = 'modular_citadel/sound/vox/chamber.ogg', +"charlie" = 'modular_citadel/sound/vox/charlie.ogg', +"check" = 'modular_citadel/sound/vox/check.ogg', +"checkpoint" = 'modular_citadel/sound/vox/checkpoint.ogg', +"chemical" = 'modular_citadel/sound/vox/chemical.ogg', +"cleanup" = 'modular_citadel/sound/vox/cleanup.ogg', +"clear" = 'modular_citadel/sound/vox/clear.ogg', +"clearance" = 'modular_citadel/sound/vox/clearance.ogg', +"close" = 'modular_citadel/sound/vox/close.ogg', +"clown" = 'modular_citadel/sound/vox/clown.ogg', +"code" = 'modular_citadel/sound/vox/code.ogg', +"coded" = 'modular_citadel/sound/vox/coded.ogg', +"collider" = 'modular_citadel/sound/vox/collider.ogg', +"command" = 'modular_citadel/sound/vox/command.ogg', +"communication" = 'modular_citadel/sound/vox/communication.ogg', +"complex" = 'modular_citadel/sound/vox/complex.ogg', +"computer" = 'modular_citadel/sound/vox/computer.ogg', +"condition" = 'modular_citadel/sound/vox/condition.ogg', +"containment" = 'modular_citadel/sound/vox/containment.ogg', +"contamination" = 'modular_citadel/sound/vox/contamination.ogg', +"control" = 'modular_citadel/sound/vox/control.ogg', +"coolant" = 'modular_citadel/sound/vox/coolant.ogg', +"coomer" = 'modular_citadel/sound/vox/coomer.ogg', +"core" = 'modular_citadel/sound/vox/core.ogg', +"correct" = 'modular_citadel/sound/vox/correct.ogg', +"corridor" = 'modular_citadel/sound/vox/corridor.ogg', +"crew" = 'modular_citadel/sound/vox/crew.ogg', +"cross" = 'modular_citadel/sound/vox/cross.ogg', +"cryogenic" = 'modular_citadel/sound/vox/cryogenic.ogg', +"d" = 'modular_citadel/sound/vox/d.ogg', +"dadeda" = 'modular_citadel/sound/vox/dadeda.ogg', +"damage" = 'modular_citadel/sound/vox/damage.ogg', +"damaged" = 'modular_citadel/sound/vox/damaged.ogg', +"danger" = 'modular_citadel/sound/vox/danger.ogg', +"day" = 'modular_citadel/sound/vox/day.ogg', +"deactivated" = 'modular_citadel/sound/vox/deactivated.ogg', +"decompression" = 'modular_citadel/sound/vox/decompression.ogg', +"decontamination" = 'modular_citadel/sound/vox/decontamination.ogg', +"deeoo" = 'modular_citadel/sound/vox/deeoo.ogg', +"defense" = 'modular_citadel/sound/vox/defense.ogg', +"degrees" = 'modular_citadel/sound/vox/degrees.ogg', +"delta" = 'modular_citadel/sound/vox/delta.ogg', +"denied" = 'modular_citadel/sound/vox/denied.ogg', +"deploy" = 'modular_citadel/sound/vox/deploy.ogg', +"deployed" = 'modular_citadel/sound/vox/deployed.ogg', +"destroy" = 'modular_citadel/sound/vox/destroy.ogg', +"destroyed" = 'modular_citadel/sound/vox/destroyed.ogg', +"detain" = 'modular_citadel/sound/vox/detain.ogg', +"detected" = 'modular_citadel/sound/vox/detected.ogg', +"detonation" = 'modular_citadel/sound/vox/detonation.ogg', +"device" = 'modular_citadel/sound/vox/device.ogg', +"did" = 'modular_citadel/sound/vox/did.ogg', +"die" = 'modular_citadel/sound/vox/die.ogg', +"dimensional" = 'modular_citadel/sound/vox/dimensional.ogg', +"dirt" = 'modular_citadel/sound/vox/dirt.ogg', +"disengaged" = 'modular_citadel/sound/vox/disengaged.ogg', +"dish" = 'modular_citadel/sound/vox/dish.ogg', +"disposal" = 'modular_citadel/sound/vox/disposal.ogg', +"distance" = 'modular_citadel/sound/vox/distance.ogg', +"distortion" = 'modular_citadel/sound/vox/distortion.ogg', +"do" = 'modular_citadel/sound/vox/do.ogg', +"doctor" = 'modular_citadel/sound/vox/doctor.ogg', +"doop" = 'modular_citadel/sound/vox/doop.ogg', +"door" = 'modular_citadel/sound/vox/door.ogg', +"down" = 'modular_citadel/sound/vox/down.ogg', +"dual" = 'modular_citadel/sound/vox/dual.ogg', +"duct" = 'modular_citadel/sound/vox/duct.ogg', +"e" = 'modular_citadel/sound/vox/e.ogg', +"east" = 'modular_citadel/sound/vox/east.ogg', +"echo" = 'modular_citadel/sound/vox/echo.ogg', +"ed" = 'modular_citadel/sound/vox/ed.ogg', +"effect" = 'modular_citadel/sound/vox/effect.ogg', +"egress" = 'modular_citadel/sound/vox/egress.ogg', +"eight" = 'modular_citadel/sound/vox/eight.ogg', +"eighteen" = 'modular_citadel/sound/vox/eighteen.ogg', +"eighty" = 'modular_citadel/sound/vox/eighty.ogg', +"electric" = 'modular_citadel/sound/vox/electric.ogg', +"electromagnetic" = 'modular_citadel/sound/vox/electromagnetic.ogg', +"elevator" = 'modular_citadel/sound/vox/elevator.ogg', +"eleven" = 'modular_citadel/sound/vox/eleven.ogg', +"eliminate" = 'modular_citadel/sound/vox/eliminate.ogg', +"emergency" = 'modular_citadel/sound/vox/emergency.ogg', +"enemy" = 'modular_citadel/sound/vox/enemy.ogg', +"energy" = 'modular_citadel/sound/vox/energy.ogg', +"engage" = 'modular_citadel/sound/vox/engage.ogg', +"engaged" = 'modular_citadel/sound/vox/engaged.ogg', +"engine" = 'modular_citadel/sound/vox/engine.ogg', +"enter" = 'modular_citadel/sound/vox/enter.ogg', +"entry" = 'modular_citadel/sound/vox/entry.ogg', +"environment" = 'modular_citadel/sound/vox/environment.ogg', +"error" = 'modular_citadel/sound/vox/error.ogg', +"escape" = 'modular_citadel/sound/vox/escape.ogg', +"evacuate" = 'modular_citadel/sound/vox/evacuate.ogg', +"exchange" = 'modular_citadel/sound/vox/exchange.ogg', +"exit" = 'modular_citadel/sound/vox/exit.ogg', +"expect" = 'modular_citadel/sound/vox/expect.ogg', +"experiment" = 'modular_citadel/sound/vox/experiment.ogg', +"experimental" = 'modular_citadel/sound/vox/experimental.ogg', +"explode" = 'modular_citadel/sound/vox/explode.ogg', +"explosion" = 'modular_citadel/sound/vox/explosion.ogg', +"exposure" = 'modular_citadel/sound/vox/exposure.ogg', +"exterminate" = 'modular_citadel/sound/vox/exterminate.ogg', +"extinguish" = 'modular_citadel/sound/vox/extinguish.ogg', +"extinguisher" = 'modular_citadel/sound/vox/extinguisher.ogg', +"extreme" = 'modular_citadel/sound/vox/extreme.ogg', +"f" = 'modular_citadel/sound/vox/f.ogg', +"face" = 'modular_citadel/sound/vox/face.ogg', +"facility" = 'modular_citadel/sound/vox/facility.ogg', +"fahrenheit" = 'modular_citadel/sound/vox/fahrenheit.ogg', +"failed" = 'modular_citadel/sound/vox/failed.ogg', +"failure" = 'modular_citadel/sound/vox/failure.ogg', +"farthest" = 'modular_citadel/sound/vox/farthest.ogg', +"fast" = 'modular_citadel/sound/vox/fast.ogg', +"feet" = 'modular_citadel/sound/vox/feet.ogg', +"field" = 'modular_citadel/sound/vox/field.ogg', +"fifteen" = 'modular_citadel/sound/vox/fifteen.ogg', +"fifth" = 'modular_citadel/sound/vox/fifth.ogg', +"fifty" = 'modular_citadel/sound/vox/fifty.ogg', +"final" = 'modular_citadel/sound/vox/final.ogg', +"fine" = 'modular_citadel/sound/vox/fine.ogg', +"fire" = 'modular_citadel/sound/vox/fire.ogg', +"first" = 'modular_citadel/sound/vox/first.ogg', +"five" = 'modular_citadel/sound/vox/five.ogg', +"flag" = 'modular_citadel/sound/vox/flag.ogg', +"flooding" = 'modular_citadel/sound/vox/flooding.ogg', +"floor" = 'modular_citadel/sound/vox/floor.ogg', +"fool" = 'modular_citadel/sound/vox/fool.ogg', +"for" = 'modular_citadel/sound/vox/for.ogg', +"forbidden" = 'modular_citadel/sound/vox/forbidden.ogg', +"force" = 'modular_citadel/sound/vox/force.ogg', +"forms" = 'modular_citadel/sound/vox/forms.ogg', +"found" = 'modular_citadel/sound/vox/found.ogg', +"four" = 'modular_citadel/sound/vox/four.ogg', +"fourteen" = 'modular_citadel/sound/vox/fourteen.ogg', +"fourth" = 'modular_citadel/sound/vox/fourth.ogg', +"fourty" = 'modular_citadel/sound/vox/fourty.ogg', +"foxtrot" = 'modular_citadel/sound/vox/foxtrot.ogg', +"freeman" = 'modular_citadel/sound/vox/freeman.ogg', +"freezer" = 'modular_citadel/sound/vox/freezer.ogg', +"from" = 'modular_citadel/sound/vox/from.ogg', +"front" = 'modular_citadel/sound/vox/front.ogg', +"fuel" = 'modular_citadel/sound/vox/fuel.ogg', +"g" = 'modular_citadel/sound/vox/g.ogg', +"gay" = 'modular_citadel/sound/vox/gay.ogg', +"get" = 'modular_citadel/sound/vox/get.ogg', +"go" = 'modular_citadel/sound/vox/go.ogg', +"going" = 'modular_citadel/sound/vox/going.ogg', +"good" = 'modular_citadel/sound/vox/good.ogg', +"goodbye" = 'modular_citadel/sound/vox/goodbye.ogg', +"gordon" = 'modular_citadel/sound/vox/gordon.ogg', +"got" = 'modular_citadel/sound/vox/got.ogg', +"government" = 'modular_citadel/sound/vox/government.ogg', +"granted" = 'modular_citadel/sound/vox/granted.ogg', +"great" = 'modular_citadel/sound/vox/great.ogg', +"green" = 'modular_citadel/sound/vox/green.ogg', +"grenade" = 'modular_citadel/sound/vox/grenade.ogg', +"guard" = 'modular_citadel/sound/vox/guard.ogg', +"gulf" = 'modular_citadel/sound/vox/gulf.ogg', +"gun" = 'modular_citadel/sound/vox/gun.ogg', +"guthrie" = 'modular_citadel/sound/vox/guthrie.ogg', +"handling" = 'modular_citadel/sound/vox/handling.ogg', +"hangar" = 'modular_citadel/sound/vox/hangar.ogg', +"has" = 'modular_citadel/sound/vox/has.ogg', +"have" = 'modular_citadel/sound/vox/have.ogg', +"hazard" = 'modular_citadel/sound/vox/hazard.ogg', +"head" = 'modular_citadel/sound/vox/head.ogg', +"health" = 'modular_citadel/sound/vox/health.ogg', +"heat" = 'modular_citadel/sound/vox/heat.ogg', +"helicopter" = 'modular_citadel/sound/vox/helicopter.ogg', +"helium" = 'modular_citadel/sound/vox/helium.ogg', +"hello" = 'modular_citadel/sound/vox/hello.ogg', +"help" = 'modular_citadel/sound/vox/help.ogg', +"here" = 'modular_citadel/sound/vox/here.ogg', +"hide" = 'modular_citadel/sound/vox/hide.ogg', +"high" = 'modular_citadel/sound/vox/high.ogg', +"highest" = 'modular_citadel/sound/vox/highest.ogg', +"hit" = 'modular_citadel/sound/vox/hit.ogg', +"holds" = 'modular_citadel/sound/vox/holds.ogg', +"hole" = 'modular_citadel/sound/vox/hole.ogg', +"hostile" = 'modular_citadel/sound/vox/hostile.ogg', +"hot" = 'modular_citadel/sound/vox/hot.ogg', +"hotel" = 'modular_citadel/sound/vox/hotel.ogg', +"hour" = 'modular_citadel/sound/vox/hour.ogg', +"hours" = 'modular_citadel/sound/vox/hours.ogg', +"hundred" = 'modular_citadel/sound/vox/hundred.ogg', +"hydro" = 'modular_citadel/sound/vox/hydro.ogg', +"i" = 'modular_citadel/sound/vox/i.ogg', +"idiot" = 'modular_citadel/sound/vox/idiot.ogg', +"illegal" = 'modular_citadel/sound/vox/illegal.ogg', +"immediate" = 'modular_citadel/sound/vox/immediate.ogg', +"immediately" = 'modular_citadel/sound/vox/immediately.ogg', +"in" = 'modular_citadel/sound/vox/in.ogg', +"inches" = 'modular_citadel/sound/vox/inches.ogg', +"india" = 'modular_citadel/sound/vox/india.ogg', +"ing" = 'modular_citadel/sound/vox/ing.ogg', +"inoperative" = 'modular_citadel/sound/vox/inoperative.ogg', +"inside" = 'modular_citadel/sound/vox/inside.ogg', +"inspection" = 'modular_citadel/sound/vox/inspection.ogg', +"inspector" = 'modular_citadel/sound/vox/inspector.ogg', +"interchange" = 'modular_citadel/sound/vox/interchange.ogg', +"intruder" = 'modular_citadel/sound/vox/intruder.ogg', +"invallid" = 'modular_citadel/sound/vox/invallid.ogg', +"invasion" = 'modular_citadel/sound/vox/invasion.ogg', +"is" = 'modular_citadel/sound/vox/is.ogg', +"it" = 'modular_citadel/sound/vox/it.ogg', +"johnson" = 'modular_citadel/sound/vox/johnson.ogg', +"juliet" = 'modular_citadel/sound/vox/juliet.ogg', +"key" = 'modular_citadel/sound/vox/key.ogg', +"kill" = 'modular_citadel/sound/vox/kill.ogg', +"kilo" = 'modular_citadel/sound/vox/kilo.ogg', +"kit" = 'modular_citadel/sound/vox/kit.ogg', +"lab" = 'modular_citadel/sound/vox/lab.ogg', +"lambda" = 'modular_citadel/sound/vox/lambda.ogg', +"laser" = 'modular_citadel/sound/vox/laser.ogg', +"last" = 'modular_citadel/sound/vox/last.ogg', +"launch" = 'modular_citadel/sound/vox/launch.ogg', +"leak" = 'modular_citadel/sound/vox/leak.ogg', +"leave" = 'modular_citadel/sound/vox/leave.ogg', +"left" = 'modular_citadel/sound/vox/left.ogg', +"legal" = 'modular_citadel/sound/vox/legal.ogg', +"level" = 'modular_citadel/sound/vox/level.ogg', +"lever" = 'modular_citadel/sound/vox/lever.ogg', +"lie" = 'modular_citadel/sound/vox/lie.ogg', +"lieutenant" = 'modular_citadel/sound/vox/lieutenant.ogg', +"life" = 'modular_citadel/sound/vox/life.ogg', +"light" = 'modular_citadel/sound/vox/light.ogg', +"lima" = 'modular_citadel/sound/vox/lima.ogg', +"liquid" = 'modular_citadel/sound/vox/liquid.ogg', +"loading" = 'modular_citadel/sound/vox/loading.ogg', +"locate" = 'modular_citadel/sound/vox/locate.ogg', +"located" = 'modular_citadel/sound/vox/located.ogg', +"location" = 'modular_citadel/sound/vox/location.ogg', +"lock" = 'modular_citadel/sound/vox/lock.ogg', +"locked" = 'modular_citadel/sound/vox/locked.ogg', +"locker" = 'modular_citadel/sound/vox/locker.ogg', +"lockout" = 'modular_citadel/sound/vox/lockout.ogg', +"lower" = 'modular_citadel/sound/vox/lower.ogg', +"lowest" = 'modular_citadel/sound/vox/lowest.ogg', +"magnetic" = 'modular_citadel/sound/vox/magnetic.ogg', +"main" = 'modular_citadel/sound/vox/main.ogg', +"maintenance" = 'modular_citadel/sound/vox/maintenance.ogg', +"malfunction" = 'modular_citadel/sound/vox/malfunction.ogg', +"man" = 'modular_citadel/sound/vox/man.ogg', +"mass" = 'modular_citadel/sound/vox/mass.ogg', +"materials" = 'modular_citadel/sound/vox/materials.ogg', +"maximum" = 'modular_citadel/sound/vox/maximum.ogg', +"may" = 'modular_citadel/sound/vox/may.ogg', +"med" = 'modular_citadel/sound/vox/med.ogg', +"medical" = 'modular_citadel/sound/vox/medical.ogg', +"men" = 'modular_citadel/sound/vox/men.ogg', +"mercy" = 'modular_citadel/sound/vox/mercy.ogg', +"mesa" = 'modular_citadel/sound/vox/mesa.ogg', +"message" = 'modular_citadel/sound/vox/message.ogg', +"meter" = 'modular_citadel/sound/vox/meter.ogg', +"micro" = 'modular_citadel/sound/vox/micro.ogg', +"middle" = 'modular_citadel/sound/vox/middle.ogg', +"mike" = 'modular_citadel/sound/vox/mike.ogg', +"miles" = 'modular_citadel/sound/vox/miles.ogg', +"military" = 'modular_citadel/sound/vox/military.ogg', +"milli" = 'modular_citadel/sound/vox/milli.ogg', +"million" = 'modular_citadel/sound/vox/million.ogg', +"minefield" = 'modular_citadel/sound/vox/minefield.ogg', +"minimum" = 'modular_citadel/sound/vox/minimum.ogg', +"minutes" = 'modular_citadel/sound/vox/minutes.ogg', +"mister" = 'modular_citadel/sound/vox/mister.ogg', +"mode" = 'modular_citadel/sound/vox/mode.ogg', +"motor" = 'modular_citadel/sound/vox/motor.ogg', +"motorpool" = 'modular_citadel/sound/vox/motorpool.ogg', +"move" = 'modular_citadel/sound/vox/move.ogg', +"must" = 'modular_citadel/sound/vox/must.ogg', +"nearest" = 'modular_citadel/sound/vox/nearest.ogg', +"nice" = 'modular_citadel/sound/vox/nice.ogg', +"nine" = 'modular_citadel/sound/vox/nine.ogg', +"nineteen" = 'modular_citadel/sound/vox/nineteen.ogg', +"ninety" = 'modular_citadel/sound/vox/ninety.ogg', +"no" = 'modular_citadel/sound/vox/no.ogg', +"nominal" = 'modular_citadel/sound/vox/nominal.ogg', +"north" = 'modular_citadel/sound/vox/north.ogg', +"not" = 'modular_citadel/sound/vox/not.ogg', +"november" = 'modular_citadel/sound/vox/november.ogg', +"now" = 'modular_citadel/sound/vox/now.ogg', +"number" = 'modular_citadel/sound/vox/number.ogg', +"objective" = 'modular_citadel/sound/vox/objective.ogg', +"observation" = 'modular_citadel/sound/vox/observation.ogg', +"of" = 'modular_citadel/sound/vox/of.ogg', +"officer" = 'modular_citadel/sound/vox/officer.ogg', +"ok" = 'modular_citadel/sound/vox/ok.ogg', +"on" = 'modular_citadel/sound/vox/on.ogg', +"one" = 'modular_citadel/sound/vox/one.ogg', +"open" = 'modular_citadel/sound/vox/open.ogg', +"operating" = 'modular_citadel/sound/vox/operating.ogg', +"operations" = 'modular_citadel/sound/vox/operations.ogg', +"operative" = 'modular_citadel/sound/vox/operative.ogg', +"option" = 'modular_citadel/sound/vox/option.ogg', +"order" = 'modular_citadel/sound/vox/order.ogg', +"organic" = 'modular_citadel/sound/vox/organic.ogg', +"oscar" = 'modular_citadel/sound/vox/oscar.ogg', +"out" = 'modular_citadel/sound/vox/out.ogg', +"outside" = 'modular_citadel/sound/vox/outside.ogg', +"over" = 'modular_citadel/sound/vox/over.ogg', +"overload" = 'modular_citadel/sound/vox/overload.ogg', +"override" = 'modular_citadel/sound/vox/override.ogg', +"pacify" = 'modular_citadel/sound/vox/pacify.ogg', +"pain" = 'modular_citadel/sound/vox/pain.ogg', +"pal" = 'modular_citadel/sound/vox/pal.ogg', +"panel" = 'modular_citadel/sound/vox/panel.ogg', +"percent" = 'modular_citadel/sound/vox/percent.ogg', +"perimeter" = 'modular_citadel/sound/vox/perimeter.ogg', +"permitted" = 'modular_citadel/sound/vox/permitted.ogg', +"personnel" = 'modular_citadel/sound/vox/personnel.ogg', +"pipe" = 'modular_citadel/sound/vox/pipe.ogg', +"plant" = 'modular_citadel/sound/vox/plant.ogg', +"platform" = 'modular_citadel/sound/vox/platform.ogg', +"please" = 'modular_citadel/sound/vox/please.ogg', +"point" = 'modular_citadel/sound/vox/point.ogg', +"portal" = 'modular_citadel/sound/vox/portal.ogg', +"power" = 'modular_citadel/sound/vox/power.ogg', +"presence" = 'modular_citadel/sound/vox/presence.ogg', +"press" = 'modular_citadel/sound/vox/press.ogg', +"primary" = 'modular_citadel/sound/vox/primary.ogg', +"proceed" = 'modular_citadel/sound/vox/proceed.ogg', +"processing" = 'modular_citadel/sound/vox/processing.ogg', +"progress" = 'modular_citadel/sound/vox/progress.ogg', +"proper" = 'modular_citadel/sound/vox/proper.ogg', +"propulsion" = 'modular_citadel/sound/vox/propulsion.ogg', +"prosecute" = 'modular_citadel/sound/vox/prosecute.ogg', +"protective" = 'modular_citadel/sound/vox/protective.ogg', +"push" = 'modular_citadel/sound/vox/push.ogg', +"quantum" = 'modular_citadel/sound/vox/quantum.ogg', +"quebec" = 'modular_citadel/sound/vox/quebec.ogg', +"question" = 'modular_citadel/sound/vox/question.ogg', +"questioning" = 'modular_citadel/sound/vox/questioning.ogg', +"quick" = 'modular_citadel/sound/vox/quick.ogg', +"quit" = 'modular_citadel/sound/vox/quit.ogg', +"radiation" = 'modular_citadel/sound/vox/radiation.ogg', +"radioactive" = 'modular_citadel/sound/vox/radioactive.ogg', +"rads" = 'modular_citadel/sound/vox/rads.ogg', +"rapid" = 'modular_citadel/sound/vox/rapid.ogg', +"reach" = 'modular_citadel/sound/vox/reach.ogg', +"reached" = 'modular_citadel/sound/vox/reached.ogg', +"reactor" = 'modular_citadel/sound/vox/reactor.ogg', +"red" = 'modular_citadel/sound/vox/red.ogg', +"relay" = 'modular_citadel/sound/vox/relay.ogg', +"released" = 'modular_citadel/sound/vox/released.ogg', +"remaining" = 'modular_citadel/sound/vox/remaining.ogg', +"renegade" = 'modular_citadel/sound/vox/renegade.ogg', +"repair" = 'modular_citadel/sound/vox/repair.ogg', +"report" = 'modular_citadel/sound/vox/report.ogg', +"reports" = 'modular_citadel/sound/vox/reports.ogg', +"required" = 'modular_citadel/sound/vox/required.ogg', +"research" = 'modular_citadel/sound/vox/research.ogg', +"reset" = 'modular_citadel/sound/vox/reset.ogg', +"resevoir" = 'modular_citadel/sound/vox/resevoir.ogg', +"resistance" = 'modular_citadel/sound/vox/resistance.ogg', +"returned" = 'modular_citadel/sound/vox/returned.ogg', +"right" = 'modular_citadel/sound/vox/right.ogg', +"rocket" = 'modular_citadel/sound/vox/rocket.ogg', +"roger" = 'modular_citadel/sound/vox/roger.ogg', +"romeo" = 'modular_citadel/sound/vox/romeo.ogg', +"room" = 'modular_citadel/sound/vox/room.ogg', +"round" = 'modular_citadel/sound/vox/round.ogg', +"run" = 'modular_citadel/sound/vox/run.ogg', +"safe" = 'modular_citadel/sound/vox/safe.ogg', +"safety" = 'modular_citadel/sound/vox/safety.ogg', +"sargeant" = 'modular_citadel/sound/vox/sargeant.ogg', +"satellite" = 'modular_citadel/sound/vox/satellite.ogg', +"save" = 'modular_citadel/sound/vox/save.ogg', +"science" = 'modular_citadel/sound/vox/science.ogg', +"scores" = 'modular_citadel/sound/vox/scores.ogg', +"scream" = 'modular_citadel/sound/vox/scream.ogg', +"screen" = 'modular_citadel/sound/vox/screen.ogg', +"search" = 'modular_citadel/sound/vox/search.ogg', +"second" = 'modular_citadel/sound/vox/second.ogg', +"secondary" = 'modular_citadel/sound/vox/secondary.ogg', +"seconds" = 'modular_citadel/sound/vox/seconds.ogg', +"sector" = 'modular_citadel/sound/vox/sector.ogg', +"secure" = 'modular_citadel/sound/vox/secure.ogg', +"secured" = 'modular_citadel/sound/vox/secured.ogg', +"security" = 'modular_citadel/sound/vox/security.ogg', +"select" = 'modular_citadel/sound/vox/select.ogg', +"selected" = 'modular_citadel/sound/vox/selected.ogg', +"service" = 'modular_citadel/sound/vox/service.ogg', +"seven" = 'modular_citadel/sound/vox/seven.ogg', +"seventeen" = 'modular_citadel/sound/vox/seventeen.ogg', +"seventy" = 'modular_citadel/sound/vox/seventy.ogg', +"severe" = 'modular_citadel/sound/vox/severe.ogg', +"sewage" = 'modular_citadel/sound/vox/sewage.ogg', +"sewer" = 'modular_citadel/sound/vox/sewer.ogg', +"shield" = 'modular_citadel/sound/vox/shield.ogg', +"shipment" = 'modular_citadel/sound/vox/shipment.ogg', +"shock" = 'modular_citadel/sound/vox/shock.ogg', +"shoot" = 'modular_citadel/sound/vox/shoot.ogg', +"shower" = 'modular_citadel/sound/vox/shower.ogg', +"shut" = 'modular_citadel/sound/vox/shut.ogg', +"side" = 'modular_citadel/sound/vox/side.ogg', +"sierra" = 'modular_citadel/sound/vox/sierra.ogg', +"sight" = 'modular_citadel/sound/vox/sight.ogg', +"silo" = 'modular_citadel/sound/vox/silo.ogg', +"six" = 'modular_citadel/sound/vox/six.ogg', +"sixteen" = 'modular_citadel/sound/vox/sixteen.ogg', +"sixty" = 'modular_citadel/sound/vox/sixty.ogg', +"slime" = 'modular_citadel/sound/vox/slime.ogg', +"slow" = 'modular_citadel/sound/vox/slow.ogg', +"soldier" = 'modular_citadel/sound/vox/soldier.ogg', +"some" = 'modular_citadel/sound/vox/some.ogg', +"someone" = 'modular_citadel/sound/vox/someone.ogg', +"something" = 'modular_citadel/sound/vox/something.ogg', +"son" = 'modular_citadel/sound/vox/son.ogg', +"sorry" = 'modular_citadel/sound/vox/sorry.ogg', +"south" = 'modular_citadel/sound/vox/south.ogg', +"squad" = 'modular_citadel/sound/vox/squad.ogg', +"square" = 'modular_citadel/sound/vox/square.ogg', +"stairway" = 'modular_citadel/sound/vox/stairway.ogg', +"status" = 'modular_citadel/sound/vox/status.ogg', +"sterile" = 'modular_citadel/sound/vox/sterile.ogg', +"sterilization" = 'modular_citadel/sound/vox/sterilization.ogg', +"stolen" = 'modular_citadel/sound/vox/stolen.ogg', +"storage" = 'modular_citadel/sound/vox/storage.ogg', +"sub" = 'modular_citadel/sound/vox/sub.ogg', +"subsurface" = 'modular_citadel/sound/vox/subsurface.ogg', +"sudden" = 'modular_citadel/sound/vox/sudden.ogg', +"suit" = 'modular_citadel/sound/vox/suit.ogg', +"superconducting" = 'modular_citadel/sound/vox/superconducting.ogg', +"supercooled" = 'modular_citadel/sound/vox/supercooled.ogg', +"supply" = 'modular_citadel/sound/vox/supply.ogg', +"surface" = 'modular_citadel/sound/vox/surface.ogg', +"surrender" = 'modular_citadel/sound/vox/surrender.ogg', +"surround" = 'modular_citadel/sound/vox/surround.ogg', +"surrounded" = 'modular_citadel/sound/vox/surrounded.ogg', +"switch" = 'modular_citadel/sound/vox/switch.ogg', +"system" = 'modular_citadel/sound/vox/system.ogg', +"systems" = 'modular_citadel/sound/vox/systems.ogg', +"tactical" = 'modular_citadel/sound/vox/tactical.ogg', +"take" = 'modular_citadel/sound/vox/take.ogg', +"talk" = 'modular_citadel/sound/vox/talk.ogg', +"tango" = 'modular_citadel/sound/vox/tango.ogg', +"tank" = 'modular_citadel/sound/vox/tank.ogg', +"target" = 'modular_citadel/sound/vox/target.ogg', +"team" = 'modular_citadel/sound/vox/team.ogg', +"temperature" = 'modular_citadel/sound/vox/temperature.ogg', +"temporal" = 'modular_citadel/sound/vox/temporal.ogg', +"ten" = 'modular_citadel/sound/vox/ten.ogg', +"terminal" = 'modular_citadel/sound/vox/terminal.ogg', +"terminated" = 'modular_citadel/sound/vox/terminated.ogg', +"termination" = 'modular_citadel/sound/vox/termination.ogg', +"test" = 'modular_citadel/sound/vox/test.ogg', +"that" = 'modular_citadel/sound/vox/that.ogg', +"the" = 'modular_citadel/sound/vox/the.ogg', +"then" = 'modular_citadel/sound/vox/then.ogg', +"there" = 'modular_citadel/sound/vox/there.ogg', +"third" = 'modular_citadel/sound/vox/third.ogg', +"thirteen" = 'modular_citadel/sound/vox/thirteen.ogg', +"thirty" = 'modular_citadel/sound/vox/thirty.ogg', +"this" = 'modular_citadel/sound/vox/this.ogg', +"those" = 'modular_citadel/sound/vox/those.ogg', +"thousand" = 'modular_citadel/sound/vox/thousand.ogg', +"threat" = 'modular_citadel/sound/vox/threat.ogg', +"three" = 'modular_citadel/sound/vox/three.ogg', +"through" = 'modular_citadel/sound/vox/through.ogg', +"time" = 'modular_citadel/sound/vox/time.ogg', +"to" = 'modular_citadel/sound/vox/to.ogg', +"top" = 'modular_citadel/sound/vox/top.ogg', +"topside" = 'modular_citadel/sound/vox/topside.ogg', +"touch" = 'modular_citadel/sound/vox/touch.ogg', +"towards" = 'modular_citadel/sound/vox/towards.ogg', +"track" = 'modular_citadel/sound/vox/track.ogg', +"train" = 'modular_citadel/sound/vox/train.ogg', +"transportation" = 'modular_citadel/sound/vox/transportation.ogg', +"truck" = 'modular_citadel/sound/vox/truck.ogg', +"tunnel" = 'modular_citadel/sound/vox/tunnel.ogg', +"turn" = 'modular_citadel/sound/vox/turn.ogg', +"turret" = 'modular_citadel/sound/vox/turret.ogg', +"twelve" = 'modular_citadel/sound/vox/twelve.ogg', +"twenty" = 'modular_citadel/sound/vox/twenty.ogg', +"two" = 'modular_citadel/sound/vox/two.ogg', +"unauthorized" = 'modular_citadel/sound/vox/unauthorized.ogg', +"under" = 'modular_citadel/sound/vox/under.ogg', +"uniform" = 'modular_citadel/sound/vox/uniform.ogg', +"unlocked" = 'modular_citadel/sound/vox/unlocked.ogg', +"until" = 'modular_citadel/sound/vox/until.ogg', +"up" = 'modular_citadel/sound/vox/up.ogg', +"upper" = 'modular_citadel/sound/vox/upper.ogg', +"uranium" = 'modular_citadel/sound/vox/uranium.ogg', +"us" = 'modular_citadel/sound/vox/us.ogg', +"usa" = 'modular_citadel/sound/vox/usa.ogg', +"use" = 'modular_citadel/sound/vox/use.ogg', +"used" = 'modular_citadel/sound/vox/used.ogg', +"user" = 'modular_citadel/sound/vox/user.ogg', +"vacate" = 'modular_citadel/sound/vox/vacate.ogg', +"valid" = 'modular_citadel/sound/vox/valid.ogg', +"vapor" = 'modular_citadel/sound/vox/vapor.ogg', +"vent" = 'modular_citadel/sound/vox/vent.ogg', +"ventillation" = 'modular_citadel/sound/vox/ventillation.ogg', +"victor" = 'modular_citadel/sound/vox/victor.ogg', +"violated" = 'modular_citadel/sound/vox/violated.ogg', +"violation" = 'modular_citadel/sound/vox/violation.ogg', +"voltage" = 'modular_citadel/sound/vox/voltage.ogg', +"vox_login" = 'modular_citadel/sound/vox/vox_login.ogg', +"walk" = 'modular_citadel/sound/vox/walk.ogg', +"wall" = 'modular_citadel/sound/vox/wall.ogg', +"want" = 'modular_citadel/sound/vox/want.ogg', +"wanted" = 'modular_citadel/sound/vox/wanted.ogg', +"warm" = 'modular_citadel/sound/vox/warm.ogg', +"warn" = 'modular_citadel/sound/vox/warn.ogg', +"warning" = 'modular_citadel/sound/vox/warning.ogg', +"waste" = 'modular_citadel/sound/vox/waste.ogg', +"water" = 'modular_citadel/sound/vox/water.ogg', +"we" = 'modular_citadel/sound/vox/we.ogg', +"weapon" = 'modular_citadel/sound/vox/weapon.ogg', +"west" = 'modular_citadel/sound/vox/west.ogg', +"whiskey" = 'modular_citadel/sound/vox/whiskey.ogg', +"white" = 'modular_citadel/sound/vox/white.ogg', +"wilco" = 'modular_citadel/sound/vox/wilco.ogg', +"will" = 'modular_citadel/sound/vox/will.ogg', +"with" = 'modular_citadel/sound/vox/with.ogg', +"without" = 'modular_citadel/sound/vox/without.ogg', +"woop" = 'modular_citadel/sound/vox/woop.ogg', +"xeno" = 'modular_citadel/sound/vox/xeno.ogg', +"yankee" = 'modular_citadel/sound/vox/yankee.ogg', +"yards" = 'modular_citadel/sound/vox/yards.ogg', +"year" = 'modular_citadel/sound/vox/year.ogg', +"yellow" = 'modular_citadel/sound/vox/yellow.ogg', +"yes" = 'modular_citadel/sound/vox/yes.ogg', +"you" = 'modular_citadel/sound/vox/you.ogg', +"your" = 'modular_citadel/sound/vox/your.ogg', +"yourself" = 'modular_citadel/sound/vox/yourself.ogg', +"zero" = 'modular_citadel/sound/vox/zero.ogg', +"zone" = 'modular_citadel/sound/vox/zone.ogg', +"zulu" = 'modular_citadel/sound/vox/zulu.ogg',)) +#endif \ No newline at end of file diff --git a/modular_citadel/sound/vox/_comma.ogg b/modular_citadel/sound/vox/_comma.ogg new file mode 100644 index 0000000000..55ee3102a0 Binary files /dev/null and b/modular_citadel/sound/vox/_comma.ogg differ diff --git a/modular_citadel/sound/vox/_period.ogg b/modular_citadel/sound/vox/_period.ogg new file mode 100644 index 0000000000..dfb816d006 Binary files /dev/null and b/modular_citadel/sound/vox/_period.ogg differ diff --git a/modular_citadel/sound/vox/a.ogg b/modular_citadel/sound/vox/a.ogg new file mode 100644 index 0000000000..ad3a851290 Binary files /dev/null and b/modular_citadel/sound/vox/a.ogg differ diff --git a/modular_citadel/sound/vox/accelerating.ogg b/modular_citadel/sound/vox/accelerating.ogg new file mode 100644 index 0000000000..d6426aa798 Binary files /dev/null and b/modular_citadel/sound/vox/accelerating.ogg differ diff --git a/modular_citadel/sound/vox/accelerator.ogg b/modular_citadel/sound/vox/accelerator.ogg new file mode 100644 index 0000000000..6e8e1f10e8 Binary files /dev/null and b/modular_citadel/sound/vox/accelerator.ogg differ diff --git a/modular_citadel/sound/vox/accepted.ogg b/modular_citadel/sound/vox/accepted.ogg new file mode 100644 index 0000000000..f6c411f8c5 Binary files /dev/null and b/modular_citadel/sound/vox/accepted.ogg differ diff --git a/modular_citadel/sound/vox/access.ogg b/modular_citadel/sound/vox/access.ogg new file mode 100644 index 0000000000..ae8390e516 Binary files /dev/null and b/modular_citadel/sound/vox/access.ogg differ diff --git a/modular_citadel/sound/vox/acknowledge.ogg b/modular_citadel/sound/vox/acknowledge.ogg new file mode 100644 index 0000000000..da3143b729 Binary files /dev/null and b/modular_citadel/sound/vox/acknowledge.ogg differ diff --git a/modular_citadel/sound/vox/acknowledged.ogg b/modular_citadel/sound/vox/acknowledged.ogg new file mode 100644 index 0000000000..b4b89eaa52 Binary files /dev/null and b/modular_citadel/sound/vox/acknowledged.ogg differ diff --git a/modular_citadel/sound/vox/acquired.ogg b/modular_citadel/sound/vox/acquired.ogg new file mode 100644 index 0000000000..ba4595a908 Binary files /dev/null and b/modular_citadel/sound/vox/acquired.ogg differ diff --git a/modular_citadel/sound/vox/acquisition.ogg b/modular_citadel/sound/vox/acquisition.ogg new file mode 100644 index 0000000000..fcdf6a9832 Binary files /dev/null and b/modular_citadel/sound/vox/acquisition.ogg differ diff --git a/modular_citadel/sound/vox/across.ogg b/modular_citadel/sound/vox/across.ogg new file mode 100644 index 0000000000..d026b3dba9 Binary files /dev/null and b/modular_citadel/sound/vox/across.ogg differ diff --git a/modular_citadel/sound/vox/activate.ogg b/modular_citadel/sound/vox/activate.ogg new file mode 100644 index 0000000000..5611c456a7 Binary files /dev/null and b/modular_citadel/sound/vox/activate.ogg differ diff --git a/modular_citadel/sound/vox/activated.ogg b/modular_citadel/sound/vox/activated.ogg new file mode 100644 index 0000000000..e3fafca3b2 Binary files /dev/null and b/modular_citadel/sound/vox/activated.ogg differ diff --git a/modular_citadel/sound/vox/activity.ogg b/modular_citadel/sound/vox/activity.ogg new file mode 100644 index 0000000000..66535b485d Binary files /dev/null and b/modular_citadel/sound/vox/activity.ogg differ diff --git a/modular_citadel/sound/vox/adios.ogg b/modular_citadel/sound/vox/adios.ogg new file mode 100644 index 0000000000..1eedd5468b Binary files /dev/null and b/modular_citadel/sound/vox/adios.ogg differ diff --git a/modular_citadel/sound/vox/administration.ogg b/modular_citadel/sound/vox/administration.ogg new file mode 100644 index 0000000000..44f8b3e8d8 Binary files /dev/null and b/modular_citadel/sound/vox/administration.ogg differ diff --git a/modular_citadel/sound/vox/advanced.ogg b/modular_citadel/sound/vox/advanced.ogg new file mode 100644 index 0000000000..df110dd8db Binary files /dev/null and b/modular_citadel/sound/vox/advanced.ogg differ diff --git a/modular_citadel/sound/vox/after.ogg b/modular_citadel/sound/vox/after.ogg new file mode 100644 index 0000000000..8c0857f99c Binary files /dev/null and b/modular_citadel/sound/vox/after.ogg differ diff --git a/modular_citadel/sound/vox/agent.ogg b/modular_citadel/sound/vox/agent.ogg new file mode 100644 index 0000000000..eae99227bc Binary files /dev/null and b/modular_citadel/sound/vox/agent.ogg differ diff --git a/modular_citadel/sound/vox/alarm.ogg b/modular_citadel/sound/vox/alarm.ogg new file mode 100644 index 0000000000..54bcc0b980 Binary files /dev/null and b/modular_citadel/sound/vox/alarm.ogg differ diff --git a/modular_citadel/sound/vox/alert.ogg b/modular_citadel/sound/vox/alert.ogg new file mode 100644 index 0000000000..08620fa58c Binary files /dev/null and b/modular_citadel/sound/vox/alert.ogg differ diff --git a/modular_citadel/sound/vox/alien.ogg b/modular_citadel/sound/vox/alien.ogg new file mode 100644 index 0000000000..cb3c3d7787 Binary files /dev/null and b/modular_citadel/sound/vox/alien.ogg differ diff --git a/modular_citadel/sound/vox/aligned.ogg b/modular_citadel/sound/vox/aligned.ogg new file mode 100644 index 0000000000..f561a1ec2f Binary files /dev/null and b/modular_citadel/sound/vox/aligned.ogg differ diff --git a/modular_citadel/sound/vox/all.ogg b/modular_citadel/sound/vox/all.ogg new file mode 100644 index 0000000000..48d05f1007 Binary files /dev/null and b/modular_citadel/sound/vox/all.ogg differ diff --git a/modular_citadel/sound/vox/alpha.ogg b/modular_citadel/sound/vox/alpha.ogg new file mode 100644 index 0000000000..b80828c408 Binary files /dev/null and b/modular_citadel/sound/vox/alpha.ogg differ diff --git a/modular_citadel/sound/vox/am.ogg b/modular_citadel/sound/vox/am.ogg new file mode 100644 index 0000000000..9d4289758e Binary files /dev/null and b/modular_citadel/sound/vox/am.ogg differ diff --git a/modular_citadel/sound/vox/amigo.ogg b/modular_citadel/sound/vox/amigo.ogg new file mode 100644 index 0000000000..6992689553 Binary files /dev/null and b/modular_citadel/sound/vox/amigo.ogg differ diff --git a/modular_citadel/sound/vox/ammunition.ogg b/modular_citadel/sound/vox/ammunition.ogg new file mode 100644 index 0000000000..108fb2dc83 Binary files /dev/null and b/modular_citadel/sound/vox/ammunition.ogg differ diff --git a/modular_citadel/sound/vox/an.ogg b/modular_citadel/sound/vox/an.ogg new file mode 100644 index 0000000000..53382c68a0 Binary files /dev/null and b/modular_citadel/sound/vox/an.ogg differ diff --git a/modular_citadel/sound/vox/and.ogg b/modular_citadel/sound/vox/and.ogg new file mode 100644 index 0000000000..b9b4de26bf Binary files /dev/null and b/modular_citadel/sound/vox/and.ogg differ diff --git a/modular_citadel/sound/vox/announcement.ogg b/modular_citadel/sound/vox/announcement.ogg new file mode 100644 index 0000000000..ba16d76c18 Binary files /dev/null and b/modular_citadel/sound/vox/announcement.ogg differ diff --git a/modular_citadel/sound/vox/anomalous.ogg b/modular_citadel/sound/vox/anomalous.ogg new file mode 100644 index 0000000000..a331afd06e Binary files /dev/null and b/modular_citadel/sound/vox/anomalous.ogg differ diff --git a/modular_citadel/sound/vox/antenna.ogg b/modular_citadel/sound/vox/antenna.ogg new file mode 100644 index 0000000000..547e64786a Binary files /dev/null and b/modular_citadel/sound/vox/antenna.ogg differ diff --git a/modular_citadel/sound/vox/any.ogg b/modular_citadel/sound/vox/any.ogg new file mode 100644 index 0000000000..49d578758b Binary files /dev/null and b/modular_citadel/sound/vox/any.ogg differ diff --git a/modular_citadel/sound/vox/apprehend.ogg b/modular_citadel/sound/vox/apprehend.ogg new file mode 100644 index 0000000000..de0fc4d664 Binary files /dev/null and b/modular_citadel/sound/vox/apprehend.ogg differ diff --git a/modular_citadel/sound/vox/approach.ogg b/modular_citadel/sound/vox/approach.ogg new file mode 100644 index 0000000000..3135bb7fc4 Binary files /dev/null and b/modular_citadel/sound/vox/approach.ogg differ diff --git a/modular_citadel/sound/vox/are.ogg b/modular_citadel/sound/vox/are.ogg new file mode 100644 index 0000000000..b3e68aa8a6 Binary files /dev/null and b/modular_citadel/sound/vox/are.ogg differ diff --git a/modular_citadel/sound/vox/area.ogg b/modular_citadel/sound/vox/area.ogg new file mode 100644 index 0000000000..1408fedf4c Binary files /dev/null and b/modular_citadel/sound/vox/area.ogg differ diff --git a/modular_citadel/sound/vox/arm.ogg b/modular_citadel/sound/vox/arm.ogg new file mode 100644 index 0000000000..e078c567b5 Binary files /dev/null and b/modular_citadel/sound/vox/arm.ogg differ diff --git a/modular_citadel/sound/vox/armed.ogg b/modular_citadel/sound/vox/armed.ogg new file mode 100644 index 0000000000..2b1d092658 Binary files /dev/null and b/modular_citadel/sound/vox/armed.ogg differ diff --git a/modular_citadel/sound/vox/armor.ogg b/modular_citadel/sound/vox/armor.ogg new file mode 100644 index 0000000000..70217b55a4 Binary files /dev/null and b/modular_citadel/sound/vox/armor.ogg differ diff --git a/modular_citadel/sound/vox/armory.ogg b/modular_citadel/sound/vox/armory.ogg new file mode 100644 index 0000000000..22835188f8 Binary files /dev/null and b/modular_citadel/sound/vox/armory.ogg differ diff --git a/modular_citadel/sound/vox/arrest.ogg b/modular_citadel/sound/vox/arrest.ogg new file mode 100644 index 0000000000..bfef18601f Binary files /dev/null and b/modular_citadel/sound/vox/arrest.ogg differ diff --git a/modular_citadel/sound/vox/ass.ogg b/modular_citadel/sound/vox/ass.ogg new file mode 100644 index 0000000000..6bf9c01e62 Binary files /dev/null and b/modular_citadel/sound/vox/ass.ogg differ diff --git a/modular_citadel/sound/vox/at.ogg b/modular_citadel/sound/vox/at.ogg new file mode 100644 index 0000000000..5146ab9afb Binary files /dev/null and b/modular_citadel/sound/vox/at.ogg differ diff --git a/modular_citadel/sound/vox/atomic.ogg b/modular_citadel/sound/vox/atomic.ogg new file mode 100644 index 0000000000..b8b1e1cec7 Binary files /dev/null and b/modular_citadel/sound/vox/atomic.ogg differ diff --git a/modular_citadel/sound/vox/attention.ogg b/modular_citadel/sound/vox/attention.ogg new file mode 100644 index 0000000000..ca5073e6c4 Binary files /dev/null and b/modular_citadel/sound/vox/attention.ogg differ diff --git a/modular_citadel/sound/vox/authorize.ogg b/modular_citadel/sound/vox/authorize.ogg new file mode 100644 index 0000000000..7ef68781ef Binary files /dev/null and b/modular_citadel/sound/vox/authorize.ogg differ diff --git a/modular_citadel/sound/vox/authorized.ogg b/modular_citadel/sound/vox/authorized.ogg new file mode 100644 index 0000000000..5142ceba8d Binary files /dev/null and b/modular_citadel/sound/vox/authorized.ogg differ diff --git a/modular_citadel/sound/vox/automatic.ogg b/modular_citadel/sound/vox/automatic.ogg new file mode 100644 index 0000000000..48d09f2304 Binary files /dev/null and b/modular_citadel/sound/vox/automatic.ogg differ diff --git a/modular_citadel/sound/vox/away.ogg b/modular_citadel/sound/vox/away.ogg new file mode 100644 index 0000000000..3e99af620e Binary files /dev/null and b/modular_citadel/sound/vox/away.ogg differ diff --git a/modular_citadel/sound/vox/b.ogg b/modular_citadel/sound/vox/b.ogg new file mode 100644 index 0000000000..00b64030d6 Binary files /dev/null and b/modular_citadel/sound/vox/b.ogg differ diff --git a/modular_citadel/sound/vox/back.ogg b/modular_citadel/sound/vox/back.ogg new file mode 100644 index 0000000000..a8ca34ef52 Binary files /dev/null and b/modular_citadel/sound/vox/back.ogg differ diff --git a/modular_citadel/sound/vox/backman.ogg b/modular_citadel/sound/vox/backman.ogg new file mode 100644 index 0000000000..e0e6351f57 Binary files /dev/null and b/modular_citadel/sound/vox/backman.ogg differ diff --git a/modular_citadel/sound/vox/bad.ogg b/modular_citadel/sound/vox/bad.ogg new file mode 100644 index 0000000000..2dd38058a2 Binary files /dev/null and b/modular_citadel/sound/vox/bad.ogg differ diff --git a/modular_citadel/sound/vox/bag.ogg b/modular_citadel/sound/vox/bag.ogg new file mode 100644 index 0000000000..6daa1ab172 Binary files /dev/null and b/modular_citadel/sound/vox/bag.ogg differ diff --git a/modular_citadel/sound/vox/bailey.ogg b/modular_citadel/sound/vox/bailey.ogg new file mode 100644 index 0000000000..b912fe5801 Binary files /dev/null and b/modular_citadel/sound/vox/bailey.ogg differ diff --git a/modular_citadel/sound/vox/barracks.ogg b/modular_citadel/sound/vox/barracks.ogg new file mode 100644 index 0000000000..5e13a42773 Binary files /dev/null and b/modular_citadel/sound/vox/barracks.ogg differ diff --git a/modular_citadel/sound/vox/base.ogg b/modular_citadel/sound/vox/base.ogg new file mode 100644 index 0000000000..17d60fbc02 Binary files /dev/null and b/modular_citadel/sound/vox/base.ogg differ diff --git a/modular_citadel/sound/vox/bay.ogg b/modular_citadel/sound/vox/bay.ogg new file mode 100644 index 0000000000..7ac9991c69 Binary files /dev/null and b/modular_citadel/sound/vox/bay.ogg differ diff --git a/modular_citadel/sound/vox/be.ogg b/modular_citadel/sound/vox/be.ogg new file mode 100644 index 0000000000..01865aba54 Binary files /dev/null and b/modular_citadel/sound/vox/be.ogg differ diff --git a/modular_citadel/sound/vox/been.ogg b/modular_citadel/sound/vox/been.ogg new file mode 100644 index 0000000000..cf9e92a032 Binary files /dev/null and b/modular_citadel/sound/vox/been.ogg differ diff --git a/modular_citadel/sound/vox/before.ogg b/modular_citadel/sound/vox/before.ogg new file mode 100644 index 0000000000..fc16e8fef4 Binary files /dev/null and b/modular_citadel/sound/vox/before.ogg differ diff --git a/modular_citadel/sound/vox/beyond.ogg b/modular_citadel/sound/vox/beyond.ogg new file mode 100644 index 0000000000..e25982e700 Binary files /dev/null and b/modular_citadel/sound/vox/beyond.ogg differ diff --git a/modular_citadel/sound/vox/biohazard.ogg b/modular_citadel/sound/vox/biohazard.ogg new file mode 100644 index 0000000000..12d20ff2f3 Binary files /dev/null and b/modular_citadel/sound/vox/biohazard.ogg differ diff --git a/modular_citadel/sound/vox/biological.ogg b/modular_citadel/sound/vox/biological.ogg new file mode 100644 index 0000000000..538c2c4604 Binary files /dev/null and b/modular_citadel/sound/vox/biological.ogg differ diff --git a/modular_citadel/sound/vox/birdwell.ogg b/modular_citadel/sound/vox/birdwell.ogg new file mode 100644 index 0000000000..d3735d2531 Binary files /dev/null and b/modular_citadel/sound/vox/birdwell.ogg differ diff --git a/modular_citadel/sound/vox/bizwarn.ogg b/modular_citadel/sound/vox/bizwarn.ogg new file mode 100644 index 0000000000..1f875c644e Binary files /dev/null and b/modular_citadel/sound/vox/bizwarn.ogg differ diff --git a/modular_citadel/sound/vox/black.ogg b/modular_citadel/sound/vox/black.ogg new file mode 100644 index 0000000000..28e5d48afe Binary files /dev/null and b/modular_citadel/sound/vox/black.ogg differ diff --git a/modular_citadel/sound/vox/blast.ogg b/modular_citadel/sound/vox/blast.ogg new file mode 100644 index 0000000000..84a28e1fc8 Binary files /dev/null and b/modular_citadel/sound/vox/blast.ogg differ diff --git a/modular_citadel/sound/vox/blocked.ogg b/modular_citadel/sound/vox/blocked.ogg new file mode 100644 index 0000000000..f6efacfda1 Binary files /dev/null and b/modular_citadel/sound/vox/blocked.ogg differ diff --git a/modular_citadel/sound/vox/bloop.ogg b/modular_citadel/sound/vox/bloop.ogg new file mode 100644 index 0000000000..ada6ed636e Binary files /dev/null and b/modular_citadel/sound/vox/bloop.ogg differ diff --git a/modular_citadel/sound/vox/blue.ogg b/modular_citadel/sound/vox/blue.ogg new file mode 100644 index 0000000000..a336a61968 Binary files /dev/null and b/modular_citadel/sound/vox/blue.ogg differ diff --git a/modular_citadel/sound/vox/bottom.ogg b/modular_citadel/sound/vox/bottom.ogg new file mode 100644 index 0000000000..b81c30477c Binary files /dev/null and b/modular_citadel/sound/vox/bottom.ogg differ diff --git a/modular_citadel/sound/vox/bravo.ogg b/modular_citadel/sound/vox/bravo.ogg new file mode 100644 index 0000000000..df47058d5c Binary files /dev/null and b/modular_citadel/sound/vox/bravo.ogg differ diff --git a/modular_citadel/sound/vox/breach.ogg b/modular_citadel/sound/vox/breach.ogg new file mode 100644 index 0000000000..3a4bae3f0d Binary files /dev/null and b/modular_citadel/sound/vox/breach.ogg differ diff --git a/modular_citadel/sound/vox/breached.ogg b/modular_citadel/sound/vox/breached.ogg new file mode 100644 index 0000000000..0823bfc0d9 Binary files /dev/null and b/modular_citadel/sound/vox/breached.ogg differ diff --git a/modular_citadel/sound/vox/break.ogg b/modular_citadel/sound/vox/break.ogg new file mode 100644 index 0000000000..1bebe2b940 Binary files /dev/null and b/modular_citadel/sound/vox/break.ogg differ diff --git a/modular_citadel/sound/vox/bridge.ogg b/modular_citadel/sound/vox/bridge.ogg new file mode 100644 index 0000000000..8de8159b1e Binary files /dev/null and b/modular_citadel/sound/vox/bridge.ogg differ diff --git a/modular_citadel/sound/vox/bust.ogg b/modular_citadel/sound/vox/bust.ogg new file mode 100644 index 0000000000..67622a5e4a Binary files /dev/null and b/modular_citadel/sound/vox/bust.ogg differ diff --git a/modular_citadel/sound/vox/but.ogg b/modular_citadel/sound/vox/but.ogg new file mode 100644 index 0000000000..3c4d7172ef Binary files /dev/null and b/modular_citadel/sound/vox/but.ogg differ diff --git a/modular_citadel/sound/vox/button.ogg b/modular_citadel/sound/vox/button.ogg new file mode 100644 index 0000000000..74639090f8 Binary files /dev/null and b/modular_citadel/sound/vox/button.ogg differ diff --git a/modular_citadel/sound/vox/buzwarn.ogg b/modular_citadel/sound/vox/buzwarn.ogg new file mode 100644 index 0000000000..34595dfe9b Binary files /dev/null and b/modular_citadel/sound/vox/buzwarn.ogg differ diff --git a/modular_citadel/sound/vox/bypass.ogg b/modular_citadel/sound/vox/bypass.ogg new file mode 100644 index 0000000000..649fb0ca72 Binary files /dev/null and b/modular_citadel/sound/vox/bypass.ogg differ diff --git a/modular_citadel/sound/vox/c.ogg b/modular_citadel/sound/vox/c.ogg new file mode 100644 index 0000000000..99fc8eeb61 Binary files /dev/null and b/modular_citadel/sound/vox/c.ogg differ diff --git a/modular_citadel/sound/vox/cable.ogg b/modular_citadel/sound/vox/cable.ogg new file mode 100644 index 0000000000..8a03fec7a3 Binary files /dev/null and b/modular_citadel/sound/vox/cable.ogg differ diff --git a/modular_citadel/sound/vox/call.ogg b/modular_citadel/sound/vox/call.ogg new file mode 100644 index 0000000000..1cd702986d Binary files /dev/null and b/modular_citadel/sound/vox/call.ogg differ diff --git a/modular_citadel/sound/vox/called.ogg b/modular_citadel/sound/vox/called.ogg new file mode 100644 index 0000000000..96c87be172 Binary files /dev/null and b/modular_citadel/sound/vox/called.ogg differ diff --git a/modular_citadel/sound/vox/canal.ogg b/modular_citadel/sound/vox/canal.ogg new file mode 100644 index 0000000000..0d4e92deb4 Binary files /dev/null and b/modular_citadel/sound/vox/canal.ogg differ diff --git a/modular_citadel/sound/vox/cap.ogg b/modular_citadel/sound/vox/cap.ogg new file mode 100644 index 0000000000..c229e6f5b1 Binary files /dev/null and b/modular_citadel/sound/vox/cap.ogg differ diff --git a/modular_citadel/sound/vox/captain.ogg b/modular_citadel/sound/vox/captain.ogg new file mode 100644 index 0000000000..69d2521e68 Binary files /dev/null and b/modular_citadel/sound/vox/captain.ogg differ diff --git a/modular_citadel/sound/vox/capture.ogg b/modular_citadel/sound/vox/capture.ogg new file mode 100644 index 0000000000..18eab2035b Binary files /dev/null and b/modular_citadel/sound/vox/capture.ogg differ diff --git a/modular_citadel/sound/vox/captured.ogg b/modular_citadel/sound/vox/captured.ogg new file mode 100644 index 0000000000..fd6b652809 Binary files /dev/null and b/modular_citadel/sound/vox/captured.ogg differ diff --git a/modular_citadel/sound/vox/ceiling.ogg b/modular_citadel/sound/vox/ceiling.ogg new file mode 100644 index 0000000000..2f8d7eca0a Binary files /dev/null and b/modular_citadel/sound/vox/ceiling.ogg differ diff --git a/modular_citadel/sound/vox/celsius.ogg b/modular_citadel/sound/vox/celsius.ogg new file mode 100644 index 0000000000..abb728c5c3 Binary files /dev/null and b/modular_citadel/sound/vox/celsius.ogg differ diff --git a/modular_citadel/sound/vox/center.ogg b/modular_citadel/sound/vox/center.ogg new file mode 100644 index 0000000000..1936e9190d Binary files /dev/null and b/modular_citadel/sound/vox/center.ogg differ diff --git a/modular_citadel/sound/vox/centi.ogg b/modular_citadel/sound/vox/centi.ogg new file mode 100644 index 0000000000..63f9ce0aed Binary files /dev/null and b/modular_citadel/sound/vox/centi.ogg differ diff --git a/modular_citadel/sound/vox/central.ogg b/modular_citadel/sound/vox/central.ogg new file mode 100644 index 0000000000..a805204243 Binary files /dev/null and b/modular_citadel/sound/vox/central.ogg differ diff --git a/modular_citadel/sound/vox/chamber.ogg b/modular_citadel/sound/vox/chamber.ogg new file mode 100644 index 0000000000..e3c77e927f Binary files /dev/null and b/modular_citadel/sound/vox/chamber.ogg differ diff --git a/modular_citadel/sound/vox/charlie.ogg b/modular_citadel/sound/vox/charlie.ogg new file mode 100644 index 0000000000..bdadd74ca0 Binary files /dev/null and b/modular_citadel/sound/vox/charlie.ogg differ diff --git a/modular_citadel/sound/vox/check.ogg b/modular_citadel/sound/vox/check.ogg new file mode 100644 index 0000000000..f4a2a95de7 Binary files /dev/null and b/modular_citadel/sound/vox/check.ogg differ diff --git a/modular_citadel/sound/vox/checkpoint.ogg b/modular_citadel/sound/vox/checkpoint.ogg new file mode 100644 index 0000000000..aca98b09fa Binary files /dev/null and b/modular_citadel/sound/vox/checkpoint.ogg differ diff --git a/modular_citadel/sound/vox/chemical.ogg b/modular_citadel/sound/vox/chemical.ogg new file mode 100644 index 0000000000..f7eae25c99 Binary files /dev/null and b/modular_citadel/sound/vox/chemical.ogg differ diff --git a/modular_citadel/sound/vox/cleanup.ogg b/modular_citadel/sound/vox/cleanup.ogg new file mode 100644 index 0000000000..2118f130cb Binary files /dev/null and b/modular_citadel/sound/vox/cleanup.ogg differ diff --git a/modular_citadel/sound/vox/clear.ogg b/modular_citadel/sound/vox/clear.ogg new file mode 100644 index 0000000000..1b97835f0f Binary files /dev/null and b/modular_citadel/sound/vox/clear.ogg differ diff --git a/modular_citadel/sound/vox/clearance.ogg b/modular_citadel/sound/vox/clearance.ogg new file mode 100644 index 0000000000..d2b641df40 Binary files /dev/null and b/modular_citadel/sound/vox/clearance.ogg differ diff --git a/modular_citadel/sound/vox/close.ogg b/modular_citadel/sound/vox/close.ogg new file mode 100644 index 0000000000..15e9fd315c Binary files /dev/null and b/modular_citadel/sound/vox/close.ogg differ diff --git a/modular_citadel/sound/vox/clown.ogg b/modular_citadel/sound/vox/clown.ogg new file mode 100644 index 0000000000..e72f9703fd Binary files /dev/null and b/modular_citadel/sound/vox/clown.ogg differ diff --git a/modular_citadel/sound/vox/code.ogg b/modular_citadel/sound/vox/code.ogg new file mode 100644 index 0000000000..cee2e4c036 Binary files /dev/null and b/modular_citadel/sound/vox/code.ogg differ diff --git a/modular_citadel/sound/vox/coded.ogg b/modular_citadel/sound/vox/coded.ogg new file mode 100644 index 0000000000..d4435296ae Binary files /dev/null and b/modular_citadel/sound/vox/coded.ogg differ diff --git a/modular_citadel/sound/vox/collider.ogg b/modular_citadel/sound/vox/collider.ogg new file mode 100644 index 0000000000..a29bda0d17 Binary files /dev/null and b/modular_citadel/sound/vox/collider.ogg differ diff --git a/modular_citadel/sound/vox/comma.ogg b/modular_citadel/sound/vox/comma.ogg new file mode 100644 index 0000000000..a94221d0ed Binary files /dev/null and b/modular_citadel/sound/vox/comma.ogg differ diff --git a/modular_citadel/sound/vox/command.ogg b/modular_citadel/sound/vox/command.ogg new file mode 100644 index 0000000000..cf6c32f736 Binary files /dev/null and b/modular_citadel/sound/vox/command.ogg differ diff --git a/modular_citadel/sound/vox/communication.ogg b/modular_citadel/sound/vox/communication.ogg new file mode 100644 index 0000000000..67ec74b30d Binary files /dev/null and b/modular_citadel/sound/vox/communication.ogg differ diff --git a/modular_citadel/sound/vox/complex.ogg b/modular_citadel/sound/vox/complex.ogg new file mode 100644 index 0000000000..66dad5b30a Binary files /dev/null and b/modular_citadel/sound/vox/complex.ogg differ diff --git a/modular_citadel/sound/vox/computer.ogg b/modular_citadel/sound/vox/computer.ogg new file mode 100644 index 0000000000..849cf4e96c Binary files /dev/null and b/modular_citadel/sound/vox/computer.ogg differ diff --git a/modular_citadel/sound/vox/condition.ogg b/modular_citadel/sound/vox/condition.ogg new file mode 100644 index 0000000000..b16ea99736 Binary files /dev/null and b/modular_citadel/sound/vox/condition.ogg differ diff --git a/modular_citadel/sound/vox/containment.ogg b/modular_citadel/sound/vox/containment.ogg new file mode 100644 index 0000000000..0a1424a8c0 Binary files /dev/null and b/modular_citadel/sound/vox/containment.ogg differ diff --git a/modular_citadel/sound/vox/contamination.ogg b/modular_citadel/sound/vox/contamination.ogg new file mode 100644 index 0000000000..0d60c1c351 Binary files /dev/null and b/modular_citadel/sound/vox/contamination.ogg differ diff --git a/modular_citadel/sound/vox/control.ogg b/modular_citadel/sound/vox/control.ogg new file mode 100644 index 0000000000..7e4fae7220 Binary files /dev/null and b/modular_citadel/sound/vox/control.ogg differ diff --git a/modular_citadel/sound/vox/coolant.ogg b/modular_citadel/sound/vox/coolant.ogg new file mode 100644 index 0000000000..ca51223548 Binary files /dev/null and b/modular_citadel/sound/vox/coolant.ogg differ diff --git a/modular_citadel/sound/vox/coomer.ogg b/modular_citadel/sound/vox/coomer.ogg new file mode 100644 index 0000000000..eb684a6ab7 Binary files /dev/null and b/modular_citadel/sound/vox/coomer.ogg differ diff --git a/modular_citadel/sound/vox/core.ogg b/modular_citadel/sound/vox/core.ogg new file mode 100644 index 0000000000..6170255986 Binary files /dev/null and b/modular_citadel/sound/vox/core.ogg differ diff --git a/modular_citadel/sound/vox/correct.ogg b/modular_citadel/sound/vox/correct.ogg new file mode 100644 index 0000000000..99ca3efccc Binary files /dev/null and b/modular_citadel/sound/vox/correct.ogg differ diff --git a/modular_citadel/sound/vox/corridor.ogg b/modular_citadel/sound/vox/corridor.ogg new file mode 100644 index 0000000000..e3ddeb39cc Binary files /dev/null and b/modular_citadel/sound/vox/corridor.ogg differ diff --git a/modular_citadel/sound/vox/crew.ogg b/modular_citadel/sound/vox/crew.ogg new file mode 100644 index 0000000000..b63ce31874 Binary files /dev/null and b/modular_citadel/sound/vox/crew.ogg differ diff --git a/modular_citadel/sound/vox/cross.ogg b/modular_citadel/sound/vox/cross.ogg new file mode 100644 index 0000000000..ffd9f4161d Binary files /dev/null and b/modular_citadel/sound/vox/cross.ogg differ diff --git a/modular_citadel/sound/vox/cryogenic.ogg b/modular_citadel/sound/vox/cryogenic.ogg new file mode 100644 index 0000000000..def31fe7c0 Binary files /dev/null and b/modular_citadel/sound/vox/cryogenic.ogg differ diff --git a/modular_citadel/sound/vox/d.ogg b/modular_citadel/sound/vox/d.ogg new file mode 100644 index 0000000000..08b85fc9eb Binary files /dev/null and b/modular_citadel/sound/vox/d.ogg differ diff --git a/modular_citadel/sound/vox/dadeda.ogg b/modular_citadel/sound/vox/dadeda.ogg new file mode 100644 index 0000000000..9fd19f577c Binary files /dev/null and b/modular_citadel/sound/vox/dadeda.ogg differ diff --git a/modular_citadel/sound/vox/damage.ogg b/modular_citadel/sound/vox/damage.ogg new file mode 100644 index 0000000000..d45cb0b532 Binary files /dev/null and b/modular_citadel/sound/vox/damage.ogg differ diff --git a/modular_citadel/sound/vox/damaged.ogg b/modular_citadel/sound/vox/damaged.ogg new file mode 100644 index 0000000000..cec2617cd2 Binary files /dev/null and b/modular_citadel/sound/vox/damaged.ogg differ diff --git a/modular_citadel/sound/vox/danger.ogg b/modular_citadel/sound/vox/danger.ogg new file mode 100644 index 0000000000..50bce6a5a5 Binary files /dev/null and b/modular_citadel/sound/vox/danger.ogg differ diff --git a/modular_citadel/sound/vox/day.ogg b/modular_citadel/sound/vox/day.ogg new file mode 100644 index 0000000000..c11c1b696c Binary files /dev/null and b/modular_citadel/sound/vox/day.ogg differ diff --git a/modular_citadel/sound/vox/deactivated.ogg b/modular_citadel/sound/vox/deactivated.ogg new file mode 100644 index 0000000000..2c700cf4a7 Binary files /dev/null and b/modular_citadel/sound/vox/deactivated.ogg differ diff --git a/modular_citadel/sound/vox/decompression.ogg b/modular_citadel/sound/vox/decompression.ogg new file mode 100644 index 0000000000..39ba52f36a Binary files /dev/null and b/modular_citadel/sound/vox/decompression.ogg differ diff --git a/modular_citadel/sound/vox/decontamination.ogg b/modular_citadel/sound/vox/decontamination.ogg new file mode 100644 index 0000000000..2115ec8aa4 Binary files /dev/null and b/modular_citadel/sound/vox/decontamination.ogg differ diff --git a/modular_citadel/sound/vox/deeoo.ogg b/modular_citadel/sound/vox/deeoo.ogg new file mode 100644 index 0000000000..22197de5e6 Binary files /dev/null and b/modular_citadel/sound/vox/deeoo.ogg differ diff --git a/modular_citadel/sound/vox/defense.ogg b/modular_citadel/sound/vox/defense.ogg new file mode 100644 index 0000000000..dc00256e0f Binary files /dev/null and b/modular_citadel/sound/vox/defense.ogg differ diff --git a/modular_citadel/sound/vox/degrees.ogg b/modular_citadel/sound/vox/degrees.ogg new file mode 100644 index 0000000000..eb640ca08c Binary files /dev/null and b/modular_citadel/sound/vox/degrees.ogg differ diff --git a/modular_citadel/sound/vox/delta.ogg b/modular_citadel/sound/vox/delta.ogg new file mode 100644 index 0000000000..93cbe2bdb6 Binary files /dev/null and b/modular_citadel/sound/vox/delta.ogg differ diff --git a/modular_citadel/sound/vox/denied.ogg b/modular_citadel/sound/vox/denied.ogg new file mode 100644 index 0000000000..8ef3366dbc Binary files /dev/null and b/modular_citadel/sound/vox/denied.ogg differ diff --git a/modular_citadel/sound/vox/deploy.ogg b/modular_citadel/sound/vox/deploy.ogg new file mode 100644 index 0000000000..71bd4c4d7d Binary files /dev/null and b/modular_citadel/sound/vox/deploy.ogg differ diff --git a/modular_citadel/sound/vox/deployed.ogg b/modular_citadel/sound/vox/deployed.ogg new file mode 100644 index 0000000000..d21fa814ba Binary files /dev/null and b/modular_citadel/sound/vox/deployed.ogg differ diff --git a/modular_citadel/sound/vox/destroy.ogg b/modular_citadel/sound/vox/destroy.ogg new file mode 100644 index 0000000000..954d474a07 Binary files /dev/null and b/modular_citadel/sound/vox/destroy.ogg differ diff --git a/modular_citadel/sound/vox/destroyed.ogg b/modular_citadel/sound/vox/destroyed.ogg new file mode 100644 index 0000000000..cf5f20bf84 Binary files /dev/null and b/modular_citadel/sound/vox/destroyed.ogg differ diff --git a/modular_citadel/sound/vox/detain.ogg b/modular_citadel/sound/vox/detain.ogg new file mode 100644 index 0000000000..98a6d34c2f Binary files /dev/null and b/modular_citadel/sound/vox/detain.ogg differ diff --git a/modular_citadel/sound/vox/detected.ogg b/modular_citadel/sound/vox/detected.ogg new file mode 100644 index 0000000000..80704064a4 Binary files /dev/null and b/modular_citadel/sound/vox/detected.ogg differ diff --git a/modular_citadel/sound/vox/detonation.ogg b/modular_citadel/sound/vox/detonation.ogg new file mode 100644 index 0000000000..a6c64c331c Binary files /dev/null and b/modular_citadel/sound/vox/detonation.ogg differ diff --git a/modular_citadel/sound/vox/device.ogg b/modular_citadel/sound/vox/device.ogg new file mode 100644 index 0000000000..3f1b4905df Binary files /dev/null and b/modular_citadel/sound/vox/device.ogg differ diff --git a/modular_citadel/sound/vox/did.ogg b/modular_citadel/sound/vox/did.ogg new file mode 100644 index 0000000000..966e8a3a13 Binary files /dev/null and b/modular_citadel/sound/vox/did.ogg differ diff --git a/modular_citadel/sound/vox/die.ogg b/modular_citadel/sound/vox/die.ogg new file mode 100644 index 0000000000..b2f99b4152 Binary files /dev/null and b/modular_citadel/sound/vox/die.ogg differ diff --git a/modular_citadel/sound/vox/dimensional.ogg b/modular_citadel/sound/vox/dimensional.ogg new file mode 100644 index 0000000000..a4ed638db0 Binary files /dev/null and b/modular_citadel/sound/vox/dimensional.ogg differ diff --git a/modular_citadel/sound/vox/dirt.ogg b/modular_citadel/sound/vox/dirt.ogg new file mode 100644 index 0000000000..b175b93205 Binary files /dev/null and b/modular_citadel/sound/vox/dirt.ogg differ diff --git a/modular_citadel/sound/vox/disengaged.ogg b/modular_citadel/sound/vox/disengaged.ogg new file mode 100644 index 0000000000..eb75ab975b Binary files /dev/null and b/modular_citadel/sound/vox/disengaged.ogg differ diff --git a/modular_citadel/sound/vox/dish.ogg b/modular_citadel/sound/vox/dish.ogg new file mode 100644 index 0000000000..3b0f1f58ce Binary files /dev/null and b/modular_citadel/sound/vox/dish.ogg differ diff --git a/modular_citadel/sound/vox/disposal.ogg b/modular_citadel/sound/vox/disposal.ogg new file mode 100644 index 0000000000..1a4c1f8bd1 Binary files /dev/null and b/modular_citadel/sound/vox/disposal.ogg differ diff --git a/modular_citadel/sound/vox/distance.ogg b/modular_citadel/sound/vox/distance.ogg new file mode 100644 index 0000000000..8bcec9ac7c Binary files /dev/null and b/modular_citadel/sound/vox/distance.ogg differ diff --git a/modular_citadel/sound/vox/distortion.ogg b/modular_citadel/sound/vox/distortion.ogg new file mode 100644 index 0000000000..7ee3a5f560 Binary files /dev/null and b/modular_citadel/sound/vox/distortion.ogg differ diff --git a/modular_citadel/sound/vox/do.ogg b/modular_citadel/sound/vox/do.ogg new file mode 100644 index 0000000000..7202691b87 Binary files /dev/null and b/modular_citadel/sound/vox/do.ogg differ diff --git a/modular_citadel/sound/vox/doctor.ogg b/modular_citadel/sound/vox/doctor.ogg new file mode 100644 index 0000000000..adbbfab77a Binary files /dev/null and b/modular_citadel/sound/vox/doctor.ogg differ diff --git a/modular_citadel/sound/vox/doop.ogg b/modular_citadel/sound/vox/doop.ogg new file mode 100644 index 0000000000..b497a8594d Binary files /dev/null and b/modular_citadel/sound/vox/doop.ogg differ diff --git a/modular_citadel/sound/vox/door.ogg b/modular_citadel/sound/vox/door.ogg new file mode 100644 index 0000000000..db389b4eb9 Binary files /dev/null and b/modular_citadel/sound/vox/door.ogg differ diff --git a/modular_citadel/sound/vox/down.ogg b/modular_citadel/sound/vox/down.ogg new file mode 100644 index 0000000000..e16b0249dd Binary files /dev/null and b/modular_citadel/sound/vox/down.ogg differ diff --git a/modular_citadel/sound/vox/dual.ogg b/modular_citadel/sound/vox/dual.ogg new file mode 100644 index 0000000000..d8833faf9b Binary files /dev/null and b/modular_citadel/sound/vox/dual.ogg differ diff --git a/modular_citadel/sound/vox/duct.ogg b/modular_citadel/sound/vox/duct.ogg new file mode 100644 index 0000000000..23379f6cc2 Binary files /dev/null and b/modular_citadel/sound/vox/duct.ogg differ diff --git a/modular_citadel/sound/vox/e.ogg b/modular_citadel/sound/vox/e.ogg new file mode 100644 index 0000000000..105ea13ef2 Binary files /dev/null and b/modular_citadel/sound/vox/e.ogg differ diff --git a/modular_citadel/sound/vox/east.ogg b/modular_citadel/sound/vox/east.ogg new file mode 100644 index 0000000000..9e69856edb Binary files /dev/null and b/modular_citadel/sound/vox/east.ogg differ diff --git a/modular_citadel/sound/vox/echo.ogg b/modular_citadel/sound/vox/echo.ogg new file mode 100644 index 0000000000..3ee16750a4 Binary files /dev/null and b/modular_citadel/sound/vox/echo.ogg differ diff --git a/modular_citadel/sound/vox/ed.ogg b/modular_citadel/sound/vox/ed.ogg new file mode 100644 index 0000000000..094bd4f3ba Binary files /dev/null and b/modular_citadel/sound/vox/ed.ogg differ diff --git a/modular_citadel/sound/vox/effect.ogg b/modular_citadel/sound/vox/effect.ogg new file mode 100644 index 0000000000..01a77a1bba Binary files /dev/null and b/modular_citadel/sound/vox/effect.ogg differ diff --git a/modular_citadel/sound/vox/egress.ogg b/modular_citadel/sound/vox/egress.ogg new file mode 100644 index 0000000000..6da62c754a Binary files /dev/null and b/modular_citadel/sound/vox/egress.ogg differ diff --git a/modular_citadel/sound/vox/eight.ogg b/modular_citadel/sound/vox/eight.ogg new file mode 100644 index 0000000000..7c64ba326b Binary files /dev/null and b/modular_citadel/sound/vox/eight.ogg differ diff --git a/modular_citadel/sound/vox/eighteen.ogg b/modular_citadel/sound/vox/eighteen.ogg new file mode 100644 index 0000000000..73330bfaa2 Binary files /dev/null and b/modular_citadel/sound/vox/eighteen.ogg differ diff --git a/modular_citadel/sound/vox/eighty.ogg b/modular_citadel/sound/vox/eighty.ogg new file mode 100644 index 0000000000..c190b69e02 Binary files /dev/null and b/modular_citadel/sound/vox/eighty.ogg differ diff --git a/modular_citadel/sound/vox/electric.ogg b/modular_citadel/sound/vox/electric.ogg new file mode 100644 index 0000000000..7d7154b350 Binary files /dev/null and b/modular_citadel/sound/vox/electric.ogg differ diff --git a/modular_citadel/sound/vox/electromagnetic.ogg b/modular_citadel/sound/vox/electromagnetic.ogg new file mode 100644 index 0000000000..160725e8c0 Binary files /dev/null and b/modular_citadel/sound/vox/electromagnetic.ogg differ diff --git a/modular_citadel/sound/vox/elevator.ogg b/modular_citadel/sound/vox/elevator.ogg new file mode 100644 index 0000000000..bcafc3ce3f Binary files /dev/null and b/modular_citadel/sound/vox/elevator.ogg differ diff --git a/modular_citadel/sound/vox/eleven.ogg b/modular_citadel/sound/vox/eleven.ogg new file mode 100644 index 0000000000..6607692e1d Binary files /dev/null and b/modular_citadel/sound/vox/eleven.ogg differ diff --git a/modular_citadel/sound/vox/eliminate.ogg b/modular_citadel/sound/vox/eliminate.ogg new file mode 100644 index 0000000000..2e81f5eb6c Binary files /dev/null and b/modular_citadel/sound/vox/eliminate.ogg differ diff --git a/modular_citadel/sound/vox/emergency.ogg b/modular_citadel/sound/vox/emergency.ogg new file mode 100644 index 0000000000..5d2e068944 Binary files /dev/null and b/modular_citadel/sound/vox/emergency.ogg differ diff --git a/modular_citadel/sound/vox/enemy.ogg b/modular_citadel/sound/vox/enemy.ogg new file mode 100644 index 0000000000..ecee923235 Binary files /dev/null and b/modular_citadel/sound/vox/enemy.ogg differ diff --git a/modular_citadel/sound/vox/energy.ogg b/modular_citadel/sound/vox/energy.ogg new file mode 100644 index 0000000000..82d07e95dd Binary files /dev/null and b/modular_citadel/sound/vox/energy.ogg differ diff --git a/modular_citadel/sound/vox/engage.ogg b/modular_citadel/sound/vox/engage.ogg new file mode 100644 index 0000000000..7e1cf2e625 Binary files /dev/null and b/modular_citadel/sound/vox/engage.ogg differ diff --git a/modular_citadel/sound/vox/engaged.ogg b/modular_citadel/sound/vox/engaged.ogg new file mode 100644 index 0000000000..0e8196b026 Binary files /dev/null and b/modular_citadel/sound/vox/engaged.ogg differ diff --git a/modular_citadel/sound/vox/engine.ogg b/modular_citadel/sound/vox/engine.ogg new file mode 100644 index 0000000000..0ed1b4bd80 Binary files /dev/null and b/modular_citadel/sound/vox/engine.ogg differ diff --git a/modular_citadel/sound/vox/enter.ogg b/modular_citadel/sound/vox/enter.ogg new file mode 100644 index 0000000000..d7392eeada Binary files /dev/null and b/modular_citadel/sound/vox/enter.ogg differ diff --git a/modular_citadel/sound/vox/entry.ogg b/modular_citadel/sound/vox/entry.ogg new file mode 100644 index 0000000000..1ef6b14442 Binary files /dev/null and b/modular_citadel/sound/vox/entry.ogg differ diff --git a/modular_citadel/sound/vox/environment.ogg b/modular_citadel/sound/vox/environment.ogg new file mode 100644 index 0000000000..d05ba3106a Binary files /dev/null and b/modular_citadel/sound/vox/environment.ogg differ diff --git a/modular_citadel/sound/vox/error.ogg b/modular_citadel/sound/vox/error.ogg new file mode 100644 index 0000000000..237191732a Binary files /dev/null and b/modular_citadel/sound/vox/error.ogg differ diff --git a/modular_citadel/sound/vox/escape.ogg b/modular_citadel/sound/vox/escape.ogg new file mode 100644 index 0000000000..15e1181ac6 Binary files /dev/null and b/modular_citadel/sound/vox/escape.ogg differ diff --git a/modular_citadel/sound/vox/evacuate.ogg b/modular_citadel/sound/vox/evacuate.ogg new file mode 100644 index 0000000000..d0d755f1ba Binary files /dev/null and b/modular_citadel/sound/vox/evacuate.ogg differ diff --git a/modular_citadel/sound/vox/exchange.ogg b/modular_citadel/sound/vox/exchange.ogg new file mode 100644 index 0000000000..d69eac774a Binary files /dev/null and b/modular_citadel/sound/vox/exchange.ogg differ diff --git a/modular_citadel/sound/vox/exit.ogg b/modular_citadel/sound/vox/exit.ogg new file mode 100644 index 0000000000..a201b6b76b Binary files /dev/null and b/modular_citadel/sound/vox/exit.ogg differ diff --git a/modular_citadel/sound/vox/expect.ogg b/modular_citadel/sound/vox/expect.ogg new file mode 100644 index 0000000000..95e559fdd3 Binary files /dev/null and b/modular_citadel/sound/vox/expect.ogg differ diff --git a/modular_citadel/sound/vox/experiment.ogg b/modular_citadel/sound/vox/experiment.ogg new file mode 100644 index 0000000000..34ef253e69 Binary files /dev/null and b/modular_citadel/sound/vox/experiment.ogg differ diff --git a/modular_citadel/sound/vox/experimental.ogg b/modular_citadel/sound/vox/experimental.ogg new file mode 100644 index 0000000000..6635998222 Binary files /dev/null and b/modular_citadel/sound/vox/experimental.ogg differ diff --git a/modular_citadel/sound/vox/explode.ogg b/modular_citadel/sound/vox/explode.ogg new file mode 100644 index 0000000000..16b38926e4 Binary files /dev/null and b/modular_citadel/sound/vox/explode.ogg differ diff --git a/modular_citadel/sound/vox/explosion.ogg b/modular_citadel/sound/vox/explosion.ogg new file mode 100644 index 0000000000..ede66453bd Binary files /dev/null and b/modular_citadel/sound/vox/explosion.ogg differ diff --git a/modular_citadel/sound/vox/exposure.ogg b/modular_citadel/sound/vox/exposure.ogg new file mode 100644 index 0000000000..d2f66ca1ba Binary files /dev/null and b/modular_citadel/sound/vox/exposure.ogg differ diff --git a/modular_citadel/sound/vox/exterminate.ogg b/modular_citadel/sound/vox/exterminate.ogg new file mode 100644 index 0000000000..34be77f8e2 Binary files /dev/null and b/modular_citadel/sound/vox/exterminate.ogg differ diff --git a/modular_citadel/sound/vox/extinguish.ogg b/modular_citadel/sound/vox/extinguish.ogg new file mode 100644 index 0000000000..c003ff4547 Binary files /dev/null and b/modular_citadel/sound/vox/extinguish.ogg differ diff --git a/modular_citadel/sound/vox/extinguisher.ogg b/modular_citadel/sound/vox/extinguisher.ogg new file mode 100644 index 0000000000..d23b898014 Binary files /dev/null and b/modular_citadel/sound/vox/extinguisher.ogg differ diff --git a/modular_citadel/sound/vox/extreme.ogg b/modular_citadel/sound/vox/extreme.ogg new file mode 100644 index 0000000000..c3f5a2d9f0 Binary files /dev/null and b/modular_citadel/sound/vox/extreme.ogg differ diff --git a/modular_citadel/sound/vox/f.ogg b/modular_citadel/sound/vox/f.ogg new file mode 100644 index 0000000000..344734986f Binary files /dev/null and b/modular_citadel/sound/vox/f.ogg differ diff --git a/modular_citadel/sound/vox/face.ogg b/modular_citadel/sound/vox/face.ogg new file mode 100644 index 0000000000..acdd8722ef Binary files /dev/null and b/modular_citadel/sound/vox/face.ogg differ diff --git a/modular_citadel/sound/vox/facility.ogg b/modular_citadel/sound/vox/facility.ogg new file mode 100644 index 0000000000..43649febb0 Binary files /dev/null and b/modular_citadel/sound/vox/facility.ogg differ diff --git a/modular_citadel/sound/vox/fahrenheit.ogg b/modular_citadel/sound/vox/fahrenheit.ogg new file mode 100644 index 0000000000..4730726ea4 Binary files /dev/null and b/modular_citadel/sound/vox/fahrenheit.ogg differ diff --git a/modular_citadel/sound/vox/failed.ogg b/modular_citadel/sound/vox/failed.ogg new file mode 100644 index 0000000000..f801962345 Binary files /dev/null and b/modular_citadel/sound/vox/failed.ogg differ diff --git a/modular_citadel/sound/vox/failure.ogg b/modular_citadel/sound/vox/failure.ogg new file mode 100644 index 0000000000..e9b5808f27 Binary files /dev/null and b/modular_citadel/sound/vox/failure.ogg differ diff --git a/modular_citadel/sound/vox/farthest.ogg b/modular_citadel/sound/vox/farthest.ogg new file mode 100644 index 0000000000..3d18f669b1 Binary files /dev/null and b/modular_citadel/sound/vox/farthest.ogg differ diff --git a/modular_citadel/sound/vox/fast.ogg b/modular_citadel/sound/vox/fast.ogg new file mode 100644 index 0000000000..dbf82c32a4 Binary files /dev/null and b/modular_citadel/sound/vox/fast.ogg differ diff --git a/modular_citadel/sound/vox/feet.ogg b/modular_citadel/sound/vox/feet.ogg new file mode 100644 index 0000000000..eba093e73d Binary files /dev/null and b/modular_citadel/sound/vox/feet.ogg differ diff --git a/modular_citadel/sound/vox/field.ogg b/modular_citadel/sound/vox/field.ogg new file mode 100644 index 0000000000..bba79e6ddd Binary files /dev/null and b/modular_citadel/sound/vox/field.ogg differ diff --git a/modular_citadel/sound/vox/fifteen.ogg b/modular_citadel/sound/vox/fifteen.ogg new file mode 100644 index 0000000000..60eca844ae Binary files /dev/null and b/modular_citadel/sound/vox/fifteen.ogg differ diff --git a/modular_citadel/sound/vox/fifth.ogg b/modular_citadel/sound/vox/fifth.ogg new file mode 100644 index 0000000000..d6a76567d2 Binary files /dev/null and b/modular_citadel/sound/vox/fifth.ogg differ diff --git a/modular_citadel/sound/vox/fifty.ogg b/modular_citadel/sound/vox/fifty.ogg new file mode 100644 index 0000000000..30fd60072b Binary files /dev/null and b/modular_citadel/sound/vox/fifty.ogg differ diff --git a/modular_citadel/sound/vox/final.ogg b/modular_citadel/sound/vox/final.ogg new file mode 100644 index 0000000000..d06bef9fc2 Binary files /dev/null and b/modular_citadel/sound/vox/final.ogg differ diff --git a/modular_citadel/sound/vox/fine.ogg b/modular_citadel/sound/vox/fine.ogg new file mode 100644 index 0000000000..3445a9ea54 Binary files /dev/null and b/modular_citadel/sound/vox/fine.ogg differ diff --git a/modular_citadel/sound/vox/fire.ogg b/modular_citadel/sound/vox/fire.ogg new file mode 100644 index 0000000000..094043b953 Binary files /dev/null and b/modular_citadel/sound/vox/fire.ogg differ diff --git a/modular_citadel/sound/vox/first.ogg b/modular_citadel/sound/vox/first.ogg new file mode 100644 index 0000000000..84977e4eb7 Binary files /dev/null and b/modular_citadel/sound/vox/first.ogg differ diff --git a/modular_citadel/sound/vox/five.ogg b/modular_citadel/sound/vox/five.ogg new file mode 100644 index 0000000000..0a28539c34 Binary files /dev/null and b/modular_citadel/sound/vox/five.ogg differ diff --git a/modular_citadel/sound/vox/flag.ogg b/modular_citadel/sound/vox/flag.ogg new file mode 100644 index 0000000000..0d13587d60 Binary files /dev/null and b/modular_citadel/sound/vox/flag.ogg differ diff --git a/modular_citadel/sound/vox/flooding.ogg b/modular_citadel/sound/vox/flooding.ogg new file mode 100644 index 0000000000..c32bf475f5 Binary files /dev/null and b/modular_citadel/sound/vox/flooding.ogg differ diff --git a/modular_citadel/sound/vox/floor.ogg b/modular_citadel/sound/vox/floor.ogg new file mode 100644 index 0000000000..14d4a84131 Binary files /dev/null and b/modular_citadel/sound/vox/floor.ogg differ diff --git a/modular_citadel/sound/vox/fool.ogg b/modular_citadel/sound/vox/fool.ogg new file mode 100644 index 0000000000..965251cc4a Binary files /dev/null and b/modular_citadel/sound/vox/fool.ogg differ diff --git a/modular_citadel/sound/vox/for.ogg b/modular_citadel/sound/vox/for.ogg new file mode 100644 index 0000000000..b69a8f4b6c Binary files /dev/null and b/modular_citadel/sound/vox/for.ogg differ diff --git a/modular_citadel/sound/vox/forbidden.ogg b/modular_citadel/sound/vox/forbidden.ogg new file mode 100644 index 0000000000..23daae8496 Binary files /dev/null and b/modular_citadel/sound/vox/forbidden.ogg differ diff --git a/modular_citadel/sound/vox/force.ogg b/modular_citadel/sound/vox/force.ogg new file mode 100644 index 0000000000..ff4cb84c3a Binary files /dev/null and b/modular_citadel/sound/vox/force.ogg differ diff --git a/modular_citadel/sound/vox/forms.ogg b/modular_citadel/sound/vox/forms.ogg new file mode 100644 index 0000000000..7ef1862bb6 Binary files /dev/null and b/modular_citadel/sound/vox/forms.ogg differ diff --git a/modular_citadel/sound/vox/found.ogg b/modular_citadel/sound/vox/found.ogg new file mode 100644 index 0000000000..660a2f8520 Binary files /dev/null and b/modular_citadel/sound/vox/found.ogg differ diff --git a/modular_citadel/sound/vox/four.ogg b/modular_citadel/sound/vox/four.ogg new file mode 100644 index 0000000000..df8adfcd31 Binary files /dev/null and b/modular_citadel/sound/vox/four.ogg differ diff --git a/modular_citadel/sound/vox/fourteen.ogg b/modular_citadel/sound/vox/fourteen.ogg new file mode 100644 index 0000000000..21b61a0fd5 Binary files /dev/null and b/modular_citadel/sound/vox/fourteen.ogg differ diff --git a/modular_citadel/sound/vox/fourth.ogg b/modular_citadel/sound/vox/fourth.ogg new file mode 100644 index 0000000000..986102ea54 Binary files /dev/null and b/modular_citadel/sound/vox/fourth.ogg differ diff --git a/modular_citadel/sound/vox/fourty.ogg b/modular_citadel/sound/vox/fourty.ogg new file mode 100644 index 0000000000..b0edb0a7c7 Binary files /dev/null and b/modular_citadel/sound/vox/fourty.ogg differ diff --git a/modular_citadel/sound/vox/foxtrot.ogg b/modular_citadel/sound/vox/foxtrot.ogg new file mode 100644 index 0000000000..3be534fd22 Binary files /dev/null and b/modular_citadel/sound/vox/foxtrot.ogg differ diff --git a/modular_citadel/sound/vox/freeman.ogg b/modular_citadel/sound/vox/freeman.ogg new file mode 100644 index 0000000000..b2bc590942 Binary files /dev/null and b/modular_citadel/sound/vox/freeman.ogg differ diff --git a/modular_citadel/sound/vox/freezer.ogg b/modular_citadel/sound/vox/freezer.ogg new file mode 100644 index 0000000000..6bb30ad953 Binary files /dev/null and b/modular_citadel/sound/vox/freezer.ogg differ diff --git a/modular_citadel/sound/vox/from.ogg b/modular_citadel/sound/vox/from.ogg new file mode 100644 index 0000000000..535de03d14 Binary files /dev/null and b/modular_citadel/sound/vox/from.ogg differ diff --git a/modular_citadel/sound/vox/front.ogg b/modular_citadel/sound/vox/front.ogg new file mode 100644 index 0000000000..f1755a788b Binary files /dev/null and b/modular_citadel/sound/vox/front.ogg differ diff --git a/modular_citadel/sound/vox/fuel.ogg b/modular_citadel/sound/vox/fuel.ogg new file mode 100644 index 0000000000..53d7889314 Binary files /dev/null and b/modular_citadel/sound/vox/fuel.ogg differ diff --git a/modular_citadel/sound/vox/g.ogg b/modular_citadel/sound/vox/g.ogg new file mode 100644 index 0000000000..a3702ca3e5 Binary files /dev/null and b/modular_citadel/sound/vox/g.ogg differ diff --git a/modular_citadel/sound/vox/gay.ogg b/modular_citadel/sound/vox/gay.ogg new file mode 100644 index 0000000000..a70d05716b Binary files /dev/null and b/modular_citadel/sound/vox/gay.ogg differ diff --git a/modular_citadel/sound/vox/get.ogg b/modular_citadel/sound/vox/get.ogg new file mode 100644 index 0000000000..b5c0d47cd5 Binary files /dev/null and b/modular_citadel/sound/vox/get.ogg differ diff --git a/modular_citadel/sound/vox/go.ogg b/modular_citadel/sound/vox/go.ogg new file mode 100644 index 0000000000..f7dcb56f8e Binary files /dev/null and b/modular_citadel/sound/vox/go.ogg differ diff --git a/modular_citadel/sound/vox/going.ogg b/modular_citadel/sound/vox/going.ogg new file mode 100644 index 0000000000..3ff4fe5427 Binary files /dev/null and b/modular_citadel/sound/vox/going.ogg differ diff --git a/modular_citadel/sound/vox/good.ogg b/modular_citadel/sound/vox/good.ogg new file mode 100644 index 0000000000..c8115bb5fb Binary files /dev/null and b/modular_citadel/sound/vox/good.ogg differ diff --git a/modular_citadel/sound/vox/goodbye.ogg b/modular_citadel/sound/vox/goodbye.ogg new file mode 100644 index 0000000000..e793ba2fa6 Binary files /dev/null and b/modular_citadel/sound/vox/goodbye.ogg differ diff --git a/modular_citadel/sound/vox/gordon.ogg b/modular_citadel/sound/vox/gordon.ogg new file mode 100644 index 0000000000..5d5ab4ddba Binary files /dev/null and b/modular_citadel/sound/vox/gordon.ogg differ diff --git a/modular_citadel/sound/vox/got.ogg b/modular_citadel/sound/vox/got.ogg new file mode 100644 index 0000000000..3d712c9fc4 Binary files /dev/null and b/modular_citadel/sound/vox/got.ogg differ diff --git a/modular_citadel/sound/vox/government.ogg b/modular_citadel/sound/vox/government.ogg new file mode 100644 index 0000000000..830b59bac2 Binary files /dev/null and b/modular_citadel/sound/vox/government.ogg differ diff --git a/modular_citadel/sound/vox/granted.ogg b/modular_citadel/sound/vox/granted.ogg new file mode 100644 index 0000000000..4dae196cf6 Binary files /dev/null and b/modular_citadel/sound/vox/granted.ogg differ diff --git a/modular_citadel/sound/vox/great.ogg b/modular_citadel/sound/vox/great.ogg new file mode 100644 index 0000000000..d820a56179 Binary files /dev/null and b/modular_citadel/sound/vox/great.ogg differ diff --git a/modular_citadel/sound/vox/green.ogg b/modular_citadel/sound/vox/green.ogg new file mode 100644 index 0000000000..05f6e6b0fa Binary files /dev/null and b/modular_citadel/sound/vox/green.ogg differ diff --git a/modular_citadel/sound/vox/grenade.ogg b/modular_citadel/sound/vox/grenade.ogg new file mode 100644 index 0000000000..971a5d515b Binary files /dev/null and b/modular_citadel/sound/vox/grenade.ogg differ diff --git a/modular_citadel/sound/vox/guard.ogg b/modular_citadel/sound/vox/guard.ogg new file mode 100644 index 0000000000..795ba08486 Binary files /dev/null and b/modular_citadel/sound/vox/guard.ogg differ diff --git a/modular_citadel/sound/vox/gulf.ogg b/modular_citadel/sound/vox/gulf.ogg new file mode 100644 index 0000000000..87cc1f953d Binary files /dev/null and b/modular_citadel/sound/vox/gulf.ogg differ diff --git a/modular_citadel/sound/vox/gun.ogg b/modular_citadel/sound/vox/gun.ogg new file mode 100644 index 0000000000..472620ea76 Binary files /dev/null and b/modular_citadel/sound/vox/gun.ogg differ diff --git a/modular_citadel/sound/vox/guthrie.ogg b/modular_citadel/sound/vox/guthrie.ogg new file mode 100644 index 0000000000..b87c5f6cb1 Binary files /dev/null and b/modular_citadel/sound/vox/guthrie.ogg differ diff --git a/modular_citadel/sound/vox/handling.ogg b/modular_citadel/sound/vox/handling.ogg new file mode 100644 index 0000000000..be05e82d75 Binary files /dev/null and b/modular_citadel/sound/vox/handling.ogg differ diff --git a/modular_citadel/sound/vox/hangar.ogg b/modular_citadel/sound/vox/hangar.ogg new file mode 100644 index 0000000000..d6fe4084ae Binary files /dev/null and b/modular_citadel/sound/vox/hangar.ogg differ diff --git a/modular_citadel/sound/vox/has.ogg b/modular_citadel/sound/vox/has.ogg new file mode 100644 index 0000000000..055cb0dc15 Binary files /dev/null and b/modular_citadel/sound/vox/has.ogg differ diff --git a/modular_citadel/sound/vox/have.ogg b/modular_citadel/sound/vox/have.ogg new file mode 100644 index 0000000000..c514165582 Binary files /dev/null and b/modular_citadel/sound/vox/have.ogg differ diff --git a/modular_citadel/sound/vox/hazard.ogg b/modular_citadel/sound/vox/hazard.ogg new file mode 100644 index 0000000000..032b1fb251 Binary files /dev/null and b/modular_citadel/sound/vox/hazard.ogg differ diff --git a/modular_citadel/sound/vox/head.ogg b/modular_citadel/sound/vox/head.ogg new file mode 100644 index 0000000000..e4902fcc6f Binary files /dev/null and b/modular_citadel/sound/vox/head.ogg differ diff --git a/modular_citadel/sound/vox/health.ogg b/modular_citadel/sound/vox/health.ogg new file mode 100644 index 0000000000..c11ad1bcf2 Binary files /dev/null and b/modular_citadel/sound/vox/health.ogg differ diff --git a/modular_citadel/sound/vox/heat.ogg b/modular_citadel/sound/vox/heat.ogg new file mode 100644 index 0000000000..a6c0752ab8 Binary files /dev/null and b/modular_citadel/sound/vox/heat.ogg differ diff --git a/modular_citadel/sound/vox/helicopter.ogg b/modular_citadel/sound/vox/helicopter.ogg new file mode 100644 index 0000000000..6bfe6466b2 Binary files /dev/null and b/modular_citadel/sound/vox/helicopter.ogg differ diff --git a/modular_citadel/sound/vox/helium.ogg b/modular_citadel/sound/vox/helium.ogg new file mode 100644 index 0000000000..4a5c8326a5 Binary files /dev/null and b/modular_citadel/sound/vox/helium.ogg differ diff --git a/modular_citadel/sound/vox/hello.ogg b/modular_citadel/sound/vox/hello.ogg new file mode 100644 index 0000000000..622e4669ef Binary files /dev/null and b/modular_citadel/sound/vox/hello.ogg differ diff --git a/modular_citadel/sound/vox/help.ogg b/modular_citadel/sound/vox/help.ogg new file mode 100644 index 0000000000..038438d63b Binary files /dev/null and b/modular_citadel/sound/vox/help.ogg differ diff --git a/modular_citadel/sound/vox/here.ogg b/modular_citadel/sound/vox/here.ogg new file mode 100644 index 0000000000..ef69f1b282 Binary files /dev/null and b/modular_citadel/sound/vox/here.ogg differ diff --git a/modular_citadel/sound/vox/hide.ogg b/modular_citadel/sound/vox/hide.ogg new file mode 100644 index 0000000000..aa329d1f72 Binary files /dev/null and b/modular_citadel/sound/vox/hide.ogg differ diff --git a/modular_citadel/sound/vox/high.ogg b/modular_citadel/sound/vox/high.ogg new file mode 100644 index 0000000000..c20e382388 Binary files /dev/null and b/modular_citadel/sound/vox/high.ogg differ diff --git a/modular_citadel/sound/vox/highest.ogg b/modular_citadel/sound/vox/highest.ogg new file mode 100644 index 0000000000..d64bfd528c Binary files /dev/null and b/modular_citadel/sound/vox/highest.ogg differ diff --git a/modular_citadel/sound/vox/hit.ogg b/modular_citadel/sound/vox/hit.ogg new file mode 100644 index 0000000000..bfe3cd0501 Binary files /dev/null and b/modular_citadel/sound/vox/hit.ogg differ diff --git a/modular_citadel/sound/vox/holds.ogg b/modular_citadel/sound/vox/holds.ogg new file mode 100644 index 0000000000..41b88d990e Binary files /dev/null and b/modular_citadel/sound/vox/holds.ogg differ diff --git a/modular_citadel/sound/vox/hole.ogg b/modular_citadel/sound/vox/hole.ogg new file mode 100644 index 0000000000..a5dea701c8 Binary files /dev/null and b/modular_citadel/sound/vox/hole.ogg differ diff --git a/modular_citadel/sound/vox/hostile.ogg b/modular_citadel/sound/vox/hostile.ogg new file mode 100644 index 0000000000..7b8e495c87 Binary files /dev/null and b/modular_citadel/sound/vox/hostile.ogg differ diff --git a/modular_citadel/sound/vox/hot.ogg b/modular_citadel/sound/vox/hot.ogg new file mode 100644 index 0000000000..508f643856 Binary files /dev/null and b/modular_citadel/sound/vox/hot.ogg differ diff --git a/modular_citadel/sound/vox/hotel.ogg b/modular_citadel/sound/vox/hotel.ogg new file mode 100644 index 0000000000..5a5b66cdbf Binary files /dev/null and b/modular_citadel/sound/vox/hotel.ogg differ diff --git a/modular_citadel/sound/vox/hour.ogg b/modular_citadel/sound/vox/hour.ogg new file mode 100644 index 0000000000..39f0fd0917 Binary files /dev/null and b/modular_citadel/sound/vox/hour.ogg differ diff --git a/modular_citadel/sound/vox/hours.ogg b/modular_citadel/sound/vox/hours.ogg new file mode 100644 index 0000000000..691b7a643b Binary files /dev/null and b/modular_citadel/sound/vox/hours.ogg differ diff --git a/modular_citadel/sound/vox/hundred.ogg b/modular_citadel/sound/vox/hundred.ogg new file mode 100644 index 0000000000..3a254a137a Binary files /dev/null and b/modular_citadel/sound/vox/hundred.ogg differ diff --git a/modular_citadel/sound/vox/hydro.ogg b/modular_citadel/sound/vox/hydro.ogg new file mode 100644 index 0000000000..47c9ad5d01 Binary files /dev/null and b/modular_citadel/sound/vox/hydro.ogg differ diff --git a/modular_citadel/sound/vox/i.ogg b/modular_citadel/sound/vox/i.ogg new file mode 100644 index 0000000000..1c4ce81b7a Binary files /dev/null and b/modular_citadel/sound/vox/i.ogg differ diff --git a/modular_citadel/sound/vox/idiot.ogg b/modular_citadel/sound/vox/idiot.ogg new file mode 100644 index 0000000000..66e058effc Binary files /dev/null and b/modular_citadel/sound/vox/idiot.ogg differ diff --git a/modular_citadel/sound/vox/illegal.ogg b/modular_citadel/sound/vox/illegal.ogg new file mode 100644 index 0000000000..e1f22738bd Binary files /dev/null and b/modular_citadel/sound/vox/illegal.ogg differ diff --git a/modular_citadel/sound/vox/immediate.ogg b/modular_citadel/sound/vox/immediate.ogg new file mode 100644 index 0000000000..3e551dfa57 Binary files /dev/null and b/modular_citadel/sound/vox/immediate.ogg differ diff --git a/modular_citadel/sound/vox/immediately.ogg b/modular_citadel/sound/vox/immediately.ogg new file mode 100644 index 0000000000..0ca780ddac Binary files /dev/null and b/modular_citadel/sound/vox/immediately.ogg differ diff --git a/modular_citadel/sound/vox/in.ogg b/modular_citadel/sound/vox/in.ogg new file mode 100644 index 0000000000..e0b20f4795 Binary files /dev/null and b/modular_citadel/sound/vox/in.ogg differ diff --git a/modular_citadel/sound/vox/inches.ogg b/modular_citadel/sound/vox/inches.ogg new file mode 100644 index 0000000000..058f8e9131 Binary files /dev/null and b/modular_citadel/sound/vox/inches.ogg differ diff --git a/modular_citadel/sound/vox/india.ogg b/modular_citadel/sound/vox/india.ogg new file mode 100644 index 0000000000..1eefc45266 Binary files /dev/null and b/modular_citadel/sound/vox/india.ogg differ diff --git a/modular_citadel/sound/vox/ing.ogg b/modular_citadel/sound/vox/ing.ogg new file mode 100644 index 0000000000..d8c5c72fc9 Binary files /dev/null and b/modular_citadel/sound/vox/ing.ogg differ diff --git a/modular_citadel/sound/vox/inoperative.ogg b/modular_citadel/sound/vox/inoperative.ogg new file mode 100644 index 0000000000..01f13af948 Binary files /dev/null and b/modular_citadel/sound/vox/inoperative.ogg differ diff --git a/modular_citadel/sound/vox/inside.ogg b/modular_citadel/sound/vox/inside.ogg new file mode 100644 index 0000000000..778f4539ed Binary files /dev/null and b/modular_citadel/sound/vox/inside.ogg differ diff --git a/modular_citadel/sound/vox/inspection.ogg b/modular_citadel/sound/vox/inspection.ogg new file mode 100644 index 0000000000..60a2b3e788 Binary files /dev/null and b/modular_citadel/sound/vox/inspection.ogg differ diff --git a/modular_citadel/sound/vox/inspector.ogg b/modular_citadel/sound/vox/inspector.ogg new file mode 100644 index 0000000000..177651d631 Binary files /dev/null and b/modular_citadel/sound/vox/inspector.ogg differ diff --git a/modular_citadel/sound/vox/interchange.ogg b/modular_citadel/sound/vox/interchange.ogg new file mode 100644 index 0000000000..6c4230d2d1 Binary files /dev/null and b/modular_citadel/sound/vox/interchange.ogg differ diff --git a/modular_citadel/sound/vox/intruder.ogg b/modular_citadel/sound/vox/intruder.ogg new file mode 100644 index 0000000000..db4810966f Binary files /dev/null and b/modular_citadel/sound/vox/intruder.ogg differ diff --git a/modular_citadel/sound/vox/invallid.ogg b/modular_citadel/sound/vox/invallid.ogg new file mode 100644 index 0000000000..b2e5628fa5 Binary files /dev/null and b/modular_citadel/sound/vox/invallid.ogg differ diff --git a/modular_citadel/sound/vox/invasion.ogg b/modular_citadel/sound/vox/invasion.ogg new file mode 100644 index 0000000000..8e9a41fc10 Binary files /dev/null and b/modular_citadel/sound/vox/invasion.ogg differ diff --git a/modular_citadel/sound/vox/is.ogg b/modular_citadel/sound/vox/is.ogg new file mode 100644 index 0000000000..db3ca1dc81 Binary files /dev/null and b/modular_citadel/sound/vox/is.ogg differ diff --git a/modular_citadel/sound/vox/it.ogg b/modular_citadel/sound/vox/it.ogg new file mode 100644 index 0000000000..c0d3de3992 Binary files /dev/null and b/modular_citadel/sound/vox/it.ogg differ diff --git a/modular_citadel/sound/vox/johnson.ogg b/modular_citadel/sound/vox/johnson.ogg new file mode 100644 index 0000000000..ea74d8a61f Binary files /dev/null and b/modular_citadel/sound/vox/johnson.ogg differ diff --git a/modular_citadel/sound/vox/juliet.ogg b/modular_citadel/sound/vox/juliet.ogg new file mode 100644 index 0000000000..c9a61b63ab Binary files /dev/null and b/modular_citadel/sound/vox/juliet.ogg differ diff --git a/modular_citadel/sound/vox/key.ogg b/modular_citadel/sound/vox/key.ogg new file mode 100644 index 0000000000..b761d5c1f9 Binary files /dev/null and b/modular_citadel/sound/vox/key.ogg differ diff --git a/modular_citadel/sound/vox/kill.ogg b/modular_citadel/sound/vox/kill.ogg new file mode 100644 index 0000000000..00db499476 Binary files /dev/null and b/modular_citadel/sound/vox/kill.ogg differ diff --git a/modular_citadel/sound/vox/kilo.ogg b/modular_citadel/sound/vox/kilo.ogg new file mode 100644 index 0000000000..7786c4fc7c Binary files /dev/null and b/modular_citadel/sound/vox/kilo.ogg differ diff --git a/modular_citadel/sound/vox/kit.ogg b/modular_citadel/sound/vox/kit.ogg new file mode 100644 index 0000000000..15bbe46087 Binary files /dev/null and b/modular_citadel/sound/vox/kit.ogg differ diff --git a/modular_citadel/sound/vox/lab.ogg b/modular_citadel/sound/vox/lab.ogg new file mode 100644 index 0000000000..2031fdd255 Binary files /dev/null and b/modular_citadel/sound/vox/lab.ogg differ diff --git a/modular_citadel/sound/vox/lambda.ogg b/modular_citadel/sound/vox/lambda.ogg new file mode 100644 index 0000000000..f933c45376 Binary files /dev/null and b/modular_citadel/sound/vox/lambda.ogg differ diff --git a/modular_citadel/sound/vox/laser.ogg b/modular_citadel/sound/vox/laser.ogg new file mode 100644 index 0000000000..04b5ec4341 Binary files /dev/null and b/modular_citadel/sound/vox/laser.ogg differ diff --git a/modular_citadel/sound/vox/last.ogg b/modular_citadel/sound/vox/last.ogg new file mode 100644 index 0000000000..9ce61ac234 Binary files /dev/null and b/modular_citadel/sound/vox/last.ogg differ diff --git a/modular_citadel/sound/vox/launch.ogg b/modular_citadel/sound/vox/launch.ogg new file mode 100644 index 0000000000..c8e3b0820e Binary files /dev/null and b/modular_citadel/sound/vox/launch.ogg differ diff --git a/modular_citadel/sound/vox/leak.ogg b/modular_citadel/sound/vox/leak.ogg new file mode 100644 index 0000000000..3154ac53c3 Binary files /dev/null and b/modular_citadel/sound/vox/leak.ogg differ diff --git a/modular_citadel/sound/vox/leave.ogg b/modular_citadel/sound/vox/leave.ogg new file mode 100644 index 0000000000..cec4a6befd Binary files /dev/null and b/modular_citadel/sound/vox/leave.ogg differ diff --git a/modular_citadel/sound/vox/left.ogg b/modular_citadel/sound/vox/left.ogg new file mode 100644 index 0000000000..c6f32829ad Binary files /dev/null and b/modular_citadel/sound/vox/left.ogg differ diff --git a/modular_citadel/sound/vox/legal.ogg b/modular_citadel/sound/vox/legal.ogg new file mode 100644 index 0000000000..c8f5163bd1 Binary files /dev/null and b/modular_citadel/sound/vox/legal.ogg differ diff --git a/modular_citadel/sound/vox/level.ogg b/modular_citadel/sound/vox/level.ogg new file mode 100644 index 0000000000..4d898a5ef7 Binary files /dev/null and b/modular_citadel/sound/vox/level.ogg differ diff --git a/modular_citadel/sound/vox/lever.ogg b/modular_citadel/sound/vox/lever.ogg new file mode 100644 index 0000000000..28c8c33e76 Binary files /dev/null and b/modular_citadel/sound/vox/lever.ogg differ diff --git a/modular_citadel/sound/vox/lie.ogg b/modular_citadel/sound/vox/lie.ogg new file mode 100644 index 0000000000..1516dc0072 Binary files /dev/null and b/modular_citadel/sound/vox/lie.ogg differ diff --git a/modular_citadel/sound/vox/lieutenant.ogg b/modular_citadel/sound/vox/lieutenant.ogg new file mode 100644 index 0000000000..1393b36008 Binary files /dev/null and b/modular_citadel/sound/vox/lieutenant.ogg differ diff --git a/modular_citadel/sound/vox/life.ogg b/modular_citadel/sound/vox/life.ogg new file mode 100644 index 0000000000..0d03320ce2 Binary files /dev/null and b/modular_citadel/sound/vox/life.ogg differ diff --git a/modular_citadel/sound/vox/light.ogg b/modular_citadel/sound/vox/light.ogg new file mode 100644 index 0000000000..c4e8a9fc78 Binary files /dev/null and b/modular_citadel/sound/vox/light.ogg differ diff --git a/modular_citadel/sound/vox/lima.ogg b/modular_citadel/sound/vox/lima.ogg new file mode 100644 index 0000000000..84e26666cf Binary files /dev/null and b/modular_citadel/sound/vox/lima.ogg differ diff --git a/modular_citadel/sound/vox/liquid.ogg b/modular_citadel/sound/vox/liquid.ogg new file mode 100644 index 0000000000..b942e3cf6c Binary files /dev/null and b/modular_citadel/sound/vox/liquid.ogg differ diff --git a/modular_citadel/sound/vox/loading.ogg b/modular_citadel/sound/vox/loading.ogg new file mode 100644 index 0000000000..2dfefd952e Binary files /dev/null and b/modular_citadel/sound/vox/loading.ogg differ diff --git a/modular_citadel/sound/vox/locate.ogg b/modular_citadel/sound/vox/locate.ogg new file mode 100644 index 0000000000..2ea19ec257 Binary files /dev/null and b/modular_citadel/sound/vox/locate.ogg differ diff --git a/modular_citadel/sound/vox/located.ogg b/modular_citadel/sound/vox/located.ogg new file mode 100644 index 0000000000..cd161b556b Binary files /dev/null and b/modular_citadel/sound/vox/located.ogg differ diff --git a/modular_citadel/sound/vox/location.ogg b/modular_citadel/sound/vox/location.ogg new file mode 100644 index 0000000000..966c9ae3f6 Binary files /dev/null and b/modular_citadel/sound/vox/location.ogg differ diff --git a/modular_citadel/sound/vox/lock.ogg b/modular_citadel/sound/vox/lock.ogg new file mode 100644 index 0000000000..c4c89992db Binary files /dev/null and b/modular_citadel/sound/vox/lock.ogg differ diff --git a/modular_citadel/sound/vox/locked.ogg b/modular_citadel/sound/vox/locked.ogg new file mode 100644 index 0000000000..d1a05ba323 Binary files /dev/null and b/modular_citadel/sound/vox/locked.ogg differ diff --git a/modular_citadel/sound/vox/locker.ogg b/modular_citadel/sound/vox/locker.ogg new file mode 100644 index 0000000000..2c5c9ccb4b Binary files /dev/null and b/modular_citadel/sound/vox/locker.ogg differ diff --git a/modular_citadel/sound/vox/lockout.ogg b/modular_citadel/sound/vox/lockout.ogg new file mode 100644 index 0000000000..36748ecb71 Binary files /dev/null and b/modular_citadel/sound/vox/lockout.ogg differ diff --git a/modular_citadel/sound/vox/lower.ogg b/modular_citadel/sound/vox/lower.ogg new file mode 100644 index 0000000000..a3a6a3ae9d Binary files /dev/null and b/modular_citadel/sound/vox/lower.ogg differ diff --git a/modular_citadel/sound/vox/lowest.ogg b/modular_citadel/sound/vox/lowest.ogg new file mode 100644 index 0000000000..787fa2a961 Binary files /dev/null and b/modular_citadel/sound/vox/lowest.ogg differ diff --git a/modular_citadel/sound/vox/magnetic.ogg b/modular_citadel/sound/vox/magnetic.ogg new file mode 100644 index 0000000000..1211ab1cfd Binary files /dev/null and b/modular_citadel/sound/vox/magnetic.ogg differ diff --git a/modular_citadel/sound/vox/main.ogg b/modular_citadel/sound/vox/main.ogg new file mode 100644 index 0000000000..a1e49b2c16 Binary files /dev/null and b/modular_citadel/sound/vox/main.ogg differ diff --git a/modular_citadel/sound/vox/maintenance.ogg b/modular_citadel/sound/vox/maintenance.ogg new file mode 100644 index 0000000000..691fea8b60 Binary files /dev/null and b/modular_citadel/sound/vox/maintenance.ogg differ diff --git a/modular_citadel/sound/vox/malfunction.ogg b/modular_citadel/sound/vox/malfunction.ogg new file mode 100644 index 0000000000..5e0d416d4f Binary files /dev/null and b/modular_citadel/sound/vox/malfunction.ogg differ diff --git a/modular_citadel/sound/vox/man.ogg b/modular_citadel/sound/vox/man.ogg new file mode 100644 index 0000000000..10ca95640a Binary files /dev/null and b/modular_citadel/sound/vox/man.ogg differ diff --git a/modular_citadel/sound/vox/mass.ogg b/modular_citadel/sound/vox/mass.ogg new file mode 100644 index 0000000000..6b785f5e8b Binary files /dev/null and b/modular_citadel/sound/vox/mass.ogg differ diff --git a/modular_citadel/sound/vox/materials.ogg b/modular_citadel/sound/vox/materials.ogg new file mode 100644 index 0000000000..0321e579f7 Binary files /dev/null and b/modular_citadel/sound/vox/materials.ogg differ diff --git a/modular_citadel/sound/vox/maximum.ogg b/modular_citadel/sound/vox/maximum.ogg new file mode 100644 index 0000000000..ef566342a7 Binary files /dev/null and b/modular_citadel/sound/vox/maximum.ogg differ diff --git a/modular_citadel/sound/vox/may.ogg b/modular_citadel/sound/vox/may.ogg new file mode 100644 index 0000000000..2f9fa02cf0 Binary files /dev/null and b/modular_citadel/sound/vox/may.ogg differ diff --git a/modular_citadel/sound/vox/med.ogg b/modular_citadel/sound/vox/med.ogg new file mode 100644 index 0000000000..280a12362f Binary files /dev/null and b/modular_citadel/sound/vox/med.ogg differ diff --git a/modular_citadel/sound/vox/medical.ogg b/modular_citadel/sound/vox/medical.ogg new file mode 100644 index 0000000000..3a293f31b2 Binary files /dev/null and b/modular_citadel/sound/vox/medical.ogg differ diff --git a/modular_citadel/sound/vox/men.ogg b/modular_citadel/sound/vox/men.ogg new file mode 100644 index 0000000000..a9e92245f1 Binary files /dev/null and b/modular_citadel/sound/vox/men.ogg differ diff --git a/modular_citadel/sound/vox/mercy.ogg b/modular_citadel/sound/vox/mercy.ogg new file mode 100644 index 0000000000..2de89bc70a Binary files /dev/null and b/modular_citadel/sound/vox/mercy.ogg differ diff --git a/modular_citadel/sound/vox/mesa.ogg b/modular_citadel/sound/vox/mesa.ogg new file mode 100644 index 0000000000..649d3671ba Binary files /dev/null and b/modular_citadel/sound/vox/mesa.ogg differ diff --git a/modular_citadel/sound/vox/message.ogg b/modular_citadel/sound/vox/message.ogg new file mode 100644 index 0000000000..1454e3df9e Binary files /dev/null and b/modular_citadel/sound/vox/message.ogg differ diff --git a/modular_citadel/sound/vox/meter.ogg b/modular_citadel/sound/vox/meter.ogg new file mode 100644 index 0000000000..7afc6fb3d1 Binary files /dev/null and b/modular_citadel/sound/vox/meter.ogg differ diff --git a/modular_citadel/sound/vox/micro.ogg b/modular_citadel/sound/vox/micro.ogg new file mode 100644 index 0000000000..38d59ed2de Binary files /dev/null and b/modular_citadel/sound/vox/micro.ogg differ diff --git a/modular_citadel/sound/vox/middle.ogg b/modular_citadel/sound/vox/middle.ogg new file mode 100644 index 0000000000..ef33287eff Binary files /dev/null and b/modular_citadel/sound/vox/middle.ogg differ diff --git a/modular_citadel/sound/vox/mike.ogg b/modular_citadel/sound/vox/mike.ogg new file mode 100644 index 0000000000..27d4fdeb9e Binary files /dev/null and b/modular_citadel/sound/vox/mike.ogg differ diff --git a/modular_citadel/sound/vox/miles.ogg b/modular_citadel/sound/vox/miles.ogg new file mode 100644 index 0000000000..fbf06913e2 Binary files /dev/null and b/modular_citadel/sound/vox/miles.ogg differ diff --git a/modular_citadel/sound/vox/military.ogg b/modular_citadel/sound/vox/military.ogg new file mode 100644 index 0000000000..8273851291 Binary files /dev/null and b/modular_citadel/sound/vox/military.ogg differ diff --git a/modular_citadel/sound/vox/milli.ogg b/modular_citadel/sound/vox/milli.ogg new file mode 100644 index 0000000000..806bccebab Binary files /dev/null and b/modular_citadel/sound/vox/milli.ogg differ diff --git a/modular_citadel/sound/vox/million.ogg b/modular_citadel/sound/vox/million.ogg new file mode 100644 index 0000000000..e4c10a2d86 Binary files /dev/null and b/modular_citadel/sound/vox/million.ogg differ diff --git a/modular_citadel/sound/vox/minefield.ogg b/modular_citadel/sound/vox/minefield.ogg new file mode 100644 index 0000000000..b437449d1d Binary files /dev/null and b/modular_citadel/sound/vox/minefield.ogg differ diff --git a/modular_citadel/sound/vox/minimum.ogg b/modular_citadel/sound/vox/minimum.ogg new file mode 100644 index 0000000000..a15483bde6 Binary files /dev/null and b/modular_citadel/sound/vox/minimum.ogg differ diff --git a/modular_citadel/sound/vox/minutes.ogg b/modular_citadel/sound/vox/minutes.ogg new file mode 100644 index 0000000000..2b7bf579ea Binary files /dev/null and b/modular_citadel/sound/vox/minutes.ogg differ diff --git a/modular_citadel/sound/vox/mister.ogg b/modular_citadel/sound/vox/mister.ogg new file mode 100644 index 0000000000..bc5409bbed Binary files /dev/null and b/modular_citadel/sound/vox/mister.ogg differ diff --git a/modular_citadel/sound/vox/mode.ogg b/modular_citadel/sound/vox/mode.ogg new file mode 100644 index 0000000000..04d6684bde Binary files /dev/null and b/modular_citadel/sound/vox/mode.ogg differ diff --git a/modular_citadel/sound/vox/motor.ogg b/modular_citadel/sound/vox/motor.ogg new file mode 100644 index 0000000000..5a3084201a Binary files /dev/null and b/modular_citadel/sound/vox/motor.ogg differ diff --git a/modular_citadel/sound/vox/motorpool.ogg b/modular_citadel/sound/vox/motorpool.ogg new file mode 100644 index 0000000000..a29772d545 Binary files /dev/null and b/modular_citadel/sound/vox/motorpool.ogg differ diff --git a/modular_citadel/sound/vox/move.ogg b/modular_citadel/sound/vox/move.ogg new file mode 100644 index 0000000000..cc6344813f Binary files /dev/null and b/modular_citadel/sound/vox/move.ogg differ diff --git a/modular_citadel/sound/vox/must.ogg b/modular_citadel/sound/vox/must.ogg new file mode 100644 index 0000000000..d52d2c85e0 Binary files /dev/null and b/modular_citadel/sound/vox/must.ogg differ diff --git a/modular_citadel/sound/vox/nearest.ogg b/modular_citadel/sound/vox/nearest.ogg new file mode 100644 index 0000000000..fdf34564ad Binary files /dev/null and b/modular_citadel/sound/vox/nearest.ogg differ diff --git a/modular_citadel/sound/vox/nice.ogg b/modular_citadel/sound/vox/nice.ogg new file mode 100644 index 0000000000..102f0eaf87 Binary files /dev/null and b/modular_citadel/sound/vox/nice.ogg differ diff --git a/modular_citadel/sound/vox/nine.ogg b/modular_citadel/sound/vox/nine.ogg new file mode 100644 index 0000000000..1d4fd45add Binary files /dev/null and b/modular_citadel/sound/vox/nine.ogg differ diff --git a/modular_citadel/sound/vox/nineteen.ogg b/modular_citadel/sound/vox/nineteen.ogg new file mode 100644 index 0000000000..907ecc6e92 Binary files /dev/null and b/modular_citadel/sound/vox/nineteen.ogg differ diff --git a/modular_citadel/sound/vox/ninety.ogg b/modular_citadel/sound/vox/ninety.ogg new file mode 100644 index 0000000000..0f1c3c4fb5 Binary files /dev/null and b/modular_citadel/sound/vox/ninety.ogg differ diff --git a/modular_citadel/sound/vox/no.ogg b/modular_citadel/sound/vox/no.ogg new file mode 100644 index 0000000000..85d8497891 Binary files /dev/null and b/modular_citadel/sound/vox/no.ogg differ diff --git a/modular_citadel/sound/vox/nominal.ogg b/modular_citadel/sound/vox/nominal.ogg new file mode 100644 index 0000000000..45da127f1b Binary files /dev/null and b/modular_citadel/sound/vox/nominal.ogg differ diff --git a/modular_citadel/sound/vox/north.ogg b/modular_citadel/sound/vox/north.ogg new file mode 100644 index 0000000000..03eb6f88d2 Binary files /dev/null and b/modular_citadel/sound/vox/north.ogg differ diff --git a/modular_citadel/sound/vox/not.ogg b/modular_citadel/sound/vox/not.ogg new file mode 100644 index 0000000000..bc691af375 Binary files /dev/null and b/modular_citadel/sound/vox/not.ogg differ diff --git a/modular_citadel/sound/vox/november.ogg b/modular_citadel/sound/vox/november.ogg new file mode 100644 index 0000000000..4819c132dc Binary files /dev/null and b/modular_citadel/sound/vox/november.ogg differ diff --git a/modular_citadel/sound/vox/now.ogg b/modular_citadel/sound/vox/now.ogg new file mode 100644 index 0000000000..0e26869bac Binary files /dev/null and b/modular_citadel/sound/vox/now.ogg differ diff --git a/modular_citadel/sound/vox/number.ogg b/modular_citadel/sound/vox/number.ogg new file mode 100644 index 0000000000..c139db7d17 Binary files /dev/null and b/modular_citadel/sound/vox/number.ogg differ diff --git a/modular_citadel/sound/vox/objective.ogg b/modular_citadel/sound/vox/objective.ogg new file mode 100644 index 0000000000..2496f83ccf Binary files /dev/null and b/modular_citadel/sound/vox/objective.ogg differ diff --git a/modular_citadel/sound/vox/observation.ogg b/modular_citadel/sound/vox/observation.ogg new file mode 100644 index 0000000000..af04410915 Binary files /dev/null and b/modular_citadel/sound/vox/observation.ogg differ diff --git a/modular_citadel/sound/vox/of.ogg b/modular_citadel/sound/vox/of.ogg new file mode 100644 index 0000000000..ee71e1a46e Binary files /dev/null and b/modular_citadel/sound/vox/of.ogg differ diff --git a/modular_citadel/sound/vox/officer.ogg b/modular_citadel/sound/vox/officer.ogg new file mode 100644 index 0000000000..c9f94915e6 Binary files /dev/null and b/modular_citadel/sound/vox/officer.ogg differ diff --git a/modular_citadel/sound/vox/ok.ogg b/modular_citadel/sound/vox/ok.ogg new file mode 100644 index 0000000000..cf58af4d13 Binary files /dev/null and b/modular_citadel/sound/vox/ok.ogg differ diff --git a/modular_citadel/sound/vox/on.ogg b/modular_citadel/sound/vox/on.ogg new file mode 100644 index 0000000000..3c59c6abd8 Binary files /dev/null and b/modular_citadel/sound/vox/on.ogg differ diff --git a/modular_citadel/sound/vox/one.ogg b/modular_citadel/sound/vox/one.ogg new file mode 100644 index 0000000000..377f270179 Binary files /dev/null and b/modular_citadel/sound/vox/one.ogg differ diff --git a/modular_citadel/sound/vox/open.ogg b/modular_citadel/sound/vox/open.ogg new file mode 100644 index 0000000000..81c11de72f Binary files /dev/null and b/modular_citadel/sound/vox/open.ogg differ diff --git a/modular_citadel/sound/vox/operating.ogg b/modular_citadel/sound/vox/operating.ogg new file mode 100644 index 0000000000..cd2de79d79 Binary files /dev/null and b/modular_citadel/sound/vox/operating.ogg differ diff --git a/modular_citadel/sound/vox/operations.ogg b/modular_citadel/sound/vox/operations.ogg new file mode 100644 index 0000000000..9323d95f46 Binary files /dev/null and b/modular_citadel/sound/vox/operations.ogg differ diff --git a/modular_citadel/sound/vox/operative.ogg b/modular_citadel/sound/vox/operative.ogg new file mode 100644 index 0000000000..ba9c7d0cf4 Binary files /dev/null and b/modular_citadel/sound/vox/operative.ogg differ diff --git a/modular_citadel/sound/vox/option.ogg b/modular_citadel/sound/vox/option.ogg new file mode 100644 index 0000000000..c404be5556 Binary files /dev/null and b/modular_citadel/sound/vox/option.ogg differ diff --git a/modular_citadel/sound/vox/order.ogg b/modular_citadel/sound/vox/order.ogg new file mode 100644 index 0000000000..2961f353ed Binary files /dev/null and b/modular_citadel/sound/vox/order.ogg differ diff --git a/modular_citadel/sound/vox/organic.ogg b/modular_citadel/sound/vox/organic.ogg new file mode 100644 index 0000000000..6195be46b4 Binary files /dev/null and b/modular_citadel/sound/vox/organic.ogg differ diff --git a/modular_citadel/sound/vox/oscar.ogg b/modular_citadel/sound/vox/oscar.ogg new file mode 100644 index 0000000000..5f43814f5e Binary files /dev/null and b/modular_citadel/sound/vox/oscar.ogg differ diff --git a/modular_citadel/sound/vox/out.ogg b/modular_citadel/sound/vox/out.ogg new file mode 100644 index 0000000000..3a64ae9751 Binary files /dev/null and b/modular_citadel/sound/vox/out.ogg differ diff --git a/modular_citadel/sound/vox/outside.ogg b/modular_citadel/sound/vox/outside.ogg new file mode 100644 index 0000000000..a6417b9f97 Binary files /dev/null and b/modular_citadel/sound/vox/outside.ogg differ diff --git a/modular_citadel/sound/vox/over.ogg b/modular_citadel/sound/vox/over.ogg new file mode 100644 index 0000000000..193bbd797b Binary files /dev/null and b/modular_citadel/sound/vox/over.ogg differ diff --git a/modular_citadel/sound/vox/overload.ogg b/modular_citadel/sound/vox/overload.ogg new file mode 100644 index 0000000000..d90e52e97d Binary files /dev/null and b/modular_citadel/sound/vox/overload.ogg differ diff --git a/modular_citadel/sound/vox/override.ogg b/modular_citadel/sound/vox/override.ogg new file mode 100644 index 0000000000..f2efb63799 Binary files /dev/null and b/modular_citadel/sound/vox/override.ogg differ diff --git a/modular_citadel/sound/vox/pacify.ogg b/modular_citadel/sound/vox/pacify.ogg new file mode 100644 index 0000000000..232865ebe2 Binary files /dev/null and b/modular_citadel/sound/vox/pacify.ogg differ diff --git a/modular_citadel/sound/vox/pain.ogg b/modular_citadel/sound/vox/pain.ogg new file mode 100644 index 0000000000..88e8813158 Binary files /dev/null and b/modular_citadel/sound/vox/pain.ogg differ diff --git a/modular_citadel/sound/vox/pal.ogg b/modular_citadel/sound/vox/pal.ogg new file mode 100644 index 0000000000..185a15a6ac Binary files /dev/null and b/modular_citadel/sound/vox/pal.ogg differ diff --git a/modular_citadel/sound/vox/panel.ogg b/modular_citadel/sound/vox/panel.ogg new file mode 100644 index 0000000000..e200e9ddd9 Binary files /dev/null and b/modular_citadel/sound/vox/panel.ogg differ diff --git a/modular_citadel/sound/vox/percent.ogg b/modular_citadel/sound/vox/percent.ogg new file mode 100644 index 0000000000..43c04572ba Binary files /dev/null and b/modular_citadel/sound/vox/percent.ogg differ diff --git a/modular_citadel/sound/vox/perimeter.ogg b/modular_citadel/sound/vox/perimeter.ogg new file mode 100644 index 0000000000..7bd3f039ef Binary files /dev/null and b/modular_citadel/sound/vox/perimeter.ogg differ diff --git a/modular_citadel/sound/vox/period.ogg b/modular_citadel/sound/vox/period.ogg new file mode 100644 index 0000000000..e333dc159b Binary files /dev/null and b/modular_citadel/sound/vox/period.ogg differ diff --git a/modular_citadel/sound/vox/permitted.ogg b/modular_citadel/sound/vox/permitted.ogg new file mode 100644 index 0000000000..832fec7c24 Binary files /dev/null and b/modular_citadel/sound/vox/permitted.ogg differ diff --git a/modular_citadel/sound/vox/personnel.ogg b/modular_citadel/sound/vox/personnel.ogg new file mode 100644 index 0000000000..f499fb9f1d Binary files /dev/null and b/modular_citadel/sound/vox/personnel.ogg differ diff --git a/modular_citadel/sound/vox/pipe.ogg b/modular_citadel/sound/vox/pipe.ogg new file mode 100644 index 0000000000..63ab07e4cb Binary files /dev/null and b/modular_citadel/sound/vox/pipe.ogg differ diff --git a/modular_citadel/sound/vox/plant.ogg b/modular_citadel/sound/vox/plant.ogg new file mode 100644 index 0000000000..d82d73900d Binary files /dev/null and b/modular_citadel/sound/vox/plant.ogg differ diff --git a/modular_citadel/sound/vox/platform.ogg b/modular_citadel/sound/vox/platform.ogg new file mode 100644 index 0000000000..cf9eb6ce53 Binary files /dev/null and b/modular_citadel/sound/vox/platform.ogg differ diff --git a/modular_citadel/sound/vox/please.ogg b/modular_citadel/sound/vox/please.ogg new file mode 100644 index 0000000000..cc21919798 Binary files /dev/null and b/modular_citadel/sound/vox/please.ogg differ diff --git a/modular_citadel/sound/vox/point.ogg b/modular_citadel/sound/vox/point.ogg new file mode 100644 index 0000000000..29925c714c Binary files /dev/null and b/modular_citadel/sound/vox/point.ogg differ diff --git a/modular_citadel/sound/vox/portal.ogg b/modular_citadel/sound/vox/portal.ogg new file mode 100644 index 0000000000..4492842d97 Binary files /dev/null and b/modular_citadel/sound/vox/portal.ogg differ diff --git a/modular_citadel/sound/vox/power.ogg b/modular_citadel/sound/vox/power.ogg new file mode 100644 index 0000000000..109dde7b19 Binary files /dev/null and b/modular_citadel/sound/vox/power.ogg differ diff --git a/modular_citadel/sound/vox/presence.ogg b/modular_citadel/sound/vox/presence.ogg new file mode 100644 index 0000000000..fc929ee991 Binary files /dev/null and b/modular_citadel/sound/vox/presence.ogg differ diff --git a/modular_citadel/sound/vox/press.ogg b/modular_citadel/sound/vox/press.ogg new file mode 100644 index 0000000000..704c907141 Binary files /dev/null and b/modular_citadel/sound/vox/press.ogg differ diff --git a/modular_citadel/sound/vox/primary.ogg b/modular_citadel/sound/vox/primary.ogg new file mode 100644 index 0000000000..6f667e6a57 Binary files /dev/null and b/modular_citadel/sound/vox/primary.ogg differ diff --git a/modular_citadel/sound/vox/proceed.ogg b/modular_citadel/sound/vox/proceed.ogg new file mode 100644 index 0000000000..86df9fcf25 Binary files /dev/null and b/modular_citadel/sound/vox/proceed.ogg differ diff --git a/modular_citadel/sound/vox/processing.ogg b/modular_citadel/sound/vox/processing.ogg new file mode 100644 index 0000000000..f5aae3574c Binary files /dev/null and b/modular_citadel/sound/vox/processing.ogg differ diff --git a/modular_citadel/sound/vox/progress.ogg b/modular_citadel/sound/vox/progress.ogg new file mode 100644 index 0000000000..c07c102a97 Binary files /dev/null and b/modular_citadel/sound/vox/progress.ogg differ diff --git a/modular_citadel/sound/vox/proper.ogg b/modular_citadel/sound/vox/proper.ogg new file mode 100644 index 0000000000..0dbfbaf599 Binary files /dev/null and b/modular_citadel/sound/vox/proper.ogg differ diff --git a/modular_citadel/sound/vox/propulsion.ogg b/modular_citadel/sound/vox/propulsion.ogg new file mode 100644 index 0000000000..8a4a77274a Binary files /dev/null and b/modular_citadel/sound/vox/propulsion.ogg differ diff --git a/modular_citadel/sound/vox/prosecute.ogg b/modular_citadel/sound/vox/prosecute.ogg new file mode 100644 index 0000000000..c0895c54ef Binary files /dev/null and b/modular_citadel/sound/vox/prosecute.ogg differ diff --git a/modular_citadel/sound/vox/protective.ogg b/modular_citadel/sound/vox/protective.ogg new file mode 100644 index 0000000000..67c1f1195b Binary files /dev/null and b/modular_citadel/sound/vox/protective.ogg differ diff --git a/modular_citadel/sound/vox/push.ogg b/modular_citadel/sound/vox/push.ogg new file mode 100644 index 0000000000..2d9cfca1f7 Binary files /dev/null and b/modular_citadel/sound/vox/push.ogg differ diff --git a/modular_citadel/sound/vox/quantum.ogg b/modular_citadel/sound/vox/quantum.ogg new file mode 100644 index 0000000000..5082f84e7d Binary files /dev/null and b/modular_citadel/sound/vox/quantum.ogg differ diff --git a/modular_citadel/sound/vox/quebec.ogg b/modular_citadel/sound/vox/quebec.ogg new file mode 100644 index 0000000000..59e84cd4a3 Binary files /dev/null and b/modular_citadel/sound/vox/quebec.ogg differ diff --git a/modular_citadel/sound/vox/question.ogg b/modular_citadel/sound/vox/question.ogg new file mode 100644 index 0000000000..197f11ca9a Binary files /dev/null and b/modular_citadel/sound/vox/question.ogg differ diff --git a/modular_citadel/sound/vox/questioning.ogg b/modular_citadel/sound/vox/questioning.ogg new file mode 100644 index 0000000000..ba0436cf32 Binary files /dev/null and b/modular_citadel/sound/vox/questioning.ogg differ diff --git a/modular_citadel/sound/vox/quick.ogg b/modular_citadel/sound/vox/quick.ogg new file mode 100644 index 0000000000..19d4e91261 Binary files /dev/null and b/modular_citadel/sound/vox/quick.ogg differ diff --git a/modular_citadel/sound/vox/quit.ogg b/modular_citadel/sound/vox/quit.ogg new file mode 100644 index 0000000000..7ab07efa87 Binary files /dev/null and b/modular_citadel/sound/vox/quit.ogg differ diff --git a/modular_citadel/sound/vox/radiation.ogg b/modular_citadel/sound/vox/radiation.ogg new file mode 100644 index 0000000000..8d8fbdc001 Binary files /dev/null and b/modular_citadel/sound/vox/radiation.ogg differ diff --git a/modular_citadel/sound/vox/radioactive.ogg b/modular_citadel/sound/vox/radioactive.ogg new file mode 100644 index 0000000000..f5751882d4 Binary files /dev/null and b/modular_citadel/sound/vox/radioactive.ogg differ diff --git a/modular_citadel/sound/vox/rads.ogg b/modular_citadel/sound/vox/rads.ogg new file mode 100644 index 0000000000..e42722dd62 Binary files /dev/null and b/modular_citadel/sound/vox/rads.ogg differ diff --git a/modular_citadel/sound/vox/rapid.ogg b/modular_citadel/sound/vox/rapid.ogg new file mode 100644 index 0000000000..c803204bc8 Binary files /dev/null and b/modular_citadel/sound/vox/rapid.ogg differ diff --git a/modular_citadel/sound/vox/reach.ogg b/modular_citadel/sound/vox/reach.ogg new file mode 100644 index 0000000000..ab1a02e9ee Binary files /dev/null and b/modular_citadel/sound/vox/reach.ogg differ diff --git a/modular_citadel/sound/vox/reached.ogg b/modular_citadel/sound/vox/reached.ogg new file mode 100644 index 0000000000..eddba60eed Binary files /dev/null and b/modular_citadel/sound/vox/reached.ogg differ diff --git a/modular_citadel/sound/vox/reactor.ogg b/modular_citadel/sound/vox/reactor.ogg new file mode 100644 index 0000000000..75ea481a37 Binary files /dev/null and b/modular_citadel/sound/vox/reactor.ogg differ diff --git a/modular_citadel/sound/vox/red.ogg b/modular_citadel/sound/vox/red.ogg new file mode 100644 index 0000000000..97f2513772 Binary files /dev/null and b/modular_citadel/sound/vox/red.ogg differ diff --git a/modular_citadel/sound/vox/relay.ogg b/modular_citadel/sound/vox/relay.ogg new file mode 100644 index 0000000000..edc904c3f4 Binary files /dev/null and b/modular_citadel/sound/vox/relay.ogg differ diff --git a/modular_citadel/sound/vox/released.ogg b/modular_citadel/sound/vox/released.ogg new file mode 100644 index 0000000000..b86a39af72 Binary files /dev/null and b/modular_citadel/sound/vox/released.ogg differ diff --git a/modular_citadel/sound/vox/remaining.ogg b/modular_citadel/sound/vox/remaining.ogg new file mode 100644 index 0000000000..3ca55d3373 Binary files /dev/null and b/modular_citadel/sound/vox/remaining.ogg differ diff --git a/modular_citadel/sound/vox/renegade.ogg b/modular_citadel/sound/vox/renegade.ogg new file mode 100644 index 0000000000..6a4a3f3d50 Binary files /dev/null and b/modular_citadel/sound/vox/renegade.ogg differ diff --git a/modular_citadel/sound/vox/repair.ogg b/modular_citadel/sound/vox/repair.ogg new file mode 100644 index 0000000000..9435fe2ade Binary files /dev/null and b/modular_citadel/sound/vox/repair.ogg differ diff --git a/modular_citadel/sound/vox/report.ogg b/modular_citadel/sound/vox/report.ogg new file mode 100644 index 0000000000..873ad6cbfe Binary files /dev/null and b/modular_citadel/sound/vox/report.ogg differ diff --git a/modular_citadel/sound/vox/reports.ogg b/modular_citadel/sound/vox/reports.ogg new file mode 100644 index 0000000000..2fbf3151d0 Binary files /dev/null and b/modular_citadel/sound/vox/reports.ogg differ diff --git a/modular_citadel/sound/vox/required.ogg b/modular_citadel/sound/vox/required.ogg new file mode 100644 index 0000000000..902071124c Binary files /dev/null and b/modular_citadel/sound/vox/required.ogg differ diff --git a/modular_citadel/sound/vox/research.ogg b/modular_citadel/sound/vox/research.ogg new file mode 100644 index 0000000000..c75b2ad2d0 Binary files /dev/null and b/modular_citadel/sound/vox/research.ogg differ diff --git a/modular_citadel/sound/vox/reset.ogg b/modular_citadel/sound/vox/reset.ogg new file mode 100644 index 0000000000..9864b79a54 Binary files /dev/null and b/modular_citadel/sound/vox/reset.ogg differ diff --git a/modular_citadel/sound/vox/resevoir.ogg b/modular_citadel/sound/vox/resevoir.ogg new file mode 100644 index 0000000000..30364c6400 Binary files /dev/null and b/modular_citadel/sound/vox/resevoir.ogg differ diff --git a/modular_citadel/sound/vox/resistance.ogg b/modular_citadel/sound/vox/resistance.ogg new file mode 100644 index 0000000000..dfbe6c512d Binary files /dev/null and b/modular_citadel/sound/vox/resistance.ogg differ diff --git a/modular_citadel/sound/vox/returned.ogg b/modular_citadel/sound/vox/returned.ogg new file mode 100644 index 0000000000..0119402e24 Binary files /dev/null and b/modular_citadel/sound/vox/returned.ogg differ diff --git a/modular_citadel/sound/vox/right.ogg b/modular_citadel/sound/vox/right.ogg new file mode 100644 index 0000000000..b46b8cb135 Binary files /dev/null and b/modular_citadel/sound/vox/right.ogg differ diff --git a/modular_citadel/sound/vox/rocket.ogg b/modular_citadel/sound/vox/rocket.ogg new file mode 100644 index 0000000000..bfb2d3b0ed Binary files /dev/null and b/modular_citadel/sound/vox/rocket.ogg differ diff --git a/modular_citadel/sound/vox/roger.ogg b/modular_citadel/sound/vox/roger.ogg new file mode 100644 index 0000000000..b249613c56 Binary files /dev/null and b/modular_citadel/sound/vox/roger.ogg differ diff --git a/modular_citadel/sound/vox/romeo.ogg b/modular_citadel/sound/vox/romeo.ogg new file mode 100644 index 0000000000..4c0b2356e3 Binary files /dev/null and b/modular_citadel/sound/vox/romeo.ogg differ diff --git a/modular_citadel/sound/vox/room.ogg b/modular_citadel/sound/vox/room.ogg new file mode 100644 index 0000000000..5151e39d46 Binary files /dev/null and b/modular_citadel/sound/vox/room.ogg differ diff --git a/modular_citadel/sound/vox/round.ogg b/modular_citadel/sound/vox/round.ogg new file mode 100644 index 0000000000..685f42d223 Binary files /dev/null and b/modular_citadel/sound/vox/round.ogg differ diff --git a/modular_citadel/sound/vox/run.ogg b/modular_citadel/sound/vox/run.ogg new file mode 100644 index 0000000000..9d6012cf3b Binary files /dev/null and b/modular_citadel/sound/vox/run.ogg differ diff --git a/modular_citadel/sound/vox/safe.ogg b/modular_citadel/sound/vox/safe.ogg new file mode 100644 index 0000000000..d7a16d66b4 Binary files /dev/null and b/modular_citadel/sound/vox/safe.ogg differ diff --git a/modular_citadel/sound/vox/safety.ogg b/modular_citadel/sound/vox/safety.ogg new file mode 100644 index 0000000000..68ad663df4 Binary files /dev/null and b/modular_citadel/sound/vox/safety.ogg differ diff --git a/modular_citadel/sound/vox/sargeant.ogg b/modular_citadel/sound/vox/sargeant.ogg new file mode 100644 index 0000000000..1ab4150c9c Binary files /dev/null and b/modular_citadel/sound/vox/sargeant.ogg differ diff --git a/modular_citadel/sound/vox/satellite.ogg b/modular_citadel/sound/vox/satellite.ogg new file mode 100644 index 0000000000..c07895ab77 Binary files /dev/null and b/modular_citadel/sound/vox/satellite.ogg differ diff --git a/modular_citadel/sound/vox/save.ogg b/modular_citadel/sound/vox/save.ogg new file mode 100644 index 0000000000..8a53055d62 Binary files /dev/null and b/modular_citadel/sound/vox/save.ogg differ diff --git a/modular_citadel/sound/vox/science.ogg b/modular_citadel/sound/vox/science.ogg new file mode 100644 index 0000000000..6e2e748cbb Binary files /dev/null and b/modular_citadel/sound/vox/science.ogg differ diff --git a/modular_citadel/sound/vox/scores.ogg b/modular_citadel/sound/vox/scores.ogg new file mode 100644 index 0000000000..3328f38dc7 Binary files /dev/null and b/modular_citadel/sound/vox/scores.ogg differ diff --git a/modular_citadel/sound/vox/scream.ogg b/modular_citadel/sound/vox/scream.ogg new file mode 100644 index 0000000000..c795ca95ba Binary files /dev/null and b/modular_citadel/sound/vox/scream.ogg differ diff --git a/modular_citadel/sound/vox/screen.ogg b/modular_citadel/sound/vox/screen.ogg new file mode 100644 index 0000000000..514cc3f71a Binary files /dev/null and b/modular_citadel/sound/vox/screen.ogg differ diff --git a/modular_citadel/sound/vox/search.ogg b/modular_citadel/sound/vox/search.ogg new file mode 100644 index 0000000000..638710b721 Binary files /dev/null and b/modular_citadel/sound/vox/search.ogg differ diff --git a/modular_citadel/sound/vox/second.ogg b/modular_citadel/sound/vox/second.ogg new file mode 100644 index 0000000000..fc4dc806ca Binary files /dev/null and b/modular_citadel/sound/vox/second.ogg differ diff --git a/modular_citadel/sound/vox/secondary.ogg b/modular_citadel/sound/vox/secondary.ogg new file mode 100644 index 0000000000..3cffa3dbe9 Binary files /dev/null and b/modular_citadel/sound/vox/secondary.ogg differ diff --git a/modular_citadel/sound/vox/seconds.ogg b/modular_citadel/sound/vox/seconds.ogg new file mode 100644 index 0000000000..98d08be46c Binary files /dev/null and b/modular_citadel/sound/vox/seconds.ogg differ diff --git a/modular_citadel/sound/vox/sector.ogg b/modular_citadel/sound/vox/sector.ogg new file mode 100644 index 0000000000..ae2d733b87 Binary files /dev/null and b/modular_citadel/sound/vox/sector.ogg differ diff --git a/modular_citadel/sound/vox/secure.ogg b/modular_citadel/sound/vox/secure.ogg new file mode 100644 index 0000000000..c860e376dd Binary files /dev/null and b/modular_citadel/sound/vox/secure.ogg differ diff --git a/modular_citadel/sound/vox/secured.ogg b/modular_citadel/sound/vox/secured.ogg new file mode 100644 index 0000000000..3134b679fa Binary files /dev/null and b/modular_citadel/sound/vox/secured.ogg differ diff --git a/modular_citadel/sound/vox/security.ogg b/modular_citadel/sound/vox/security.ogg new file mode 100644 index 0000000000..40f6bc61af Binary files /dev/null and b/modular_citadel/sound/vox/security.ogg differ diff --git a/modular_citadel/sound/vox/select.ogg b/modular_citadel/sound/vox/select.ogg new file mode 100644 index 0000000000..ef04570d32 Binary files /dev/null and b/modular_citadel/sound/vox/select.ogg differ diff --git a/modular_citadel/sound/vox/selected.ogg b/modular_citadel/sound/vox/selected.ogg new file mode 100644 index 0000000000..23891f5189 Binary files /dev/null and b/modular_citadel/sound/vox/selected.ogg differ diff --git a/modular_citadel/sound/vox/service.ogg b/modular_citadel/sound/vox/service.ogg new file mode 100644 index 0000000000..90294bd34b Binary files /dev/null and b/modular_citadel/sound/vox/service.ogg differ diff --git a/modular_citadel/sound/vox/seven.ogg b/modular_citadel/sound/vox/seven.ogg new file mode 100644 index 0000000000..a0b2de4119 Binary files /dev/null and b/modular_citadel/sound/vox/seven.ogg differ diff --git a/modular_citadel/sound/vox/seventeen.ogg b/modular_citadel/sound/vox/seventeen.ogg new file mode 100644 index 0000000000..f23a0b0572 Binary files /dev/null and b/modular_citadel/sound/vox/seventeen.ogg differ diff --git a/modular_citadel/sound/vox/seventy.ogg b/modular_citadel/sound/vox/seventy.ogg new file mode 100644 index 0000000000..54f6cd6aef Binary files /dev/null and b/modular_citadel/sound/vox/seventy.ogg differ diff --git a/modular_citadel/sound/vox/severe.ogg b/modular_citadel/sound/vox/severe.ogg new file mode 100644 index 0000000000..9a0cf3784e Binary files /dev/null and b/modular_citadel/sound/vox/severe.ogg differ diff --git a/modular_citadel/sound/vox/sewage.ogg b/modular_citadel/sound/vox/sewage.ogg new file mode 100644 index 0000000000..44fb0d7fd5 Binary files /dev/null and b/modular_citadel/sound/vox/sewage.ogg differ diff --git a/modular_citadel/sound/vox/sewer.ogg b/modular_citadel/sound/vox/sewer.ogg new file mode 100644 index 0000000000..10516d86de Binary files /dev/null and b/modular_citadel/sound/vox/sewer.ogg differ diff --git a/modular_citadel/sound/vox/shield.ogg b/modular_citadel/sound/vox/shield.ogg new file mode 100644 index 0000000000..c190383867 Binary files /dev/null and b/modular_citadel/sound/vox/shield.ogg differ diff --git a/modular_citadel/sound/vox/shipment.ogg b/modular_citadel/sound/vox/shipment.ogg new file mode 100644 index 0000000000..9677d3db98 Binary files /dev/null and b/modular_citadel/sound/vox/shipment.ogg differ diff --git a/modular_citadel/sound/vox/shock.ogg b/modular_citadel/sound/vox/shock.ogg new file mode 100644 index 0000000000..1c44bcca33 Binary files /dev/null and b/modular_citadel/sound/vox/shock.ogg differ diff --git a/modular_citadel/sound/vox/shoot.ogg b/modular_citadel/sound/vox/shoot.ogg new file mode 100644 index 0000000000..978a4aaa35 Binary files /dev/null and b/modular_citadel/sound/vox/shoot.ogg differ diff --git a/modular_citadel/sound/vox/shower.ogg b/modular_citadel/sound/vox/shower.ogg new file mode 100644 index 0000000000..d131987f13 Binary files /dev/null and b/modular_citadel/sound/vox/shower.ogg differ diff --git a/modular_citadel/sound/vox/shut.ogg b/modular_citadel/sound/vox/shut.ogg new file mode 100644 index 0000000000..ceba400b93 Binary files /dev/null and b/modular_citadel/sound/vox/shut.ogg differ diff --git a/modular_citadel/sound/vox/side.ogg b/modular_citadel/sound/vox/side.ogg new file mode 100644 index 0000000000..dbc3a7c9ff Binary files /dev/null and b/modular_citadel/sound/vox/side.ogg differ diff --git a/modular_citadel/sound/vox/sierra.ogg b/modular_citadel/sound/vox/sierra.ogg new file mode 100644 index 0000000000..5c33745f28 Binary files /dev/null and b/modular_citadel/sound/vox/sierra.ogg differ diff --git a/modular_citadel/sound/vox/sight.ogg b/modular_citadel/sound/vox/sight.ogg new file mode 100644 index 0000000000..027c356b8d Binary files /dev/null and b/modular_citadel/sound/vox/sight.ogg differ diff --git a/modular_citadel/sound/vox/silo.ogg b/modular_citadel/sound/vox/silo.ogg new file mode 100644 index 0000000000..3e0801f8ba Binary files /dev/null and b/modular_citadel/sound/vox/silo.ogg differ diff --git a/modular_citadel/sound/vox/six.ogg b/modular_citadel/sound/vox/six.ogg new file mode 100644 index 0000000000..3544814963 Binary files /dev/null and b/modular_citadel/sound/vox/six.ogg differ diff --git a/modular_citadel/sound/vox/sixteen.ogg b/modular_citadel/sound/vox/sixteen.ogg new file mode 100644 index 0000000000..8c1159e147 Binary files /dev/null and b/modular_citadel/sound/vox/sixteen.ogg differ diff --git a/modular_citadel/sound/vox/sixty.ogg b/modular_citadel/sound/vox/sixty.ogg new file mode 100644 index 0000000000..bdf47b25b8 Binary files /dev/null and b/modular_citadel/sound/vox/sixty.ogg differ diff --git a/modular_citadel/sound/vox/slime.ogg b/modular_citadel/sound/vox/slime.ogg new file mode 100644 index 0000000000..0a6c1254e8 Binary files /dev/null and b/modular_citadel/sound/vox/slime.ogg differ diff --git a/modular_citadel/sound/vox/slow.ogg b/modular_citadel/sound/vox/slow.ogg new file mode 100644 index 0000000000..7639f9c7c2 Binary files /dev/null and b/modular_citadel/sound/vox/slow.ogg differ diff --git a/modular_citadel/sound/vox/soldier.ogg b/modular_citadel/sound/vox/soldier.ogg new file mode 100644 index 0000000000..3eb10ff590 Binary files /dev/null and b/modular_citadel/sound/vox/soldier.ogg differ diff --git a/modular_citadel/sound/vox/some.ogg b/modular_citadel/sound/vox/some.ogg new file mode 100644 index 0000000000..bcb5bbbbd3 Binary files /dev/null and b/modular_citadel/sound/vox/some.ogg differ diff --git a/modular_citadel/sound/vox/someone.ogg b/modular_citadel/sound/vox/someone.ogg new file mode 100644 index 0000000000..420a58e925 Binary files /dev/null and b/modular_citadel/sound/vox/someone.ogg differ diff --git a/modular_citadel/sound/vox/something.ogg b/modular_citadel/sound/vox/something.ogg new file mode 100644 index 0000000000..e3d26ede65 Binary files /dev/null and b/modular_citadel/sound/vox/something.ogg differ diff --git a/modular_citadel/sound/vox/son.ogg b/modular_citadel/sound/vox/son.ogg new file mode 100644 index 0000000000..843536c84a Binary files /dev/null and b/modular_citadel/sound/vox/son.ogg differ diff --git a/modular_citadel/sound/vox/sorry.ogg b/modular_citadel/sound/vox/sorry.ogg new file mode 100644 index 0000000000..c125765112 Binary files /dev/null and b/modular_citadel/sound/vox/sorry.ogg differ diff --git a/modular_citadel/sound/vox/south.ogg b/modular_citadel/sound/vox/south.ogg new file mode 100644 index 0000000000..d32f048772 Binary files /dev/null and b/modular_citadel/sound/vox/south.ogg differ diff --git a/modular_citadel/sound/vox/squad.ogg b/modular_citadel/sound/vox/squad.ogg new file mode 100644 index 0000000000..582f6459af Binary files /dev/null and b/modular_citadel/sound/vox/squad.ogg differ diff --git a/modular_citadel/sound/vox/square.ogg b/modular_citadel/sound/vox/square.ogg new file mode 100644 index 0000000000..a9beddd3c9 Binary files /dev/null and b/modular_citadel/sound/vox/square.ogg differ diff --git a/modular_citadel/sound/vox/stairway.ogg b/modular_citadel/sound/vox/stairway.ogg new file mode 100644 index 0000000000..31b0042edd Binary files /dev/null and b/modular_citadel/sound/vox/stairway.ogg differ diff --git a/modular_citadel/sound/vox/status.ogg b/modular_citadel/sound/vox/status.ogg new file mode 100644 index 0000000000..611088f19a Binary files /dev/null and b/modular_citadel/sound/vox/status.ogg differ diff --git a/modular_citadel/sound/vox/sterile.ogg b/modular_citadel/sound/vox/sterile.ogg new file mode 100644 index 0000000000..4e4d9fad22 Binary files /dev/null and b/modular_citadel/sound/vox/sterile.ogg differ diff --git a/modular_citadel/sound/vox/sterilization.ogg b/modular_citadel/sound/vox/sterilization.ogg new file mode 100644 index 0000000000..fec2104d0b Binary files /dev/null and b/modular_citadel/sound/vox/sterilization.ogg differ diff --git a/modular_citadel/sound/vox/stolen.ogg b/modular_citadel/sound/vox/stolen.ogg new file mode 100644 index 0000000000..7e8c624bdf Binary files /dev/null and b/modular_citadel/sound/vox/stolen.ogg differ diff --git a/modular_citadel/sound/vox/storage.ogg b/modular_citadel/sound/vox/storage.ogg new file mode 100644 index 0000000000..e47ef4e09f Binary files /dev/null and b/modular_citadel/sound/vox/storage.ogg differ diff --git a/modular_citadel/sound/vox/sub.ogg b/modular_citadel/sound/vox/sub.ogg new file mode 100644 index 0000000000..ca9a621ad1 Binary files /dev/null and b/modular_citadel/sound/vox/sub.ogg differ diff --git a/modular_citadel/sound/vox/subsurface.ogg b/modular_citadel/sound/vox/subsurface.ogg new file mode 100644 index 0000000000..08c98d50f5 Binary files /dev/null and b/modular_citadel/sound/vox/subsurface.ogg differ diff --git a/modular_citadel/sound/vox/sudden.ogg b/modular_citadel/sound/vox/sudden.ogg new file mode 100644 index 0000000000..7140e0f874 Binary files /dev/null and b/modular_citadel/sound/vox/sudden.ogg differ diff --git a/modular_citadel/sound/vox/suit.ogg b/modular_citadel/sound/vox/suit.ogg new file mode 100644 index 0000000000..c636d5f278 Binary files /dev/null and b/modular_citadel/sound/vox/suit.ogg differ diff --git a/modular_citadel/sound/vox/superconducting.ogg b/modular_citadel/sound/vox/superconducting.ogg new file mode 100644 index 0000000000..244bda01c6 Binary files /dev/null and b/modular_citadel/sound/vox/superconducting.ogg differ diff --git a/modular_citadel/sound/vox/supercooled.ogg b/modular_citadel/sound/vox/supercooled.ogg new file mode 100644 index 0000000000..c758cdf7f8 Binary files /dev/null and b/modular_citadel/sound/vox/supercooled.ogg differ diff --git a/modular_citadel/sound/vox/supply.ogg b/modular_citadel/sound/vox/supply.ogg new file mode 100644 index 0000000000..13341124b3 Binary files /dev/null and b/modular_citadel/sound/vox/supply.ogg differ diff --git a/modular_citadel/sound/vox/surface.ogg b/modular_citadel/sound/vox/surface.ogg new file mode 100644 index 0000000000..f498cfd6bd Binary files /dev/null and b/modular_citadel/sound/vox/surface.ogg differ diff --git a/modular_citadel/sound/vox/surrender.ogg b/modular_citadel/sound/vox/surrender.ogg new file mode 100644 index 0000000000..ba1864d38f Binary files /dev/null and b/modular_citadel/sound/vox/surrender.ogg differ diff --git a/modular_citadel/sound/vox/surround.ogg b/modular_citadel/sound/vox/surround.ogg new file mode 100644 index 0000000000..7a3ab9a69a Binary files /dev/null and b/modular_citadel/sound/vox/surround.ogg differ diff --git a/modular_citadel/sound/vox/surrounded.ogg b/modular_citadel/sound/vox/surrounded.ogg new file mode 100644 index 0000000000..464ae912f4 Binary files /dev/null and b/modular_citadel/sound/vox/surrounded.ogg differ diff --git a/modular_citadel/sound/vox/switch.ogg b/modular_citadel/sound/vox/switch.ogg new file mode 100644 index 0000000000..d007893d35 Binary files /dev/null and b/modular_citadel/sound/vox/switch.ogg differ diff --git a/modular_citadel/sound/vox/system.ogg b/modular_citadel/sound/vox/system.ogg new file mode 100644 index 0000000000..fb459b927f Binary files /dev/null and b/modular_citadel/sound/vox/system.ogg differ diff --git a/modular_citadel/sound/vox/systems.ogg b/modular_citadel/sound/vox/systems.ogg new file mode 100644 index 0000000000..37072c97f4 Binary files /dev/null and b/modular_citadel/sound/vox/systems.ogg differ diff --git a/modular_citadel/sound/vox/tactical.ogg b/modular_citadel/sound/vox/tactical.ogg new file mode 100644 index 0000000000..ae294b916b Binary files /dev/null and b/modular_citadel/sound/vox/tactical.ogg differ diff --git a/modular_citadel/sound/vox/take.ogg b/modular_citadel/sound/vox/take.ogg new file mode 100644 index 0000000000..83409da4a3 Binary files /dev/null and b/modular_citadel/sound/vox/take.ogg differ diff --git a/modular_citadel/sound/vox/talk.ogg b/modular_citadel/sound/vox/talk.ogg new file mode 100644 index 0000000000..043385c389 Binary files /dev/null and b/modular_citadel/sound/vox/talk.ogg differ diff --git a/modular_citadel/sound/vox/tango.ogg b/modular_citadel/sound/vox/tango.ogg new file mode 100644 index 0000000000..f852cb0df3 Binary files /dev/null and b/modular_citadel/sound/vox/tango.ogg differ diff --git a/modular_citadel/sound/vox/tank.ogg b/modular_citadel/sound/vox/tank.ogg new file mode 100644 index 0000000000..df09c12f98 Binary files /dev/null and b/modular_citadel/sound/vox/tank.ogg differ diff --git a/modular_citadel/sound/vox/target.ogg b/modular_citadel/sound/vox/target.ogg new file mode 100644 index 0000000000..0601cac45b Binary files /dev/null and b/modular_citadel/sound/vox/target.ogg differ diff --git a/modular_citadel/sound/vox/team.ogg b/modular_citadel/sound/vox/team.ogg new file mode 100644 index 0000000000..4fc1a7f198 Binary files /dev/null and b/modular_citadel/sound/vox/team.ogg differ diff --git a/modular_citadel/sound/vox/temperature.ogg b/modular_citadel/sound/vox/temperature.ogg new file mode 100644 index 0000000000..d7b92a0cdc Binary files /dev/null and b/modular_citadel/sound/vox/temperature.ogg differ diff --git a/modular_citadel/sound/vox/temporal.ogg b/modular_citadel/sound/vox/temporal.ogg new file mode 100644 index 0000000000..c2f9aedb48 Binary files /dev/null and b/modular_citadel/sound/vox/temporal.ogg differ diff --git a/modular_citadel/sound/vox/ten.ogg b/modular_citadel/sound/vox/ten.ogg new file mode 100644 index 0000000000..704d38c1ae Binary files /dev/null and b/modular_citadel/sound/vox/ten.ogg differ diff --git a/modular_citadel/sound/vox/terminal.ogg b/modular_citadel/sound/vox/terminal.ogg new file mode 100644 index 0000000000..f756e03064 Binary files /dev/null and b/modular_citadel/sound/vox/terminal.ogg differ diff --git a/modular_citadel/sound/vox/terminated.ogg b/modular_citadel/sound/vox/terminated.ogg new file mode 100644 index 0000000000..52d35451b0 Binary files /dev/null and b/modular_citadel/sound/vox/terminated.ogg differ diff --git a/modular_citadel/sound/vox/termination.ogg b/modular_citadel/sound/vox/termination.ogg new file mode 100644 index 0000000000..aec4df5b01 Binary files /dev/null and b/modular_citadel/sound/vox/termination.ogg differ diff --git a/modular_citadel/sound/vox/test.ogg b/modular_citadel/sound/vox/test.ogg new file mode 100644 index 0000000000..df3ab175c6 Binary files /dev/null and b/modular_citadel/sound/vox/test.ogg differ diff --git a/modular_citadel/sound/vox/that.ogg b/modular_citadel/sound/vox/that.ogg new file mode 100644 index 0000000000..442dc3d264 Binary files /dev/null and b/modular_citadel/sound/vox/that.ogg differ diff --git a/modular_citadel/sound/vox/the.ogg b/modular_citadel/sound/vox/the.ogg new file mode 100644 index 0000000000..71caecef1f Binary files /dev/null and b/modular_citadel/sound/vox/the.ogg differ diff --git a/modular_citadel/sound/vox/then.ogg b/modular_citadel/sound/vox/then.ogg new file mode 100644 index 0000000000..916d9276af Binary files /dev/null and b/modular_citadel/sound/vox/then.ogg differ diff --git a/modular_citadel/sound/vox/there.ogg b/modular_citadel/sound/vox/there.ogg new file mode 100644 index 0000000000..c3536a2f72 Binary files /dev/null and b/modular_citadel/sound/vox/there.ogg differ diff --git a/modular_citadel/sound/vox/third.ogg b/modular_citadel/sound/vox/third.ogg new file mode 100644 index 0000000000..ba1125fe5b Binary files /dev/null and b/modular_citadel/sound/vox/third.ogg differ diff --git a/modular_citadel/sound/vox/thirteen.ogg b/modular_citadel/sound/vox/thirteen.ogg new file mode 100644 index 0000000000..b3585a2d3b Binary files /dev/null and b/modular_citadel/sound/vox/thirteen.ogg differ diff --git a/modular_citadel/sound/vox/thirty.ogg b/modular_citadel/sound/vox/thirty.ogg new file mode 100644 index 0000000000..cac0402265 Binary files /dev/null and b/modular_citadel/sound/vox/thirty.ogg differ diff --git a/modular_citadel/sound/vox/this.ogg b/modular_citadel/sound/vox/this.ogg new file mode 100644 index 0000000000..e7acd16108 Binary files /dev/null and b/modular_citadel/sound/vox/this.ogg differ diff --git a/modular_citadel/sound/vox/those.ogg b/modular_citadel/sound/vox/those.ogg new file mode 100644 index 0000000000..149a806b23 Binary files /dev/null and b/modular_citadel/sound/vox/those.ogg differ diff --git a/modular_citadel/sound/vox/thousand.ogg b/modular_citadel/sound/vox/thousand.ogg new file mode 100644 index 0000000000..fd5d46bf9b Binary files /dev/null and b/modular_citadel/sound/vox/thousand.ogg differ diff --git a/modular_citadel/sound/vox/threat.ogg b/modular_citadel/sound/vox/threat.ogg new file mode 100644 index 0000000000..d4aa8d1d13 Binary files /dev/null and b/modular_citadel/sound/vox/threat.ogg differ diff --git a/modular_citadel/sound/vox/three.ogg b/modular_citadel/sound/vox/three.ogg new file mode 100644 index 0000000000..72bab5ff6b Binary files /dev/null and b/modular_citadel/sound/vox/three.ogg differ diff --git a/modular_citadel/sound/vox/through.ogg b/modular_citadel/sound/vox/through.ogg new file mode 100644 index 0000000000..9f527f38c7 Binary files /dev/null and b/modular_citadel/sound/vox/through.ogg differ diff --git a/modular_citadel/sound/vox/time.ogg b/modular_citadel/sound/vox/time.ogg new file mode 100644 index 0000000000..ff32baa603 Binary files /dev/null and b/modular_citadel/sound/vox/time.ogg differ diff --git a/modular_citadel/sound/vox/to.ogg b/modular_citadel/sound/vox/to.ogg new file mode 100644 index 0000000000..9e7f76c84d Binary files /dev/null and b/modular_citadel/sound/vox/to.ogg differ diff --git a/modular_citadel/sound/vox/top.ogg b/modular_citadel/sound/vox/top.ogg new file mode 100644 index 0000000000..bc6b0bce22 Binary files /dev/null and b/modular_citadel/sound/vox/top.ogg differ diff --git a/modular_citadel/sound/vox/topside.ogg b/modular_citadel/sound/vox/topside.ogg new file mode 100644 index 0000000000..34dfaf4405 Binary files /dev/null and b/modular_citadel/sound/vox/topside.ogg differ diff --git a/modular_citadel/sound/vox/touch.ogg b/modular_citadel/sound/vox/touch.ogg new file mode 100644 index 0000000000..fe34a1b083 Binary files /dev/null and b/modular_citadel/sound/vox/touch.ogg differ diff --git a/modular_citadel/sound/vox/towards.ogg b/modular_citadel/sound/vox/towards.ogg new file mode 100644 index 0000000000..edb2bf04d1 Binary files /dev/null and b/modular_citadel/sound/vox/towards.ogg differ diff --git a/modular_citadel/sound/vox/track.ogg b/modular_citadel/sound/vox/track.ogg new file mode 100644 index 0000000000..447d1f6982 Binary files /dev/null and b/modular_citadel/sound/vox/track.ogg differ diff --git a/modular_citadel/sound/vox/train.ogg b/modular_citadel/sound/vox/train.ogg new file mode 100644 index 0000000000..e4b78fe638 Binary files /dev/null and b/modular_citadel/sound/vox/train.ogg differ diff --git a/modular_citadel/sound/vox/transportation.ogg b/modular_citadel/sound/vox/transportation.ogg new file mode 100644 index 0000000000..78d2122ccb Binary files /dev/null and b/modular_citadel/sound/vox/transportation.ogg differ diff --git a/modular_citadel/sound/vox/truck.ogg b/modular_citadel/sound/vox/truck.ogg new file mode 100644 index 0000000000..5822f17d83 Binary files /dev/null and b/modular_citadel/sound/vox/truck.ogg differ diff --git a/modular_citadel/sound/vox/tunnel.ogg b/modular_citadel/sound/vox/tunnel.ogg new file mode 100644 index 0000000000..3264b41496 Binary files /dev/null and b/modular_citadel/sound/vox/tunnel.ogg differ diff --git a/modular_citadel/sound/vox/turn.ogg b/modular_citadel/sound/vox/turn.ogg new file mode 100644 index 0000000000..5a8a32cbd4 Binary files /dev/null and b/modular_citadel/sound/vox/turn.ogg differ diff --git a/modular_citadel/sound/vox/turret.ogg b/modular_citadel/sound/vox/turret.ogg new file mode 100644 index 0000000000..96d5bf6da9 Binary files /dev/null and b/modular_citadel/sound/vox/turret.ogg differ diff --git a/modular_citadel/sound/vox/twelve.ogg b/modular_citadel/sound/vox/twelve.ogg new file mode 100644 index 0000000000..2e45cf797d Binary files /dev/null and b/modular_citadel/sound/vox/twelve.ogg differ diff --git a/modular_citadel/sound/vox/twenty.ogg b/modular_citadel/sound/vox/twenty.ogg new file mode 100644 index 0000000000..c54922a384 Binary files /dev/null and b/modular_citadel/sound/vox/twenty.ogg differ diff --git a/modular_citadel/sound/vox/two.ogg b/modular_citadel/sound/vox/two.ogg new file mode 100644 index 0000000000..e1abe93d97 Binary files /dev/null and b/modular_citadel/sound/vox/two.ogg differ diff --git a/modular_citadel/sound/vox/unauthorized.ogg b/modular_citadel/sound/vox/unauthorized.ogg new file mode 100644 index 0000000000..2238e09696 Binary files /dev/null and b/modular_citadel/sound/vox/unauthorized.ogg differ diff --git a/modular_citadel/sound/vox/under.ogg b/modular_citadel/sound/vox/under.ogg new file mode 100644 index 0000000000..8445ce571a Binary files /dev/null and b/modular_citadel/sound/vox/under.ogg differ diff --git a/modular_citadel/sound/vox/uniform.ogg b/modular_citadel/sound/vox/uniform.ogg new file mode 100644 index 0000000000..6d3029ed7f Binary files /dev/null and b/modular_citadel/sound/vox/uniform.ogg differ diff --git a/modular_citadel/sound/vox/unlocked.ogg b/modular_citadel/sound/vox/unlocked.ogg new file mode 100644 index 0000000000..1f66ba7003 Binary files /dev/null and b/modular_citadel/sound/vox/unlocked.ogg differ diff --git a/modular_citadel/sound/vox/until.ogg b/modular_citadel/sound/vox/until.ogg new file mode 100644 index 0000000000..00e1417aaa Binary files /dev/null and b/modular_citadel/sound/vox/until.ogg differ diff --git a/modular_citadel/sound/vox/up.ogg b/modular_citadel/sound/vox/up.ogg new file mode 100644 index 0000000000..31d9dd13cc Binary files /dev/null and b/modular_citadel/sound/vox/up.ogg differ diff --git a/modular_citadel/sound/vox/upper.ogg b/modular_citadel/sound/vox/upper.ogg new file mode 100644 index 0000000000..c26d7450ed Binary files /dev/null and b/modular_citadel/sound/vox/upper.ogg differ diff --git a/modular_citadel/sound/vox/uranium.ogg b/modular_citadel/sound/vox/uranium.ogg new file mode 100644 index 0000000000..8eeed7b34e Binary files /dev/null and b/modular_citadel/sound/vox/uranium.ogg differ diff --git a/modular_citadel/sound/vox/us.ogg b/modular_citadel/sound/vox/us.ogg new file mode 100644 index 0000000000..1d0cc90667 Binary files /dev/null and b/modular_citadel/sound/vox/us.ogg differ diff --git a/modular_citadel/sound/vox/usa.ogg b/modular_citadel/sound/vox/usa.ogg new file mode 100644 index 0000000000..2a057059f7 Binary files /dev/null and b/modular_citadel/sound/vox/usa.ogg differ diff --git a/modular_citadel/sound/vox/use.ogg b/modular_citadel/sound/vox/use.ogg new file mode 100644 index 0000000000..6fdb0d2f51 Binary files /dev/null and b/modular_citadel/sound/vox/use.ogg differ diff --git a/modular_citadel/sound/vox/used.ogg b/modular_citadel/sound/vox/used.ogg new file mode 100644 index 0000000000..126ab4cce3 Binary files /dev/null and b/modular_citadel/sound/vox/used.ogg differ diff --git a/modular_citadel/sound/vox/user.ogg b/modular_citadel/sound/vox/user.ogg new file mode 100644 index 0000000000..fa99d50a09 Binary files /dev/null and b/modular_citadel/sound/vox/user.ogg differ diff --git a/modular_citadel/sound/vox/vacate.ogg b/modular_citadel/sound/vox/vacate.ogg new file mode 100644 index 0000000000..1eadec9832 Binary files /dev/null and b/modular_citadel/sound/vox/vacate.ogg differ diff --git a/modular_citadel/sound/vox/valid.ogg b/modular_citadel/sound/vox/valid.ogg new file mode 100644 index 0000000000..5ec3b93b3b Binary files /dev/null and b/modular_citadel/sound/vox/valid.ogg differ diff --git a/modular_citadel/sound/vox/vapor.ogg b/modular_citadel/sound/vox/vapor.ogg new file mode 100644 index 0000000000..9ceb555e77 Binary files /dev/null and b/modular_citadel/sound/vox/vapor.ogg differ diff --git a/modular_citadel/sound/vox/vent.ogg b/modular_citadel/sound/vox/vent.ogg new file mode 100644 index 0000000000..47f37d441f Binary files /dev/null and b/modular_citadel/sound/vox/vent.ogg differ diff --git a/modular_citadel/sound/vox/ventillation.ogg b/modular_citadel/sound/vox/ventillation.ogg new file mode 100644 index 0000000000..a8e9928e7c Binary files /dev/null and b/modular_citadel/sound/vox/ventillation.ogg differ diff --git a/modular_citadel/sound/vox/victor.ogg b/modular_citadel/sound/vox/victor.ogg new file mode 100644 index 0000000000..686b6fd7cd Binary files /dev/null and b/modular_citadel/sound/vox/victor.ogg differ diff --git a/modular_citadel/sound/vox/violated.ogg b/modular_citadel/sound/vox/violated.ogg new file mode 100644 index 0000000000..01ebe6a2de Binary files /dev/null and b/modular_citadel/sound/vox/violated.ogg differ diff --git a/modular_citadel/sound/vox/violation.ogg b/modular_citadel/sound/vox/violation.ogg new file mode 100644 index 0000000000..2d9e1b6fbe Binary files /dev/null and b/modular_citadel/sound/vox/violation.ogg differ diff --git a/modular_citadel/sound/vox/voltage.ogg b/modular_citadel/sound/vox/voltage.ogg new file mode 100644 index 0000000000..64417b2556 Binary files /dev/null and b/modular_citadel/sound/vox/voltage.ogg differ diff --git a/modular_citadel/sound/vox/vox_login.ogg b/modular_citadel/sound/vox/vox_login.ogg new file mode 100644 index 0000000000..5c406191a2 Binary files /dev/null and b/modular_citadel/sound/vox/vox_login.ogg differ diff --git a/modular_citadel/sound/vox/walk.ogg b/modular_citadel/sound/vox/walk.ogg new file mode 100644 index 0000000000..6d4cebd36c Binary files /dev/null and b/modular_citadel/sound/vox/walk.ogg differ diff --git a/modular_citadel/sound/vox/wall.ogg b/modular_citadel/sound/vox/wall.ogg new file mode 100644 index 0000000000..8f34bb6fdd Binary files /dev/null and b/modular_citadel/sound/vox/wall.ogg differ diff --git a/modular_citadel/sound/vox/want.ogg b/modular_citadel/sound/vox/want.ogg new file mode 100644 index 0000000000..b307dbfdc6 Binary files /dev/null and b/modular_citadel/sound/vox/want.ogg differ diff --git a/modular_citadel/sound/vox/wanted.ogg b/modular_citadel/sound/vox/wanted.ogg new file mode 100644 index 0000000000..a783e64ee2 Binary files /dev/null and b/modular_citadel/sound/vox/wanted.ogg differ diff --git a/modular_citadel/sound/vox/warm.ogg b/modular_citadel/sound/vox/warm.ogg new file mode 100644 index 0000000000..00fbe521b1 Binary files /dev/null and b/modular_citadel/sound/vox/warm.ogg differ diff --git a/modular_citadel/sound/vox/warn.ogg b/modular_citadel/sound/vox/warn.ogg new file mode 100644 index 0000000000..931ae208c6 Binary files /dev/null and b/modular_citadel/sound/vox/warn.ogg differ diff --git a/modular_citadel/sound/vox/warning.ogg b/modular_citadel/sound/vox/warning.ogg new file mode 100644 index 0000000000..e237c5e0ae Binary files /dev/null and b/modular_citadel/sound/vox/warning.ogg differ diff --git a/modular_citadel/sound/vox/waste.ogg b/modular_citadel/sound/vox/waste.ogg new file mode 100644 index 0000000000..7152c80fc8 Binary files /dev/null and b/modular_citadel/sound/vox/waste.ogg differ diff --git a/modular_citadel/sound/vox/water.ogg b/modular_citadel/sound/vox/water.ogg new file mode 100644 index 0000000000..fdced84c63 Binary files /dev/null and b/modular_citadel/sound/vox/water.ogg differ diff --git a/modular_citadel/sound/vox/we.ogg b/modular_citadel/sound/vox/we.ogg new file mode 100644 index 0000000000..f31d0c34d3 Binary files /dev/null and b/modular_citadel/sound/vox/we.ogg differ diff --git a/modular_citadel/sound/vox/weapon.ogg b/modular_citadel/sound/vox/weapon.ogg new file mode 100644 index 0000000000..fcf4b8bf07 Binary files /dev/null and b/modular_citadel/sound/vox/weapon.ogg differ diff --git a/modular_citadel/sound/vox/west.ogg b/modular_citadel/sound/vox/west.ogg new file mode 100644 index 0000000000..35eb23ac27 Binary files /dev/null and b/modular_citadel/sound/vox/west.ogg differ diff --git a/modular_citadel/sound/vox/whiskey.ogg b/modular_citadel/sound/vox/whiskey.ogg new file mode 100644 index 0000000000..53102ef546 Binary files /dev/null and b/modular_citadel/sound/vox/whiskey.ogg differ diff --git a/modular_citadel/sound/vox/white.ogg b/modular_citadel/sound/vox/white.ogg new file mode 100644 index 0000000000..b9c2c6e8fb Binary files /dev/null and b/modular_citadel/sound/vox/white.ogg differ diff --git a/modular_citadel/sound/vox/wilco.ogg b/modular_citadel/sound/vox/wilco.ogg new file mode 100644 index 0000000000..08f1b38f60 Binary files /dev/null and b/modular_citadel/sound/vox/wilco.ogg differ diff --git a/modular_citadel/sound/vox/will.ogg b/modular_citadel/sound/vox/will.ogg new file mode 100644 index 0000000000..8b11eec8d5 Binary files /dev/null and b/modular_citadel/sound/vox/will.ogg differ diff --git a/modular_citadel/sound/vox/with.ogg b/modular_citadel/sound/vox/with.ogg new file mode 100644 index 0000000000..100131ddfd Binary files /dev/null and b/modular_citadel/sound/vox/with.ogg differ diff --git a/modular_citadel/sound/vox/without.ogg b/modular_citadel/sound/vox/without.ogg new file mode 100644 index 0000000000..5e6b99206f Binary files /dev/null and b/modular_citadel/sound/vox/without.ogg differ diff --git a/modular_citadel/sound/vox/woop.ogg b/modular_citadel/sound/vox/woop.ogg new file mode 100644 index 0000000000..c29a975858 Binary files /dev/null and b/modular_citadel/sound/vox/woop.ogg differ diff --git a/modular_citadel/sound/vox/xeno.ogg b/modular_citadel/sound/vox/xeno.ogg new file mode 100644 index 0000000000..9230e650c7 Binary files /dev/null and b/modular_citadel/sound/vox/xeno.ogg differ diff --git a/modular_citadel/sound/vox/yankee.ogg b/modular_citadel/sound/vox/yankee.ogg new file mode 100644 index 0000000000..ea5578d28f Binary files /dev/null and b/modular_citadel/sound/vox/yankee.ogg differ diff --git a/modular_citadel/sound/vox/yards.ogg b/modular_citadel/sound/vox/yards.ogg new file mode 100644 index 0000000000..7b911ad4bd Binary files /dev/null and b/modular_citadel/sound/vox/yards.ogg differ diff --git a/modular_citadel/sound/vox/year.ogg b/modular_citadel/sound/vox/year.ogg new file mode 100644 index 0000000000..7cd1065af1 Binary files /dev/null and b/modular_citadel/sound/vox/year.ogg differ diff --git a/modular_citadel/sound/vox/yellow.ogg b/modular_citadel/sound/vox/yellow.ogg new file mode 100644 index 0000000000..87668cd45f Binary files /dev/null and b/modular_citadel/sound/vox/yellow.ogg differ diff --git a/modular_citadel/sound/vox/yes.ogg b/modular_citadel/sound/vox/yes.ogg new file mode 100644 index 0000000000..24be399de3 Binary files /dev/null and b/modular_citadel/sound/vox/yes.ogg differ diff --git a/modular_citadel/sound/vox/you.ogg b/modular_citadel/sound/vox/you.ogg new file mode 100644 index 0000000000..4a30e5c721 Binary files /dev/null and b/modular_citadel/sound/vox/you.ogg differ diff --git a/modular_citadel/sound/vox/your.ogg b/modular_citadel/sound/vox/your.ogg new file mode 100644 index 0000000000..12d49c3ded Binary files /dev/null and b/modular_citadel/sound/vox/your.ogg differ diff --git a/modular_citadel/sound/vox/yourself.ogg b/modular_citadel/sound/vox/yourself.ogg new file mode 100644 index 0000000000..03a0af6531 Binary files /dev/null and b/modular_citadel/sound/vox/yourself.ogg differ diff --git a/modular_citadel/sound/vox/zero.ogg b/modular_citadel/sound/vox/zero.ogg new file mode 100644 index 0000000000..e14f91344c Binary files /dev/null and b/modular_citadel/sound/vox/zero.ogg differ diff --git a/modular_citadel/sound/vox/zone.ogg b/modular_citadel/sound/vox/zone.ogg new file mode 100644 index 0000000000..3c8834c8f4 Binary files /dev/null and b/modular_citadel/sound/vox/zone.ogg differ diff --git a/modular_citadel/sound/vox/zulu.ogg b/modular_citadel/sound/vox/zulu.ogg new file mode 100644 index 0000000000..739cdd2187 Binary files /dev/null and b/modular_citadel/sound/vox/zulu.ogg differ diff --git a/tgstation.dme b/tgstation.dme index 0af5cc0675..7218b87e0b 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -3013,6 +3013,7 @@ #include "modular_citadel\code\modules\mob\living\carbon\human\species_types\furrypeople.dm" #include "modular_citadel\code\modules\mob\living\carbon\human\species_types\ipc.dm" #include "modular_citadel\code\modules\mob\living\carbon\human\species_types\jellypeople.dm" +#include "modular_citadel\code\modules\mob\living\silicon\ai\vox_sounds.dm" #include "modular_citadel\code\modules\mob\living\silicon\robot\dogborg_equipment.dm" #include "modular_citadel\code\modules\mob\living\silicon\robot\robot.dm" #include "modular_citadel\code\modules\mob\living\silicon\robot\robot_modules.dm"