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..9547b65594 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) 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.wav b/modular_citadel/sound/vox/_comma.wav new file mode 100644 index 0000000000..31a47dca60 Binary files /dev/null and b/modular_citadel/sound/vox/_comma.wav differ diff --git a/modular_citadel/sound/vox/_period.wav b/modular_citadel/sound/vox/_period.wav new file mode 100644 index 0000000000..7eeb1eb9bc Binary files /dev/null and b/modular_citadel/sound/vox/_period.wav differ diff --git a/modular_citadel/sound/vox/a.wav b/modular_citadel/sound/vox/a.wav new file mode 100644 index 0000000000..c6981d2902 Binary files /dev/null and b/modular_citadel/sound/vox/a.wav differ diff --git a/modular_citadel/sound/vox/accelerating.wav b/modular_citadel/sound/vox/accelerating.wav new file mode 100644 index 0000000000..e86b18a04b Binary files /dev/null and b/modular_citadel/sound/vox/accelerating.wav differ diff --git a/modular_citadel/sound/vox/accelerator.wav b/modular_citadel/sound/vox/accelerator.wav new file mode 100644 index 0000000000..be097b6caa Binary files /dev/null and b/modular_citadel/sound/vox/accelerator.wav differ diff --git a/modular_citadel/sound/vox/accepted.wav b/modular_citadel/sound/vox/accepted.wav new file mode 100644 index 0000000000..59160849e2 Binary files /dev/null and b/modular_citadel/sound/vox/accepted.wav differ diff --git a/modular_citadel/sound/vox/access.wav b/modular_citadel/sound/vox/access.wav new file mode 100644 index 0000000000..25fd098883 Binary files /dev/null and b/modular_citadel/sound/vox/access.wav differ diff --git a/modular_citadel/sound/vox/acknowledge.wav b/modular_citadel/sound/vox/acknowledge.wav new file mode 100644 index 0000000000..14946cccf8 Binary files /dev/null and b/modular_citadel/sound/vox/acknowledge.wav differ diff --git a/modular_citadel/sound/vox/acknowledged.wav b/modular_citadel/sound/vox/acknowledged.wav new file mode 100644 index 0000000000..232d9c3bf7 Binary files /dev/null and b/modular_citadel/sound/vox/acknowledged.wav differ diff --git a/modular_citadel/sound/vox/acquired.wav b/modular_citadel/sound/vox/acquired.wav new file mode 100644 index 0000000000..7eecdf9140 Binary files /dev/null and b/modular_citadel/sound/vox/acquired.wav differ diff --git a/modular_citadel/sound/vox/acquisition.wav b/modular_citadel/sound/vox/acquisition.wav new file mode 100644 index 0000000000..11be7dc475 Binary files /dev/null and b/modular_citadel/sound/vox/acquisition.wav differ diff --git a/modular_citadel/sound/vox/across.wav b/modular_citadel/sound/vox/across.wav new file mode 100644 index 0000000000..1591e89700 Binary files /dev/null and b/modular_citadel/sound/vox/across.wav differ diff --git a/modular_citadel/sound/vox/activate.wav b/modular_citadel/sound/vox/activate.wav new file mode 100644 index 0000000000..32a45cbf22 Binary files /dev/null and b/modular_citadel/sound/vox/activate.wav differ diff --git a/modular_citadel/sound/vox/activated.wav b/modular_citadel/sound/vox/activated.wav new file mode 100644 index 0000000000..154e0389e8 Binary files /dev/null and b/modular_citadel/sound/vox/activated.wav differ diff --git a/modular_citadel/sound/vox/activity.wav b/modular_citadel/sound/vox/activity.wav new file mode 100644 index 0000000000..5920e6dd38 Binary files /dev/null and b/modular_citadel/sound/vox/activity.wav differ diff --git a/modular_citadel/sound/vox/adios.wav b/modular_citadel/sound/vox/adios.wav new file mode 100644 index 0000000000..86e268ca1f Binary files /dev/null and b/modular_citadel/sound/vox/adios.wav differ diff --git a/modular_citadel/sound/vox/administration.wav b/modular_citadel/sound/vox/administration.wav new file mode 100644 index 0000000000..d85d67eabf Binary files /dev/null and b/modular_citadel/sound/vox/administration.wav differ diff --git a/modular_citadel/sound/vox/advanced.wav b/modular_citadel/sound/vox/advanced.wav new file mode 100644 index 0000000000..987cd05b2a Binary files /dev/null and b/modular_citadel/sound/vox/advanced.wav differ diff --git a/modular_citadel/sound/vox/after.wav b/modular_citadel/sound/vox/after.wav new file mode 100644 index 0000000000..f63abdff55 Binary files /dev/null and b/modular_citadel/sound/vox/after.wav differ diff --git a/modular_citadel/sound/vox/agent.wav b/modular_citadel/sound/vox/agent.wav new file mode 100644 index 0000000000..594932971e Binary files /dev/null and b/modular_citadel/sound/vox/agent.wav differ diff --git a/modular_citadel/sound/vox/alarm.wav b/modular_citadel/sound/vox/alarm.wav new file mode 100644 index 0000000000..296ca773d6 Binary files /dev/null and b/modular_citadel/sound/vox/alarm.wav differ diff --git a/modular_citadel/sound/vox/alert.wav b/modular_citadel/sound/vox/alert.wav new file mode 100644 index 0000000000..1a749b7c74 Binary files /dev/null and b/modular_citadel/sound/vox/alert.wav differ diff --git a/modular_citadel/sound/vox/alien.wav b/modular_citadel/sound/vox/alien.wav new file mode 100644 index 0000000000..5890955995 Binary files /dev/null and b/modular_citadel/sound/vox/alien.wav differ diff --git a/modular_citadel/sound/vox/aligned.wav b/modular_citadel/sound/vox/aligned.wav new file mode 100644 index 0000000000..20bbe5bfa7 Binary files /dev/null and b/modular_citadel/sound/vox/aligned.wav differ diff --git a/modular_citadel/sound/vox/all.wav b/modular_citadel/sound/vox/all.wav new file mode 100644 index 0000000000..5bfc4dee60 Binary files /dev/null and b/modular_citadel/sound/vox/all.wav differ diff --git a/modular_citadel/sound/vox/alpha.wav b/modular_citadel/sound/vox/alpha.wav new file mode 100644 index 0000000000..d64239ec88 Binary files /dev/null and b/modular_citadel/sound/vox/alpha.wav differ diff --git a/modular_citadel/sound/vox/am.wav b/modular_citadel/sound/vox/am.wav new file mode 100644 index 0000000000..c273e5231d Binary files /dev/null and b/modular_citadel/sound/vox/am.wav differ diff --git a/modular_citadel/sound/vox/amigo.wav b/modular_citadel/sound/vox/amigo.wav new file mode 100644 index 0000000000..03ec617c29 Binary files /dev/null and b/modular_citadel/sound/vox/amigo.wav differ diff --git a/modular_citadel/sound/vox/ammunition.wav b/modular_citadel/sound/vox/ammunition.wav new file mode 100644 index 0000000000..148605c2ca Binary files /dev/null and b/modular_citadel/sound/vox/ammunition.wav differ diff --git a/modular_citadel/sound/vox/an.wav b/modular_citadel/sound/vox/an.wav new file mode 100644 index 0000000000..5755607e36 Binary files /dev/null and b/modular_citadel/sound/vox/an.wav differ diff --git a/modular_citadel/sound/vox/and.wav b/modular_citadel/sound/vox/and.wav new file mode 100644 index 0000000000..6e155c09d9 Binary files /dev/null and b/modular_citadel/sound/vox/and.wav differ diff --git a/modular_citadel/sound/vox/announcement.wav b/modular_citadel/sound/vox/announcement.wav new file mode 100644 index 0000000000..9d185ead91 Binary files /dev/null and b/modular_citadel/sound/vox/announcement.wav differ diff --git a/modular_citadel/sound/vox/anomalous.wav b/modular_citadel/sound/vox/anomalous.wav new file mode 100644 index 0000000000..1db9a4fa09 Binary files /dev/null and b/modular_citadel/sound/vox/anomalous.wav differ diff --git a/modular_citadel/sound/vox/antenna.wav b/modular_citadel/sound/vox/antenna.wav new file mode 100644 index 0000000000..fa82d58cb9 Binary files /dev/null and b/modular_citadel/sound/vox/antenna.wav differ diff --git a/modular_citadel/sound/vox/any.wav b/modular_citadel/sound/vox/any.wav new file mode 100644 index 0000000000..73bed24661 Binary files /dev/null and b/modular_citadel/sound/vox/any.wav differ diff --git a/modular_citadel/sound/vox/apprehend.wav b/modular_citadel/sound/vox/apprehend.wav new file mode 100644 index 0000000000..874ef83963 Binary files /dev/null and b/modular_citadel/sound/vox/apprehend.wav differ diff --git a/modular_citadel/sound/vox/approach.wav b/modular_citadel/sound/vox/approach.wav new file mode 100644 index 0000000000..5c5e1995df Binary files /dev/null and b/modular_citadel/sound/vox/approach.wav differ diff --git a/modular_citadel/sound/vox/are.wav b/modular_citadel/sound/vox/are.wav new file mode 100644 index 0000000000..bacdb31e2a Binary files /dev/null and b/modular_citadel/sound/vox/are.wav differ diff --git a/modular_citadel/sound/vox/area.wav b/modular_citadel/sound/vox/area.wav new file mode 100644 index 0000000000..f2ac3dd05a Binary files /dev/null and b/modular_citadel/sound/vox/area.wav differ diff --git a/modular_citadel/sound/vox/arm.wav b/modular_citadel/sound/vox/arm.wav new file mode 100644 index 0000000000..225abed39e Binary files /dev/null and b/modular_citadel/sound/vox/arm.wav differ diff --git a/modular_citadel/sound/vox/armed.wav b/modular_citadel/sound/vox/armed.wav new file mode 100644 index 0000000000..55e4a67c66 Binary files /dev/null and b/modular_citadel/sound/vox/armed.wav differ diff --git a/modular_citadel/sound/vox/armor.wav b/modular_citadel/sound/vox/armor.wav new file mode 100644 index 0000000000..2ca51709d4 Binary files /dev/null and b/modular_citadel/sound/vox/armor.wav differ diff --git a/modular_citadel/sound/vox/armory.wav b/modular_citadel/sound/vox/armory.wav new file mode 100644 index 0000000000..63fff9e39e Binary files /dev/null and b/modular_citadel/sound/vox/armory.wav differ diff --git a/modular_citadel/sound/vox/arrest.wav b/modular_citadel/sound/vox/arrest.wav new file mode 100644 index 0000000000..cdc24ec627 Binary files /dev/null and b/modular_citadel/sound/vox/arrest.wav differ diff --git a/modular_citadel/sound/vox/ass.wav b/modular_citadel/sound/vox/ass.wav new file mode 100644 index 0000000000..2b6698aa66 Binary files /dev/null and b/modular_citadel/sound/vox/ass.wav differ diff --git a/modular_citadel/sound/vox/at.wav b/modular_citadel/sound/vox/at.wav new file mode 100644 index 0000000000..0b1b9396e5 Binary files /dev/null and b/modular_citadel/sound/vox/at.wav differ diff --git a/modular_citadel/sound/vox/atomic.wav b/modular_citadel/sound/vox/atomic.wav new file mode 100644 index 0000000000..6a00304807 Binary files /dev/null and b/modular_citadel/sound/vox/atomic.wav differ diff --git a/modular_citadel/sound/vox/attention.wav b/modular_citadel/sound/vox/attention.wav new file mode 100644 index 0000000000..e9078e6d9e Binary files /dev/null and b/modular_citadel/sound/vox/attention.wav differ diff --git a/modular_citadel/sound/vox/authorize.wav b/modular_citadel/sound/vox/authorize.wav new file mode 100644 index 0000000000..3dcff1208b Binary files /dev/null and b/modular_citadel/sound/vox/authorize.wav differ diff --git a/modular_citadel/sound/vox/authorized.wav b/modular_citadel/sound/vox/authorized.wav new file mode 100644 index 0000000000..67672abf35 Binary files /dev/null and b/modular_citadel/sound/vox/authorized.wav differ diff --git a/modular_citadel/sound/vox/automatic.wav b/modular_citadel/sound/vox/automatic.wav new file mode 100644 index 0000000000..8e676b0827 Binary files /dev/null and b/modular_citadel/sound/vox/automatic.wav differ diff --git a/modular_citadel/sound/vox/away.wav b/modular_citadel/sound/vox/away.wav new file mode 100644 index 0000000000..e1a3bee4d8 Binary files /dev/null and b/modular_citadel/sound/vox/away.wav differ diff --git a/modular_citadel/sound/vox/b.wav b/modular_citadel/sound/vox/b.wav new file mode 100644 index 0000000000..751c7b7b1a Binary files /dev/null and b/modular_citadel/sound/vox/b.wav differ diff --git a/modular_citadel/sound/vox/back.wav b/modular_citadel/sound/vox/back.wav new file mode 100644 index 0000000000..b2f4e56e40 Binary files /dev/null and b/modular_citadel/sound/vox/back.wav differ diff --git a/modular_citadel/sound/vox/backman.wav b/modular_citadel/sound/vox/backman.wav new file mode 100644 index 0000000000..60e149eaee Binary files /dev/null and b/modular_citadel/sound/vox/backman.wav differ diff --git a/modular_citadel/sound/vox/bad.wav b/modular_citadel/sound/vox/bad.wav new file mode 100644 index 0000000000..b59100564f Binary files /dev/null and b/modular_citadel/sound/vox/bad.wav differ diff --git a/modular_citadel/sound/vox/bag.wav b/modular_citadel/sound/vox/bag.wav new file mode 100644 index 0000000000..ccbf3f851e Binary files /dev/null and b/modular_citadel/sound/vox/bag.wav differ diff --git a/modular_citadel/sound/vox/bailey.wav b/modular_citadel/sound/vox/bailey.wav new file mode 100644 index 0000000000..deca97dc6b Binary files /dev/null and b/modular_citadel/sound/vox/bailey.wav differ diff --git a/modular_citadel/sound/vox/barracks.wav b/modular_citadel/sound/vox/barracks.wav new file mode 100644 index 0000000000..c7cc651ced Binary files /dev/null and b/modular_citadel/sound/vox/barracks.wav differ diff --git a/modular_citadel/sound/vox/base.wav b/modular_citadel/sound/vox/base.wav new file mode 100644 index 0000000000..a4c6c829e5 Binary files /dev/null and b/modular_citadel/sound/vox/base.wav differ diff --git a/modular_citadel/sound/vox/bay.wav b/modular_citadel/sound/vox/bay.wav new file mode 100644 index 0000000000..769dfc38c2 Binary files /dev/null and b/modular_citadel/sound/vox/bay.wav differ diff --git a/modular_citadel/sound/vox/be.wav b/modular_citadel/sound/vox/be.wav new file mode 100644 index 0000000000..38074711b4 Binary files /dev/null and b/modular_citadel/sound/vox/be.wav differ diff --git a/modular_citadel/sound/vox/been.wav b/modular_citadel/sound/vox/been.wav new file mode 100644 index 0000000000..959f08ebf5 Binary files /dev/null and b/modular_citadel/sound/vox/been.wav differ diff --git a/modular_citadel/sound/vox/before.wav b/modular_citadel/sound/vox/before.wav new file mode 100644 index 0000000000..a7c2cdd5b2 Binary files /dev/null and b/modular_citadel/sound/vox/before.wav differ diff --git a/modular_citadel/sound/vox/beyond.wav b/modular_citadel/sound/vox/beyond.wav new file mode 100644 index 0000000000..d0641c009b Binary files /dev/null and b/modular_citadel/sound/vox/beyond.wav differ diff --git a/modular_citadel/sound/vox/biohazard.wav b/modular_citadel/sound/vox/biohazard.wav new file mode 100644 index 0000000000..6ee3aca426 Binary files /dev/null and b/modular_citadel/sound/vox/biohazard.wav differ diff --git a/modular_citadel/sound/vox/biological.wav b/modular_citadel/sound/vox/biological.wav new file mode 100644 index 0000000000..fef86450b1 Binary files /dev/null and b/modular_citadel/sound/vox/biological.wav differ diff --git a/modular_citadel/sound/vox/birdwell.wav b/modular_citadel/sound/vox/birdwell.wav new file mode 100644 index 0000000000..6436f724f0 Binary files /dev/null and b/modular_citadel/sound/vox/birdwell.wav differ diff --git a/modular_citadel/sound/vox/bizwarn.wav b/modular_citadel/sound/vox/bizwarn.wav new file mode 100644 index 0000000000..ff392b491a Binary files /dev/null and b/modular_citadel/sound/vox/bizwarn.wav differ diff --git a/modular_citadel/sound/vox/black.wav b/modular_citadel/sound/vox/black.wav new file mode 100644 index 0000000000..52dd0881ae Binary files /dev/null and b/modular_citadel/sound/vox/black.wav differ diff --git a/modular_citadel/sound/vox/blast.wav b/modular_citadel/sound/vox/blast.wav new file mode 100644 index 0000000000..fa8d79fbb4 Binary files /dev/null and b/modular_citadel/sound/vox/blast.wav differ diff --git a/modular_citadel/sound/vox/blocked.wav b/modular_citadel/sound/vox/blocked.wav new file mode 100644 index 0000000000..5e086f4bce Binary files /dev/null and b/modular_citadel/sound/vox/blocked.wav differ diff --git a/modular_citadel/sound/vox/bloop.wav b/modular_citadel/sound/vox/bloop.wav new file mode 100644 index 0000000000..49cf90c523 Binary files /dev/null and b/modular_citadel/sound/vox/bloop.wav differ diff --git a/modular_citadel/sound/vox/blue.wav b/modular_citadel/sound/vox/blue.wav new file mode 100644 index 0000000000..83a6e7c3eb Binary files /dev/null and b/modular_citadel/sound/vox/blue.wav differ diff --git a/modular_citadel/sound/vox/bottom.wav b/modular_citadel/sound/vox/bottom.wav new file mode 100644 index 0000000000..2330a74b28 Binary files /dev/null and b/modular_citadel/sound/vox/bottom.wav differ diff --git a/modular_citadel/sound/vox/bravo.wav b/modular_citadel/sound/vox/bravo.wav new file mode 100644 index 0000000000..560af14f2c Binary files /dev/null and b/modular_citadel/sound/vox/bravo.wav differ diff --git a/modular_citadel/sound/vox/breach.wav b/modular_citadel/sound/vox/breach.wav new file mode 100644 index 0000000000..89a6178334 Binary files /dev/null and b/modular_citadel/sound/vox/breach.wav differ diff --git a/modular_citadel/sound/vox/breached.wav b/modular_citadel/sound/vox/breached.wav new file mode 100644 index 0000000000..f4028d18a8 Binary files /dev/null and b/modular_citadel/sound/vox/breached.wav differ diff --git a/modular_citadel/sound/vox/break.wav b/modular_citadel/sound/vox/break.wav new file mode 100644 index 0000000000..124720295b Binary files /dev/null and b/modular_citadel/sound/vox/break.wav differ diff --git a/modular_citadel/sound/vox/bridge.wav b/modular_citadel/sound/vox/bridge.wav new file mode 100644 index 0000000000..cbb0cb461d Binary files /dev/null and b/modular_citadel/sound/vox/bridge.wav differ diff --git a/modular_citadel/sound/vox/bust.wav b/modular_citadel/sound/vox/bust.wav new file mode 100644 index 0000000000..6af0f12c80 Binary files /dev/null and b/modular_citadel/sound/vox/bust.wav differ diff --git a/modular_citadel/sound/vox/but.wav b/modular_citadel/sound/vox/but.wav new file mode 100644 index 0000000000..0728ed3e1e Binary files /dev/null and b/modular_citadel/sound/vox/but.wav differ diff --git a/modular_citadel/sound/vox/button.wav b/modular_citadel/sound/vox/button.wav new file mode 100644 index 0000000000..bc583238ca Binary files /dev/null and b/modular_citadel/sound/vox/button.wav differ diff --git a/modular_citadel/sound/vox/buzwarn.wav b/modular_citadel/sound/vox/buzwarn.wav new file mode 100644 index 0000000000..82ddd2cdb3 Binary files /dev/null and b/modular_citadel/sound/vox/buzwarn.wav differ diff --git a/modular_citadel/sound/vox/bypass.wav b/modular_citadel/sound/vox/bypass.wav new file mode 100644 index 0000000000..b5155d37ff Binary files /dev/null and b/modular_citadel/sound/vox/bypass.wav differ diff --git a/modular_citadel/sound/vox/c.wav b/modular_citadel/sound/vox/c.wav new file mode 100644 index 0000000000..9fcfc5e745 Binary files /dev/null and b/modular_citadel/sound/vox/c.wav differ diff --git a/modular_citadel/sound/vox/cable.wav b/modular_citadel/sound/vox/cable.wav new file mode 100644 index 0000000000..d761092651 Binary files /dev/null and b/modular_citadel/sound/vox/cable.wav differ diff --git a/modular_citadel/sound/vox/call.wav b/modular_citadel/sound/vox/call.wav new file mode 100644 index 0000000000..aa06767b94 Binary files /dev/null and b/modular_citadel/sound/vox/call.wav differ diff --git a/modular_citadel/sound/vox/called.wav b/modular_citadel/sound/vox/called.wav new file mode 100644 index 0000000000..f0c2897c8d Binary files /dev/null and b/modular_citadel/sound/vox/called.wav differ diff --git a/modular_citadel/sound/vox/canal.wav b/modular_citadel/sound/vox/canal.wav new file mode 100644 index 0000000000..b426a8f6a9 Binary files /dev/null and b/modular_citadel/sound/vox/canal.wav differ diff --git a/modular_citadel/sound/vox/cap.wav b/modular_citadel/sound/vox/cap.wav new file mode 100644 index 0000000000..998505184b Binary files /dev/null and b/modular_citadel/sound/vox/cap.wav differ diff --git a/modular_citadel/sound/vox/captain.wav b/modular_citadel/sound/vox/captain.wav new file mode 100644 index 0000000000..61222de532 Binary files /dev/null and b/modular_citadel/sound/vox/captain.wav differ diff --git a/modular_citadel/sound/vox/capture.wav b/modular_citadel/sound/vox/capture.wav new file mode 100644 index 0000000000..c7bfaad64f Binary files /dev/null and b/modular_citadel/sound/vox/capture.wav differ diff --git a/modular_citadel/sound/vox/ceiling.wav b/modular_citadel/sound/vox/ceiling.wav new file mode 100644 index 0000000000..381db754ca Binary files /dev/null and b/modular_citadel/sound/vox/ceiling.wav differ diff --git a/modular_citadel/sound/vox/celsius.wav b/modular_citadel/sound/vox/celsius.wav new file mode 100644 index 0000000000..ac59448a46 Binary files /dev/null and b/modular_citadel/sound/vox/celsius.wav differ diff --git a/modular_citadel/sound/vox/center.wav b/modular_citadel/sound/vox/center.wav new file mode 100644 index 0000000000..35bdcb5224 Binary files /dev/null and b/modular_citadel/sound/vox/center.wav differ diff --git a/modular_citadel/sound/vox/centi.wav b/modular_citadel/sound/vox/centi.wav new file mode 100644 index 0000000000..efccef07e7 Binary files /dev/null and b/modular_citadel/sound/vox/centi.wav differ diff --git a/modular_citadel/sound/vox/central.wav b/modular_citadel/sound/vox/central.wav new file mode 100644 index 0000000000..1c9c58be57 Binary files /dev/null and b/modular_citadel/sound/vox/central.wav differ diff --git a/modular_citadel/sound/vox/chamber.wav b/modular_citadel/sound/vox/chamber.wav new file mode 100644 index 0000000000..38dbf9ffa7 Binary files /dev/null and b/modular_citadel/sound/vox/chamber.wav differ diff --git a/modular_citadel/sound/vox/charlie.wav b/modular_citadel/sound/vox/charlie.wav new file mode 100644 index 0000000000..353ce195f3 Binary files /dev/null and b/modular_citadel/sound/vox/charlie.wav differ diff --git a/modular_citadel/sound/vox/check.wav b/modular_citadel/sound/vox/check.wav new file mode 100644 index 0000000000..709f9a6555 Binary files /dev/null and b/modular_citadel/sound/vox/check.wav differ diff --git a/modular_citadel/sound/vox/checkpoint.wav b/modular_citadel/sound/vox/checkpoint.wav new file mode 100644 index 0000000000..15aa5e4cc9 Binary files /dev/null and b/modular_citadel/sound/vox/checkpoint.wav differ diff --git a/modular_citadel/sound/vox/chemical.wav b/modular_citadel/sound/vox/chemical.wav new file mode 100644 index 0000000000..eeb32be385 Binary files /dev/null and b/modular_citadel/sound/vox/chemical.wav differ diff --git a/modular_citadel/sound/vox/cleanup.wav b/modular_citadel/sound/vox/cleanup.wav new file mode 100644 index 0000000000..a47ddb233a Binary files /dev/null and b/modular_citadel/sound/vox/cleanup.wav differ diff --git a/modular_citadel/sound/vox/clear.wav b/modular_citadel/sound/vox/clear.wav new file mode 100644 index 0000000000..a23cfc5e2b Binary files /dev/null and b/modular_citadel/sound/vox/clear.wav differ diff --git a/modular_citadel/sound/vox/clearance.wav b/modular_citadel/sound/vox/clearance.wav new file mode 100644 index 0000000000..a35e0699b8 Binary files /dev/null and b/modular_citadel/sound/vox/clearance.wav differ diff --git a/modular_citadel/sound/vox/close.wav b/modular_citadel/sound/vox/close.wav new file mode 100644 index 0000000000..6a46d7fb06 Binary files /dev/null and b/modular_citadel/sound/vox/close.wav differ diff --git a/modular_citadel/sound/vox/code.wav b/modular_citadel/sound/vox/code.wav new file mode 100644 index 0000000000..63bdfbe883 Binary files /dev/null and b/modular_citadel/sound/vox/code.wav differ diff --git a/modular_citadel/sound/vox/coded.wav b/modular_citadel/sound/vox/coded.wav new file mode 100644 index 0000000000..ec876b297f Binary files /dev/null and b/modular_citadel/sound/vox/coded.wav differ diff --git a/modular_citadel/sound/vox/collider.wav b/modular_citadel/sound/vox/collider.wav new file mode 100644 index 0000000000..a26ff0a317 Binary files /dev/null and b/modular_citadel/sound/vox/collider.wav differ diff --git a/modular_citadel/sound/vox/command.wav b/modular_citadel/sound/vox/command.wav new file mode 100644 index 0000000000..ba0c7e852b Binary files /dev/null and b/modular_citadel/sound/vox/command.wav differ diff --git a/modular_citadel/sound/vox/communication.wav b/modular_citadel/sound/vox/communication.wav new file mode 100644 index 0000000000..35165357e6 Binary files /dev/null and b/modular_citadel/sound/vox/communication.wav differ diff --git a/modular_citadel/sound/vox/complex.wav b/modular_citadel/sound/vox/complex.wav new file mode 100644 index 0000000000..d2c01ccd57 Binary files /dev/null and b/modular_citadel/sound/vox/complex.wav differ diff --git a/modular_citadel/sound/vox/computer.wav b/modular_citadel/sound/vox/computer.wav new file mode 100644 index 0000000000..89808c20d7 Binary files /dev/null and b/modular_citadel/sound/vox/computer.wav differ diff --git a/modular_citadel/sound/vox/condition.wav b/modular_citadel/sound/vox/condition.wav new file mode 100644 index 0000000000..b32c83668e Binary files /dev/null and b/modular_citadel/sound/vox/condition.wav differ diff --git a/modular_citadel/sound/vox/containment.wav b/modular_citadel/sound/vox/containment.wav new file mode 100644 index 0000000000..563cb4e15a Binary files /dev/null and b/modular_citadel/sound/vox/containment.wav differ diff --git a/modular_citadel/sound/vox/contamination.wav b/modular_citadel/sound/vox/contamination.wav new file mode 100644 index 0000000000..d597267cdd Binary files /dev/null and b/modular_citadel/sound/vox/contamination.wav differ diff --git a/modular_citadel/sound/vox/control.wav b/modular_citadel/sound/vox/control.wav new file mode 100644 index 0000000000..e7bf57bbd8 Binary files /dev/null and b/modular_citadel/sound/vox/control.wav differ diff --git a/modular_citadel/sound/vox/coolant.wav b/modular_citadel/sound/vox/coolant.wav new file mode 100644 index 0000000000..d4474b9d9d Binary files /dev/null and b/modular_citadel/sound/vox/coolant.wav differ diff --git a/modular_citadel/sound/vox/coomer.wav b/modular_citadel/sound/vox/coomer.wav new file mode 100644 index 0000000000..1e4b37929f Binary files /dev/null and b/modular_citadel/sound/vox/coomer.wav differ diff --git a/modular_citadel/sound/vox/core.wav b/modular_citadel/sound/vox/core.wav new file mode 100644 index 0000000000..da6874b2e7 Binary files /dev/null and b/modular_citadel/sound/vox/core.wav differ diff --git a/modular_citadel/sound/vox/correct.wav b/modular_citadel/sound/vox/correct.wav new file mode 100644 index 0000000000..cde927b747 Binary files /dev/null and b/modular_citadel/sound/vox/correct.wav differ diff --git a/modular_citadel/sound/vox/corridor.wav b/modular_citadel/sound/vox/corridor.wav new file mode 100644 index 0000000000..defdcda2d1 Binary files /dev/null and b/modular_citadel/sound/vox/corridor.wav differ diff --git a/modular_citadel/sound/vox/crew.wav b/modular_citadel/sound/vox/crew.wav new file mode 100644 index 0000000000..4f48a08cb1 Binary files /dev/null and b/modular_citadel/sound/vox/crew.wav differ diff --git a/modular_citadel/sound/vox/cross.wav b/modular_citadel/sound/vox/cross.wav new file mode 100644 index 0000000000..c393dffbf1 Binary files /dev/null and b/modular_citadel/sound/vox/cross.wav differ diff --git a/modular_citadel/sound/vox/cryogenic.wav b/modular_citadel/sound/vox/cryogenic.wav new file mode 100644 index 0000000000..eb1a62ae38 Binary files /dev/null and b/modular_citadel/sound/vox/cryogenic.wav differ diff --git a/modular_citadel/sound/vox/d.wav b/modular_citadel/sound/vox/d.wav new file mode 100644 index 0000000000..f977a49505 Binary files /dev/null and b/modular_citadel/sound/vox/d.wav differ diff --git a/modular_citadel/sound/vox/dadeda.wav b/modular_citadel/sound/vox/dadeda.wav new file mode 100644 index 0000000000..2ac0ff589a Binary files /dev/null and b/modular_citadel/sound/vox/dadeda.wav differ diff --git a/modular_citadel/sound/vox/damage.wav b/modular_citadel/sound/vox/damage.wav new file mode 100644 index 0000000000..83fce3dcf0 Binary files /dev/null and b/modular_citadel/sound/vox/damage.wav differ diff --git a/modular_citadel/sound/vox/damaged.wav b/modular_citadel/sound/vox/damaged.wav new file mode 100644 index 0000000000..e9f2ff5dbb Binary files /dev/null and b/modular_citadel/sound/vox/damaged.wav differ diff --git a/modular_citadel/sound/vox/danger.wav b/modular_citadel/sound/vox/danger.wav new file mode 100644 index 0000000000..40ff8b8db9 Binary files /dev/null and b/modular_citadel/sound/vox/danger.wav differ diff --git a/modular_citadel/sound/vox/day.wav b/modular_citadel/sound/vox/day.wav new file mode 100644 index 0000000000..92e3fe81da Binary files /dev/null and b/modular_citadel/sound/vox/day.wav differ diff --git a/modular_citadel/sound/vox/deactivated.wav b/modular_citadel/sound/vox/deactivated.wav new file mode 100644 index 0000000000..f587f266dd Binary files /dev/null and b/modular_citadel/sound/vox/deactivated.wav differ diff --git a/modular_citadel/sound/vox/decompression.wav b/modular_citadel/sound/vox/decompression.wav new file mode 100644 index 0000000000..a758f1bbd7 Binary files /dev/null and b/modular_citadel/sound/vox/decompression.wav differ diff --git a/modular_citadel/sound/vox/decontamination.wav b/modular_citadel/sound/vox/decontamination.wav new file mode 100644 index 0000000000..9794de0a23 Binary files /dev/null and b/modular_citadel/sound/vox/decontamination.wav differ diff --git a/modular_citadel/sound/vox/deeoo.wav b/modular_citadel/sound/vox/deeoo.wav new file mode 100644 index 0000000000..4f82a18b2a Binary files /dev/null and b/modular_citadel/sound/vox/deeoo.wav differ diff --git a/modular_citadel/sound/vox/defense.wav b/modular_citadel/sound/vox/defense.wav new file mode 100644 index 0000000000..9da8de137f Binary files /dev/null and b/modular_citadel/sound/vox/defense.wav differ diff --git a/modular_citadel/sound/vox/degrees.wav b/modular_citadel/sound/vox/degrees.wav new file mode 100644 index 0000000000..7e77561c14 Binary files /dev/null and b/modular_citadel/sound/vox/degrees.wav differ diff --git a/modular_citadel/sound/vox/delta.wav b/modular_citadel/sound/vox/delta.wav new file mode 100644 index 0000000000..86052809f4 Binary files /dev/null and b/modular_citadel/sound/vox/delta.wav differ diff --git a/modular_citadel/sound/vox/denied.wav b/modular_citadel/sound/vox/denied.wav new file mode 100644 index 0000000000..6b1167d41d Binary files /dev/null and b/modular_citadel/sound/vox/denied.wav differ diff --git a/modular_citadel/sound/vox/deploy.wav b/modular_citadel/sound/vox/deploy.wav new file mode 100644 index 0000000000..2f9aacd350 Binary files /dev/null and b/modular_citadel/sound/vox/deploy.wav differ diff --git a/modular_citadel/sound/vox/deployed.wav b/modular_citadel/sound/vox/deployed.wav new file mode 100644 index 0000000000..a85a076b18 Binary files /dev/null and b/modular_citadel/sound/vox/deployed.wav differ diff --git a/modular_citadel/sound/vox/destroy.wav b/modular_citadel/sound/vox/destroy.wav new file mode 100644 index 0000000000..56cf437c66 Binary files /dev/null and b/modular_citadel/sound/vox/destroy.wav differ diff --git a/modular_citadel/sound/vox/destroyed.wav b/modular_citadel/sound/vox/destroyed.wav new file mode 100644 index 0000000000..20308df2df Binary files /dev/null and b/modular_citadel/sound/vox/destroyed.wav differ diff --git a/modular_citadel/sound/vox/detain.wav b/modular_citadel/sound/vox/detain.wav new file mode 100644 index 0000000000..7d5f4e06f4 Binary files /dev/null and b/modular_citadel/sound/vox/detain.wav differ diff --git a/modular_citadel/sound/vox/detected.wav b/modular_citadel/sound/vox/detected.wav new file mode 100644 index 0000000000..101429a614 Binary files /dev/null and b/modular_citadel/sound/vox/detected.wav differ diff --git a/modular_citadel/sound/vox/detonation.wav b/modular_citadel/sound/vox/detonation.wav new file mode 100644 index 0000000000..a696e97976 Binary files /dev/null and b/modular_citadel/sound/vox/detonation.wav differ diff --git a/modular_citadel/sound/vox/device.wav b/modular_citadel/sound/vox/device.wav new file mode 100644 index 0000000000..d5ecd2f67b Binary files /dev/null and b/modular_citadel/sound/vox/device.wav differ diff --git a/modular_citadel/sound/vox/did.wav b/modular_citadel/sound/vox/did.wav new file mode 100644 index 0000000000..0c52e31b72 Binary files /dev/null and b/modular_citadel/sound/vox/did.wav differ diff --git a/modular_citadel/sound/vox/die.wav b/modular_citadel/sound/vox/die.wav new file mode 100644 index 0000000000..b47622cfc7 Binary files /dev/null and b/modular_citadel/sound/vox/die.wav differ diff --git a/modular_citadel/sound/vox/dimensional.wav b/modular_citadel/sound/vox/dimensional.wav new file mode 100644 index 0000000000..f67956ddc7 Binary files /dev/null and b/modular_citadel/sound/vox/dimensional.wav differ diff --git a/modular_citadel/sound/vox/dirt.wav b/modular_citadel/sound/vox/dirt.wav new file mode 100644 index 0000000000..08990c47d8 Binary files /dev/null and b/modular_citadel/sound/vox/dirt.wav differ diff --git a/modular_citadel/sound/vox/disengaged.wav b/modular_citadel/sound/vox/disengaged.wav new file mode 100644 index 0000000000..aa84ed27a6 Binary files /dev/null and b/modular_citadel/sound/vox/disengaged.wav differ diff --git a/modular_citadel/sound/vox/dish.wav b/modular_citadel/sound/vox/dish.wav new file mode 100644 index 0000000000..aeff92d205 Binary files /dev/null and b/modular_citadel/sound/vox/dish.wav differ diff --git a/modular_citadel/sound/vox/disposal.wav b/modular_citadel/sound/vox/disposal.wav new file mode 100644 index 0000000000..bfe38f6098 Binary files /dev/null and b/modular_citadel/sound/vox/disposal.wav differ diff --git a/modular_citadel/sound/vox/distance.wav b/modular_citadel/sound/vox/distance.wav new file mode 100644 index 0000000000..670eacaabe Binary files /dev/null and b/modular_citadel/sound/vox/distance.wav differ diff --git a/modular_citadel/sound/vox/distortion.wav b/modular_citadel/sound/vox/distortion.wav new file mode 100644 index 0000000000..7fae33e244 Binary files /dev/null and b/modular_citadel/sound/vox/distortion.wav differ diff --git a/modular_citadel/sound/vox/do.wav b/modular_citadel/sound/vox/do.wav new file mode 100644 index 0000000000..d82a9ab107 Binary files /dev/null and b/modular_citadel/sound/vox/do.wav differ diff --git a/modular_citadel/sound/vox/doctor.wav b/modular_citadel/sound/vox/doctor.wav new file mode 100644 index 0000000000..f9cdc53805 Binary files /dev/null and b/modular_citadel/sound/vox/doctor.wav differ diff --git a/modular_citadel/sound/vox/doop.wav b/modular_citadel/sound/vox/doop.wav new file mode 100644 index 0000000000..14bce15cea Binary files /dev/null and b/modular_citadel/sound/vox/doop.wav differ diff --git a/modular_citadel/sound/vox/door.wav b/modular_citadel/sound/vox/door.wav new file mode 100644 index 0000000000..629dee38e7 Binary files /dev/null and b/modular_citadel/sound/vox/door.wav differ diff --git a/modular_citadel/sound/vox/down.wav b/modular_citadel/sound/vox/down.wav new file mode 100644 index 0000000000..b677e031da Binary files /dev/null and b/modular_citadel/sound/vox/down.wav differ diff --git a/modular_citadel/sound/vox/dual.wav b/modular_citadel/sound/vox/dual.wav new file mode 100644 index 0000000000..4693b31d42 Binary files /dev/null and b/modular_citadel/sound/vox/dual.wav differ diff --git a/modular_citadel/sound/vox/duct.wav b/modular_citadel/sound/vox/duct.wav new file mode 100644 index 0000000000..d0e937fd80 Binary files /dev/null and b/modular_citadel/sound/vox/duct.wav differ diff --git a/modular_citadel/sound/vox/e.wav b/modular_citadel/sound/vox/e.wav new file mode 100644 index 0000000000..6f991d0fcc Binary files /dev/null and b/modular_citadel/sound/vox/e.wav differ diff --git a/modular_citadel/sound/vox/east.wav b/modular_citadel/sound/vox/east.wav new file mode 100644 index 0000000000..296ce53d41 Binary files /dev/null and b/modular_citadel/sound/vox/east.wav differ diff --git a/modular_citadel/sound/vox/echo.wav b/modular_citadel/sound/vox/echo.wav new file mode 100644 index 0000000000..3087ecbd9c Binary files /dev/null and b/modular_citadel/sound/vox/echo.wav differ diff --git a/modular_citadel/sound/vox/ed.wav b/modular_citadel/sound/vox/ed.wav new file mode 100644 index 0000000000..71303ffe0a Binary files /dev/null and b/modular_citadel/sound/vox/ed.wav differ diff --git a/modular_citadel/sound/vox/effect.wav b/modular_citadel/sound/vox/effect.wav new file mode 100644 index 0000000000..a0128cf698 Binary files /dev/null and b/modular_citadel/sound/vox/effect.wav differ diff --git a/modular_citadel/sound/vox/egress.wav b/modular_citadel/sound/vox/egress.wav new file mode 100644 index 0000000000..47fa437ce8 Binary files /dev/null and b/modular_citadel/sound/vox/egress.wav differ diff --git a/modular_citadel/sound/vox/eight.wav b/modular_citadel/sound/vox/eight.wav new file mode 100644 index 0000000000..4fef5c2eb7 Binary files /dev/null and b/modular_citadel/sound/vox/eight.wav differ diff --git a/modular_citadel/sound/vox/eighteen.wav b/modular_citadel/sound/vox/eighteen.wav new file mode 100644 index 0000000000..1aff299ad2 Binary files /dev/null and b/modular_citadel/sound/vox/eighteen.wav differ diff --git a/modular_citadel/sound/vox/eighty.wav b/modular_citadel/sound/vox/eighty.wav new file mode 100644 index 0000000000..a1f54835db Binary files /dev/null and b/modular_citadel/sound/vox/eighty.wav differ diff --git a/modular_citadel/sound/vox/electric.wav b/modular_citadel/sound/vox/electric.wav new file mode 100644 index 0000000000..48c4fe0176 Binary files /dev/null and b/modular_citadel/sound/vox/electric.wav differ diff --git a/modular_citadel/sound/vox/electromagnetic.wav b/modular_citadel/sound/vox/electromagnetic.wav new file mode 100644 index 0000000000..886c76ef6b Binary files /dev/null and b/modular_citadel/sound/vox/electromagnetic.wav differ diff --git a/modular_citadel/sound/vox/elevator.wav b/modular_citadel/sound/vox/elevator.wav new file mode 100644 index 0000000000..a4d4144849 Binary files /dev/null and b/modular_citadel/sound/vox/elevator.wav differ diff --git a/modular_citadel/sound/vox/eleven.wav b/modular_citadel/sound/vox/eleven.wav new file mode 100644 index 0000000000..5473a25411 Binary files /dev/null and b/modular_citadel/sound/vox/eleven.wav differ diff --git a/modular_citadel/sound/vox/eliminate.wav b/modular_citadel/sound/vox/eliminate.wav new file mode 100644 index 0000000000..d4e51affb3 Binary files /dev/null and b/modular_citadel/sound/vox/eliminate.wav differ diff --git a/modular_citadel/sound/vox/emergency.wav b/modular_citadel/sound/vox/emergency.wav new file mode 100644 index 0000000000..62bb34ef41 Binary files /dev/null and b/modular_citadel/sound/vox/emergency.wav differ diff --git a/modular_citadel/sound/vox/energy.wav b/modular_citadel/sound/vox/energy.wav new file mode 100644 index 0000000000..b66ed4db10 Binary files /dev/null and b/modular_citadel/sound/vox/energy.wav differ diff --git a/modular_citadel/sound/vox/engage.wav b/modular_citadel/sound/vox/engage.wav new file mode 100644 index 0000000000..11a43c40a7 Binary files /dev/null and b/modular_citadel/sound/vox/engage.wav differ diff --git a/modular_citadel/sound/vox/engaged.wav b/modular_citadel/sound/vox/engaged.wav new file mode 100644 index 0000000000..a47cbb5977 Binary files /dev/null and b/modular_citadel/sound/vox/engaged.wav differ diff --git a/modular_citadel/sound/vox/engine.wav b/modular_citadel/sound/vox/engine.wav new file mode 100644 index 0000000000..f6ab907c5b Binary files /dev/null and b/modular_citadel/sound/vox/engine.wav differ diff --git a/modular_citadel/sound/vox/enter.wav b/modular_citadel/sound/vox/enter.wav new file mode 100644 index 0000000000..f3f53ea821 Binary files /dev/null and b/modular_citadel/sound/vox/enter.wav differ diff --git a/modular_citadel/sound/vox/entry.wav b/modular_citadel/sound/vox/entry.wav new file mode 100644 index 0000000000..a027e1a7e5 Binary files /dev/null and b/modular_citadel/sound/vox/entry.wav differ diff --git a/modular_citadel/sound/vox/environment.wav b/modular_citadel/sound/vox/environment.wav new file mode 100644 index 0000000000..6ab7d940cc Binary files /dev/null and b/modular_citadel/sound/vox/environment.wav differ diff --git a/modular_citadel/sound/vox/error.wav b/modular_citadel/sound/vox/error.wav new file mode 100644 index 0000000000..05b2bebf60 Binary files /dev/null and b/modular_citadel/sound/vox/error.wav differ diff --git a/modular_citadel/sound/vox/escape.wav b/modular_citadel/sound/vox/escape.wav new file mode 100644 index 0000000000..dbf3c954f5 Binary files /dev/null and b/modular_citadel/sound/vox/escape.wav differ diff --git a/modular_citadel/sound/vox/evacuate.wav b/modular_citadel/sound/vox/evacuate.wav new file mode 100644 index 0000000000..2766662cd2 Binary files /dev/null and b/modular_citadel/sound/vox/evacuate.wav differ diff --git a/modular_citadel/sound/vox/exchange.wav b/modular_citadel/sound/vox/exchange.wav new file mode 100644 index 0000000000..73426aea01 Binary files /dev/null and b/modular_citadel/sound/vox/exchange.wav differ diff --git a/modular_citadel/sound/vox/exit.wav b/modular_citadel/sound/vox/exit.wav new file mode 100644 index 0000000000..85680b3212 Binary files /dev/null and b/modular_citadel/sound/vox/exit.wav differ diff --git a/modular_citadel/sound/vox/expect.wav b/modular_citadel/sound/vox/expect.wav new file mode 100644 index 0000000000..a562e53a9a Binary files /dev/null and b/modular_citadel/sound/vox/expect.wav differ diff --git a/modular_citadel/sound/vox/experiment.wav b/modular_citadel/sound/vox/experiment.wav new file mode 100644 index 0000000000..3f60c2181b Binary files /dev/null and b/modular_citadel/sound/vox/experiment.wav differ diff --git a/modular_citadel/sound/vox/experimental.wav b/modular_citadel/sound/vox/experimental.wav new file mode 100644 index 0000000000..fbf75a59d3 Binary files /dev/null and b/modular_citadel/sound/vox/experimental.wav differ diff --git a/modular_citadel/sound/vox/explode.wav b/modular_citadel/sound/vox/explode.wav new file mode 100644 index 0000000000..847e64562c Binary files /dev/null and b/modular_citadel/sound/vox/explode.wav differ diff --git a/modular_citadel/sound/vox/explosion.wav b/modular_citadel/sound/vox/explosion.wav new file mode 100644 index 0000000000..a2e442ec2f Binary files /dev/null and b/modular_citadel/sound/vox/explosion.wav differ diff --git a/modular_citadel/sound/vox/exposure.wav b/modular_citadel/sound/vox/exposure.wav new file mode 100644 index 0000000000..37a933ca62 Binary files /dev/null and b/modular_citadel/sound/vox/exposure.wav differ diff --git a/modular_citadel/sound/vox/exterminate.wav b/modular_citadel/sound/vox/exterminate.wav new file mode 100644 index 0000000000..f1c3c233d6 Binary files /dev/null and b/modular_citadel/sound/vox/exterminate.wav differ diff --git a/modular_citadel/sound/vox/extinguish.wav b/modular_citadel/sound/vox/extinguish.wav new file mode 100644 index 0000000000..1fc83d9e7e Binary files /dev/null and b/modular_citadel/sound/vox/extinguish.wav differ diff --git a/modular_citadel/sound/vox/extinguisher.wav b/modular_citadel/sound/vox/extinguisher.wav new file mode 100644 index 0000000000..eed3164bfc Binary files /dev/null and b/modular_citadel/sound/vox/extinguisher.wav differ diff --git a/modular_citadel/sound/vox/extreme.wav b/modular_citadel/sound/vox/extreme.wav new file mode 100644 index 0000000000..0fc3adfb50 Binary files /dev/null and b/modular_citadel/sound/vox/extreme.wav differ diff --git a/modular_citadel/sound/vox/f.wav b/modular_citadel/sound/vox/f.wav new file mode 100644 index 0000000000..0f06b33886 Binary files /dev/null and b/modular_citadel/sound/vox/f.wav differ diff --git a/modular_citadel/sound/vox/facility.wav b/modular_citadel/sound/vox/facility.wav new file mode 100644 index 0000000000..812445e3dd Binary files /dev/null and b/modular_citadel/sound/vox/facility.wav differ diff --git a/modular_citadel/sound/vox/fahrenheit.wav b/modular_citadel/sound/vox/fahrenheit.wav new file mode 100644 index 0000000000..96411aabdc Binary files /dev/null and b/modular_citadel/sound/vox/fahrenheit.wav differ diff --git a/modular_citadel/sound/vox/failed.wav b/modular_citadel/sound/vox/failed.wav new file mode 100644 index 0000000000..f717b05375 Binary files /dev/null and b/modular_citadel/sound/vox/failed.wav differ diff --git a/modular_citadel/sound/vox/failure.wav b/modular_citadel/sound/vox/failure.wav new file mode 100644 index 0000000000..dd662fc5a6 Binary files /dev/null and b/modular_citadel/sound/vox/failure.wav differ diff --git a/modular_citadel/sound/vox/farthest.wav b/modular_citadel/sound/vox/farthest.wav new file mode 100644 index 0000000000..fcca7a432e Binary files /dev/null and b/modular_citadel/sound/vox/farthest.wav differ diff --git a/modular_citadel/sound/vox/fast.wav b/modular_citadel/sound/vox/fast.wav new file mode 100644 index 0000000000..821885a739 Binary files /dev/null and b/modular_citadel/sound/vox/fast.wav differ diff --git a/modular_citadel/sound/vox/feet.wav b/modular_citadel/sound/vox/feet.wav new file mode 100644 index 0000000000..5adc5dbd62 Binary files /dev/null and b/modular_citadel/sound/vox/feet.wav differ diff --git a/modular_citadel/sound/vox/field.wav b/modular_citadel/sound/vox/field.wav new file mode 100644 index 0000000000..6cc1ab42f8 Binary files /dev/null and b/modular_citadel/sound/vox/field.wav differ diff --git a/modular_citadel/sound/vox/fifteen.wav b/modular_citadel/sound/vox/fifteen.wav new file mode 100644 index 0000000000..63ca382128 Binary files /dev/null and b/modular_citadel/sound/vox/fifteen.wav differ diff --git a/modular_citadel/sound/vox/fifth.wav b/modular_citadel/sound/vox/fifth.wav new file mode 100644 index 0000000000..3886e043bf Binary files /dev/null and b/modular_citadel/sound/vox/fifth.wav differ diff --git a/modular_citadel/sound/vox/fifty.wav b/modular_citadel/sound/vox/fifty.wav new file mode 100644 index 0000000000..80f7b11103 Binary files /dev/null and b/modular_citadel/sound/vox/fifty.wav differ diff --git a/modular_citadel/sound/vox/final.wav b/modular_citadel/sound/vox/final.wav new file mode 100644 index 0000000000..d4c807af6e Binary files /dev/null and b/modular_citadel/sound/vox/final.wav differ diff --git a/modular_citadel/sound/vox/fine.wav b/modular_citadel/sound/vox/fine.wav new file mode 100644 index 0000000000..f74d8fbfaa Binary files /dev/null and b/modular_citadel/sound/vox/fine.wav differ diff --git a/modular_citadel/sound/vox/fire.wav b/modular_citadel/sound/vox/fire.wav new file mode 100644 index 0000000000..ce0a45d9c6 Binary files /dev/null and b/modular_citadel/sound/vox/fire.wav differ diff --git a/modular_citadel/sound/vox/first.wav b/modular_citadel/sound/vox/first.wav new file mode 100644 index 0000000000..18a7fdf7af Binary files /dev/null and b/modular_citadel/sound/vox/first.wav differ diff --git a/modular_citadel/sound/vox/five.wav b/modular_citadel/sound/vox/five.wav new file mode 100644 index 0000000000..aa23cbe9cf Binary files /dev/null and b/modular_citadel/sound/vox/five.wav differ diff --git a/modular_citadel/sound/vox/flooding.wav b/modular_citadel/sound/vox/flooding.wav new file mode 100644 index 0000000000..7b9f5bcc69 Binary files /dev/null and b/modular_citadel/sound/vox/flooding.wav differ diff --git a/modular_citadel/sound/vox/floor.wav b/modular_citadel/sound/vox/floor.wav new file mode 100644 index 0000000000..b086549164 Binary files /dev/null and b/modular_citadel/sound/vox/floor.wav differ diff --git a/modular_citadel/sound/vox/fool.wav b/modular_citadel/sound/vox/fool.wav new file mode 100644 index 0000000000..327b3f5b59 Binary files /dev/null and b/modular_citadel/sound/vox/fool.wav differ diff --git a/modular_citadel/sound/vox/for.wav b/modular_citadel/sound/vox/for.wav new file mode 100644 index 0000000000..84f793dece Binary files /dev/null and b/modular_citadel/sound/vox/for.wav differ diff --git a/modular_citadel/sound/vox/forbidden.wav b/modular_citadel/sound/vox/forbidden.wav new file mode 100644 index 0000000000..f4d742505e Binary files /dev/null and b/modular_citadel/sound/vox/forbidden.wav differ diff --git a/modular_citadel/sound/vox/force.wav b/modular_citadel/sound/vox/force.wav new file mode 100644 index 0000000000..3745c71418 Binary files /dev/null and b/modular_citadel/sound/vox/force.wav differ diff --git a/modular_citadel/sound/vox/forms.wav b/modular_citadel/sound/vox/forms.wav new file mode 100644 index 0000000000..642e201abc Binary files /dev/null and b/modular_citadel/sound/vox/forms.wav differ diff --git a/modular_citadel/sound/vox/found.wav b/modular_citadel/sound/vox/found.wav new file mode 100644 index 0000000000..59da4031fc Binary files /dev/null and b/modular_citadel/sound/vox/found.wav differ diff --git a/modular_citadel/sound/vox/four.wav b/modular_citadel/sound/vox/four.wav new file mode 100644 index 0000000000..a614cbcdc5 Binary files /dev/null and b/modular_citadel/sound/vox/four.wav differ diff --git a/modular_citadel/sound/vox/fourteen.wav b/modular_citadel/sound/vox/fourteen.wav new file mode 100644 index 0000000000..aa0846855b Binary files /dev/null and b/modular_citadel/sound/vox/fourteen.wav differ diff --git a/modular_citadel/sound/vox/fourth.wav b/modular_citadel/sound/vox/fourth.wav new file mode 100644 index 0000000000..5c9071d292 Binary files /dev/null and b/modular_citadel/sound/vox/fourth.wav differ diff --git a/modular_citadel/sound/vox/fourty.wav b/modular_citadel/sound/vox/fourty.wav new file mode 100644 index 0000000000..6bb8fb3e12 Binary files /dev/null and b/modular_citadel/sound/vox/fourty.wav differ diff --git a/modular_citadel/sound/vox/foxtrot.wav b/modular_citadel/sound/vox/foxtrot.wav new file mode 100644 index 0000000000..ece21be942 Binary files /dev/null and b/modular_citadel/sound/vox/foxtrot.wav differ diff --git a/modular_citadel/sound/vox/freeman.wav b/modular_citadel/sound/vox/freeman.wav new file mode 100644 index 0000000000..26a9ae229b Binary files /dev/null and b/modular_citadel/sound/vox/freeman.wav differ diff --git a/modular_citadel/sound/vox/freezer.wav b/modular_citadel/sound/vox/freezer.wav new file mode 100644 index 0000000000..32da861548 Binary files /dev/null and b/modular_citadel/sound/vox/freezer.wav differ diff --git a/modular_citadel/sound/vox/from.wav b/modular_citadel/sound/vox/from.wav new file mode 100644 index 0000000000..46541abe65 Binary files /dev/null and b/modular_citadel/sound/vox/from.wav differ diff --git a/modular_citadel/sound/vox/front.wav b/modular_citadel/sound/vox/front.wav new file mode 100644 index 0000000000..46d600144d Binary files /dev/null and b/modular_citadel/sound/vox/front.wav differ diff --git a/modular_citadel/sound/vox/fuel.wav b/modular_citadel/sound/vox/fuel.wav new file mode 100644 index 0000000000..1b2256b006 Binary files /dev/null and b/modular_citadel/sound/vox/fuel.wav differ diff --git a/modular_citadel/sound/vox/g.wav b/modular_citadel/sound/vox/g.wav new file mode 100644 index 0000000000..37f5ce8010 Binary files /dev/null and b/modular_citadel/sound/vox/g.wav differ diff --git a/modular_citadel/sound/vox/get.wav b/modular_citadel/sound/vox/get.wav new file mode 100644 index 0000000000..9dd512d512 Binary files /dev/null and b/modular_citadel/sound/vox/get.wav differ diff --git a/modular_citadel/sound/vox/go.wav b/modular_citadel/sound/vox/go.wav new file mode 100644 index 0000000000..665989a94f Binary files /dev/null and b/modular_citadel/sound/vox/go.wav differ diff --git a/modular_citadel/sound/vox/going.wav b/modular_citadel/sound/vox/going.wav new file mode 100644 index 0000000000..308b1b6890 Binary files /dev/null and b/modular_citadel/sound/vox/going.wav differ diff --git a/modular_citadel/sound/vox/good.wav b/modular_citadel/sound/vox/good.wav new file mode 100644 index 0000000000..bf15c9c2b4 Binary files /dev/null and b/modular_citadel/sound/vox/good.wav differ diff --git a/modular_citadel/sound/vox/goodbye.wav b/modular_citadel/sound/vox/goodbye.wav new file mode 100644 index 0000000000..2599ca560c Binary files /dev/null and b/modular_citadel/sound/vox/goodbye.wav differ diff --git a/modular_citadel/sound/vox/gordon.wav b/modular_citadel/sound/vox/gordon.wav new file mode 100644 index 0000000000..51c7195091 Binary files /dev/null and b/modular_citadel/sound/vox/gordon.wav differ diff --git a/modular_citadel/sound/vox/got.wav b/modular_citadel/sound/vox/got.wav new file mode 100644 index 0000000000..b2b47c9d2e Binary files /dev/null and b/modular_citadel/sound/vox/got.wav differ diff --git a/modular_citadel/sound/vox/government.wav b/modular_citadel/sound/vox/government.wav new file mode 100644 index 0000000000..17e7fa8fbf Binary files /dev/null and b/modular_citadel/sound/vox/government.wav differ diff --git a/modular_citadel/sound/vox/granted.wav b/modular_citadel/sound/vox/granted.wav new file mode 100644 index 0000000000..661bf0506f Binary files /dev/null and b/modular_citadel/sound/vox/granted.wav differ diff --git a/modular_citadel/sound/vox/great.wav b/modular_citadel/sound/vox/great.wav new file mode 100644 index 0000000000..8640b88fb6 Binary files /dev/null and b/modular_citadel/sound/vox/great.wav differ diff --git a/modular_citadel/sound/vox/green.wav b/modular_citadel/sound/vox/green.wav new file mode 100644 index 0000000000..0eb5558231 Binary files /dev/null and b/modular_citadel/sound/vox/green.wav differ diff --git a/modular_citadel/sound/vox/grenade.wav b/modular_citadel/sound/vox/grenade.wav new file mode 100644 index 0000000000..7b2d80ed6d Binary files /dev/null and b/modular_citadel/sound/vox/grenade.wav differ diff --git a/modular_citadel/sound/vox/guard.wav b/modular_citadel/sound/vox/guard.wav new file mode 100644 index 0000000000..e715dc641c Binary files /dev/null and b/modular_citadel/sound/vox/guard.wav differ diff --git a/modular_citadel/sound/vox/gulf.wav b/modular_citadel/sound/vox/gulf.wav new file mode 100644 index 0000000000..95b3e9fc4f Binary files /dev/null and b/modular_citadel/sound/vox/gulf.wav differ diff --git a/modular_citadel/sound/vox/gun.wav b/modular_citadel/sound/vox/gun.wav new file mode 100644 index 0000000000..86e3ac1cbb Binary files /dev/null and b/modular_citadel/sound/vox/gun.wav differ diff --git a/modular_citadel/sound/vox/guthrie.wav b/modular_citadel/sound/vox/guthrie.wav new file mode 100644 index 0000000000..362ab46d60 Binary files /dev/null and b/modular_citadel/sound/vox/guthrie.wav differ diff --git a/modular_citadel/sound/vox/handling.wav b/modular_citadel/sound/vox/handling.wav new file mode 100644 index 0000000000..b9c7c5f581 Binary files /dev/null and b/modular_citadel/sound/vox/handling.wav differ diff --git a/modular_citadel/sound/vox/hangar.wav b/modular_citadel/sound/vox/hangar.wav new file mode 100644 index 0000000000..e937054af9 Binary files /dev/null and b/modular_citadel/sound/vox/hangar.wav differ diff --git a/modular_citadel/sound/vox/has.wav b/modular_citadel/sound/vox/has.wav new file mode 100644 index 0000000000..625a110f07 Binary files /dev/null and b/modular_citadel/sound/vox/has.wav differ diff --git a/modular_citadel/sound/vox/have.wav b/modular_citadel/sound/vox/have.wav new file mode 100644 index 0000000000..c5f0794a1f Binary files /dev/null and b/modular_citadel/sound/vox/have.wav differ diff --git a/modular_citadel/sound/vox/hazard.wav b/modular_citadel/sound/vox/hazard.wav new file mode 100644 index 0000000000..b311552c76 Binary files /dev/null and b/modular_citadel/sound/vox/hazard.wav differ diff --git a/modular_citadel/sound/vox/head.wav b/modular_citadel/sound/vox/head.wav new file mode 100644 index 0000000000..ed8e9d88c6 Binary files /dev/null and b/modular_citadel/sound/vox/head.wav differ diff --git a/modular_citadel/sound/vox/health.wav b/modular_citadel/sound/vox/health.wav new file mode 100644 index 0000000000..e3158318f4 Binary files /dev/null and b/modular_citadel/sound/vox/health.wav differ diff --git a/modular_citadel/sound/vox/heat.wav b/modular_citadel/sound/vox/heat.wav new file mode 100644 index 0000000000..ca0b345225 Binary files /dev/null and b/modular_citadel/sound/vox/heat.wav differ diff --git a/modular_citadel/sound/vox/helicopter.wav b/modular_citadel/sound/vox/helicopter.wav new file mode 100644 index 0000000000..22e5449443 Binary files /dev/null and b/modular_citadel/sound/vox/helicopter.wav differ diff --git a/modular_citadel/sound/vox/helium.wav b/modular_citadel/sound/vox/helium.wav new file mode 100644 index 0000000000..fbb8197cb0 Binary files /dev/null and b/modular_citadel/sound/vox/helium.wav differ diff --git a/modular_citadel/sound/vox/hello.wav b/modular_citadel/sound/vox/hello.wav new file mode 100644 index 0000000000..7e61fec55e Binary files /dev/null and b/modular_citadel/sound/vox/hello.wav differ diff --git a/modular_citadel/sound/vox/help.wav b/modular_citadel/sound/vox/help.wav new file mode 100644 index 0000000000..5bef919ee9 Binary files /dev/null and b/modular_citadel/sound/vox/help.wav differ diff --git a/modular_citadel/sound/vox/here.wav b/modular_citadel/sound/vox/here.wav new file mode 100644 index 0000000000..e6d74f47f7 Binary files /dev/null and b/modular_citadel/sound/vox/here.wav differ diff --git a/modular_citadel/sound/vox/hide.wav b/modular_citadel/sound/vox/hide.wav new file mode 100644 index 0000000000..f7bb32b283 Binary files /dev/null and b/modular_citadel/sound/vox/hide.wav differ diff --git a/modular_citadel/sound/vox/high.wav b/modular_citadel/sound/vox/high.wav new file mode 100644 index 0000000000..832bf16040 Binary files /dev/null and b/modular_citadel/sound/vox/high.wav differ diff --git a/modular_citadel/sound/vox/highest.wav b/modular_citadel/sound/vox/highest.wav new file mode 100644 index 0000000000..ef4b2caf39 Binary files /dev/null and b/modular_citadel/sound/vox/highest.wav differ diff --git a/modular_citadel/sound/vox/hit.wav b/modular_citadel/sound/vox/hit.wav new file mode 100644 index 0000000000..d70619a3f5 Binary files /dev/null and b/modular_citadel/sound/vox/hit.wav differ diff --git a/modular_citadel/sound/vox/hole.wav b/modular_citadel/sound/vox/hole.wav new file mode 100644 index 0000000000..afb46f59ad Binary files /dev/null and b/modular_citadel/sound/vox/hole.wav differ diff --git a/modular_citadel/sound/vox/hostile.wav b/modular_citadel/sound/vox/hostile.wav new file mode 100644 index 0000000000..4dc88f26c6 Binary files /dev/null and b/modular_citadel/sound/vox/hostile.wav differ diff --git a/modular_citadel/sound/vox/hot.wav b/modular_citadel/sound/vox/hot.wav new file mode 100644 index 0000000000..7ced07279b Binary files /dev/null and b/modular_citadel/sound/vox/hot.wav differ diff --git a/modular_citadel/sound/vox/hotel.wav b/modular_citadel/sound/vox/hotel.wav new file mode 100644 index 0000000000..dde78cf2a1 Binary files /dev/null and b/modular_citadel/sound/vox/hotel.wav differ diff --git a/modular_citadel/sound/vox/hour.wav b/modular_citadel/sound/vox/hour.wav new file mode 100644 index 0000000000..d428bd779e Binary files /dev/null and b/modular_citadel/sound/vox/hour.wav differ diff --git a/modular_citadel/sound/vox/hours.wav b/modular_citadel/sound/vox/hours.wav new file mode 100644 index 0000000000..63a2470427 Binary files /dev/null and b/modular_citadel/sound/vox/hours.wav differ diff --git a/modular_citadel/sound/vox/hundred.wav b/modular_citadel/sound/vox/hundred.wav new file mode 100644 index 0000000000..8d3a8a0b4a Binary files /dev/null and b/modular_citadel/sound/vox/hundred.wav differ diff --git a/modular_citadel/sound/vox/hydro.wav b/modular_citadel/sound/vox/hydro.wav new file mode 100644 index 0000000000..9653b7bf73 Binary files /dev/null and b/modular_citadel/sound/vox/hydro.wav differ diff --git a/modular_citadel/sound/vox/i.wav b/modular_citadel/sound/vox/i.wav new file mode 100644 index 0000000000..b98a48fd29 Binary files /dev/null and b/modular_citadel/sound/vox/i.wav differ diff --git a/modular_citadel/sound/vox/idiot.wav b/modular_citadel/sound/vox/idiot.wav new file mode 100644 index 0000000000..8c19f9d7a4 Binary files /dev/null and b/modular_citadel/sound/vox/idiot.wav differ diff --git a/modular_citadel/sound/vox/illegal.wav b/modular_citadel/sound/vox/illegal.wav new file mode 100644 index 0000000000..6087e6ba7d Binary files /dev/null and b/modular_citadel/sound/vox/illegal.wav differ diff --git a/modular_citadel/sound/vox/immediate.wav b/modular_citadel/sound/vox/immediate.wav new file mode 100644 index 0000000000..19fab3c842 Binary files /dev/null and b/modular_citadel/sound/vox/immediate.wav differ diff --git a/modular_citadel/sound/vox/immediately.wav b/modular_citadel/sound/vox/immediately.wav new file mode 100644 index 0000000000..f2716edf0e Binary files /dev/null and b/modular_citadel/sound/vox/immediately.wav differ diff --git a/modular_citadel/sound/vox/in.wav b/modular_citadel/sound/vox/in.wav new file mode 100644 index 0000000000..e15bb9a6d5 Binary files /dev/null and b/modular_citadel/sound/vox/in.wav differ diff --git a/modular_citadel/sound/vox/inches.wav b/modular_citadel/sound/vox/inches.wav new file mode 100644 index 0000000000..fc8e89ce7b Binary files /dev/null and b/modular_citadel/sound/vox/inches.wav differ diff --git a/modular_citadel/sound/vox/india.wav b/modular_citadel/sound/vox/india.wav new file mode 100644 index 0000000000..991f9af5e0 Binary files /dev/null and b/modular_citadel/sound/vox/india.wav differ diff --git a/modular_citadel/sound/vox/ing.wav b/modular_citadel/sound/vox/ing.wav new file mode 100644 index 0000000000..0728905c34 Binary files /dev/null and b/modular_citadel/sound/vox/ing.wav differ diff --git a/modular_citadel/sound/vox/inoperative.wav b/modular_citadel/sound/vox/inoperative.wav new file mode 100644 index 0000000000..6822cc5fc3 Binary files /dev/null and b/modular_citadel/sound/vox/inoperative.wav differ diff --git a/modular_citadel/sound/vox/inside.wav b/modular_citadel/sound/vox/inside.wav new file mode 100644 index 0000000000..03cb903c24 Binary files /dev/null and b/modular_citadel/sound/vox/inside.wav differ diff --git a/modular_citadel/sound/vox/inspection.wav b/modular_citadel/sound/vox/inspection.wav new file mode 100644 index 0000000000..3aecb74626 Binary files /dev/null and b/modular_citadel/sound/vox/inspection.wav differ diff --git a/modular_citadel/sound/vox/inspector.wav b/modular_citadel/sound/vox/inspector.wav new file mode 100644 index 0000000000..06a54a3670 Binary files /dev/null and b/modular_citadel/sound/vox/inspector.wav differ diff --git a/modular_citadel/sound/vox/interchange.wav b/modular_citadel/sound/vox/interchange.wav new file mode 100644 index 0000000000..c7814162b4 Binary files /dev/null and b/modular_citadel/sound/vox/interchange.wav differ diff --git a/modular_citadel/sound/vox/intruder.wav b/modular_citadel/sound/vox/intruder.wav new file mode 100644 index 0000000000..a32958f0be Binary files /dev/null and b/modular_citadel/sound/vox/intruder.wav differ diff --git a/modular_citadel/sound/vox/invallid.wav b/modular_citadel/sound/vox/invallid.wav new file mode 100644 index 0000000000..fbf3b4e524 Binary files /dev/null and b/modular_citadel/sound/vox/invallid.wav differ diff --git a/modular_citadel/sound/vox/invasion.wav b/modular_citadel/sound/vox/invasion.wav new file mode 100644 index 0000000000..0024f331d4 Binary files /dev/null and b/modular_citadel/sound/vox/invasion.wav differ diff --git a/modular_citadel/sound/vox/is.wav b/modular_citadel/sound/vox/is.wav new file mode 100644 index 0000000000..0eecb1a7b7 Binary files /dev/null and b/modular_citadel/sound/vox/is.wav differ diff --git a/modular_citadel/sound/vox/it.wav b/modular_citadel/sound/vox/it.wav new file mode 100644 index 0000000000..1e96daf6bb Binary files /dev/null and b/modular_citadel/sound/vox/it.wav differ diff --git a/modular_citadel/sound/vox/johnson.wav b/modular_citadel/sound/vox/johnson.wav new file mode 100644 index 0000000000..1cef742cf6 Binary files /dev/null and b/modular_citadel/sound/vox/johnson.wav differ diff --git a/modular_citadel/sound/vox/juliet.wav b/modular_citadel/sound/vox/juliet.wav new file mode 100644 index 0000000000..88a78517ca Binary files /dev/null and b/modular_citadel/sound/vox/juliet.wav differ diff --git a/modular_citadel/sound/vox/key.wav b/modular_citadel/sound/vox/key.wav new file mode 100644 index 0000000000..ba42b393db Binary files /dev/null and b/modular_citadel/sound/vox/key.wav differ diff --git a/modular_citadel/sound/vox/kill.wav b/modular_citadel/sound/vox/kill.wav new file mode 100644 index 0000000000..9ae66ac5f6 Binary files /dev/null and b/modular_citadel/sound/vox/kill.wav differ diff --git a/modular_citadel/sound/vox/kilo.wav b/modular_citadel/sound/vox/kilo.wav new file mode 100644 index 0000000000..e30904cafb Binary files /dev/null and b/modular_citadel/sound/vox/kilo.wav differ diff --git a/modular_citadel/sound/vox/kit.wav b/modular_citadel/sound/vox/kit.wav new file mode 100644 index 0000000000..b6cf53a547 Binary files /dev/null and b/modular_citadel/sound/vox/kit.wav differ diff --git a/modular_citadel/sound/vox/lab.wav b/modular_citadel/sound/vox/lab.wav new file mode 100644 index 0000000000..8b2518fe57 Binary files /dev/null and b/modular_citadel/sound/vox/lab.wav differ diff --git a/modular_citadel/sound/vox/lambda.wav b/modular_citadel/sound/vox/lambda.wav new file mode 100644 index 0000000000..a238ac9d96 Binary files /dev/null and b/modular_citadel/sound/vox/lambda.wav differ diff --git a/modular_citadel/sound/vox/laser.wav b/modular_citadel/sound/vox/laser.wav new file mode 100644 index 0000000000..7617aa65d7 Binary files /dev/null and b/modular_citadel/sound/vox/laser.wav differ diff --git a/modular_citadel/sound/vox/last.wav b/modular_citadel/sound/vox/last.wav new file mode 100644 index 0000000000..458d13af62 Binary files /dev/null and b/modular_citadel/sound/vox/last.wav differ diff --git a/modular_citadel/sound/vox/launch.wav b/modular_citadel/sound/vox/launch.wav new file mode 100644 index 0000000000..66fd2224ce Binary files /dev/null and b/modular_citadel/sound/vox/launch.wav differ diff --git a/modular_citadel/sound/vox/leak.wav b/modular_citadel/sound/vox/leak.wav new file mode 100644 index 0000000000..0ec0fc786d Binary files /dev/null and b/modular_citadel/sound/vox/leak.wav differ diff --git a/modular_citadel/sound/vox/leave.wav b/modular_citadel/sound/vox/leave.wav new file mode 100644 index 0000000000..ce45698813 Binary files /dev/null and b/modular_citadel/sound/vox/leave.wav differ diff --git a/modular_citadel/sound/vox/left.wav b/modular_citadel/sound/vox/left.wav new file mode 100644 index 0000000000..2621d07fbd Binary files /dev/null and b/modular_citadel/sound/vox/left.wav differ diff --git a/modular_citadel/sound/vox/legal.wav b/modular_citadel/sound/vox/legal.wav new file mode 100644 index 0000000000..928033759d Binary files /dev/null and b/modular_citadel/sound/vox/legal.wav differ diff --git a/modular_citadel/sound/vox/level.wav b/modular_citadel/sound/vox/level.wav new file mode 100644 index 0000000000..1f01010dd0 Binary files /dev/null and b/modular_citadel/sound/vox/level.wav differ diff --git a/modular_citadel/sound/vox/lever.wav b/modular_citadel/sound/vox/lever.wav new file mode 100644 index 0000000000..a863fdc77a Binary files /dev/null and b/modular_citadel/sound/vox/lever.wav differ diff --git a/modular_citadel/sound/vox/lie.wav b/modular_citadel/sound/vox/lie.wav new file mode 100644 index 0000000000..01b8749a0c Binary files /dev/null and b/modular_citadel/sound/vox/lie.wav differ diff --git a/modular_citadel/sound/vox/lieutenant.wav b/modular_citadel/sound/vox/lieutenant.wav new file mode 100644 index 0000000000..f749f2782a Binary files /dev/null and b/modular_citadel/sound/vox/lieutenant.wav differ diff --git a/modular_citadel/sound/vox/life.wav b/modular_citadel/sound/vox/life.wav new file mode 100644 index 0000000000..fd739b4593 Binary files /dev/null and b/modular_citadel/sound/vox/life.wav differ diff --git a/modular_citadel/sound/vox/light.wav b/modular_citadel/sound/vox/light.wav new file mode 100644 index 0000000000..69be049955 Binary files /dev/null and b/modular_citadel/sound/vox/light.wav differ diff --git a/modular_citadel/sound/vox/lima.wav b/modular_citadel/sound/vox/lima.wav new file mode 100644 index 0000000000..d0cf4d0581 Binary files /dev/null and b/modular_citadel/sound/vox/lima.wav differ diff --git a/modular_citadel/sound/vox/liquid.wav b/modular_citadel/sound/vox/liquid.wav new file mode 100644 index 0000000000..9f77a868e7 Binary files /dev/null and b/modular_citadel/sound/vox/liquid.wav differ diff --git a/modular_citadel/sound/vox/loading.wav b/modular_citadel/sound/vox/loading.wav new file mode 100644 index 0000000000..f5404ef81b Binary files /dev/null and b/modular_citadel/sound/vox/loading.wav differ diff --git a/modular_citadel/sound/vox/locate.wav b/modular_citadel/sound/vox/locate.wav new file mode 100644 index 0000000000..6b605a8d2d Binary files /dev/null and b/modular_citadel/sound/vox/locate.wav differ diff --git a/modular_citadel/sound/vox/located.wav b/modular_citadel/sound/vox/located.wav new file mode 100644 index 0000000000..19fb575525 Binary files /dev/null and b/modular_citadel/sound/vox/located.wav differ diff --git a/modular_citadel/sound/vox/location.wav b/modular_citadel/sound/vox/location.wav new file mode 100644 index 0000000000..149b0ec027 Binary files /dev/null and b/modular_citadel/sound/vox/location.wav differ diff --git a/modular_citadel/sound/vox/lock.wav b/modular_citadel/sound/vox/lock.wav new file mode 100644 index 0000000000..a62efba6b9 Binary files /dev/null and b/modular_citadel/sound/vox/lock.wav differ diff --git a/modular_citadel/sound/vox/locked.wav b/modular_citadel/sound/vox/locked.wav new file mode 100644 index 0000000000..8d197f2502 Binary files /dev/null and b/modular_citadel/sound/vox/locked.wav differ diff --git a/modular_citadel/sound/vox/locker.wav b/modular_citadel/sound/vox/locker.wav new file mode 100644 index 0000000000..e6f9dfe299 Binary files /dev/null and b/modular_citadel/sound/vox/locker.wav differ diff --git a/modular_citadel/sound/vox/lockout.wav b/modular_citadel/sound/vox/lockout.wav new file mode 100644 index 0000000000..b2cd0fb64d Binary files /dev/null and b/modular_citadel/sound/vox/lockout.wav differ diff --git a/modular_citadel/sound/vox/lower.wav b/modular_citadel/sound/vox/lower.wav new file mode 100644 index 0000000000..a654c1d424 Binary files /dev/null and b/modular_citadel/sound/vox/lower.wav differ diff --git a/modular_citadel/sound/vox/lowest.wav b/modular_citadel/sound/vox/lowest.wav new file mode 100644 index 0000000000..63fdaf93f0 Binary files /dev/null and b/modular_citadel/sound/vox/lowest.wav differ diff --git a/modular_citadel/sound/vox/magnetic.wav b/modular_citadel/sound/vox/magnetic.wav new file mode 100644 index 0000000000..68deeeae9c Binary files /dev/null and b/modular_citadel/sound/vox/magnetic.wav differ diff --git a/modular_citadel/sound/vox/main.wav b/modular_citadel/sound/vox/main.wav new file mode 100644 index 0000000000..4657274912 Binary files /dev/null and b/modular_citadel/sound/vox/main.wav differ diff --git a/modular_citadel/sound/vox/maintenance.wav b/modular_citadel/sound/vox/maintenance.wav new file mode 100644 index 0000000000..ebca04c9d6 Binary files /dev/null and b/modular_citadel/sound/vox/maintenance.wav differ diff --git a/modular_citadel/sound/vox/malfunction.wav b/modular_citadel/sound/vox/malfunction.wav new file mode 100644 index 0000000000..51d999b41f Binary files /dev/null and b/modular_citadel/sound/vox/malfunction.wav differ diff --git a/modular_citadel/sound/vox/man.wav b/modular_citadel/sound/vox/man.wav new file mode 100644 index 0000000000..64525a4f23 Binary files /dev/null and b/modular_citadel/sound/vox/man.wav differ diff --git a/modular_citadel/sound/vox/mass.wav b/modular_citadel/sound/vox/mass.wav new file mode 100644 index 0000000000..c7825984aa Binary files /dev/null and b/modular_citadel/sound/vox/mass.wav differ diff --git a/modular_citadel/sound/vox/materials.wav b/modular_citadel/sound/vox/materials.wav new file mode 100644 index 0000000000..c983ae71a8 Binary files /dev/null and b/modular_citadel/sound/vox/materials.wav differ diff --git a/modular_citadel/sound/vox/maximum.wav b/modular_citadel/sound/vox/maximum.wav new file mode 100644 index 0000000000..f1dbc8062d Binary files /dev/null and b/modular_citadel/sound/vox/maximum.wav differ diff --git a/modular_citadel/sound/vox/may.wav b/modular_citadel/sound/vox/may.wav new file mode 100644 index 0000000000..a238738703 Binary files /dev/null and b/modular_citadel/sound/vox/may.wav differ diff --git a/modular_citadel/sound/vox/medical.wav b/modular_citadel/sound/vox/medical.wav new file mode 100644 index 0000000000..ece7f0c4c5 Binary files /dev/null and b/modular_citadel/sound/vox/medical.wav differ diff --git a/modular_citadel/sound/vox/men.wav b/modular_citadel/sound/vox/men.wav new file mode 100644 index 0000000000..594523da0a Binary files /dev/null and b/modular_citadel/sound/vox/men.wav differ diff --git a/modular_citadel/sound/vox/mercy.wav b/modular_citadel/sound/vox/mercy.wav new file mode 100644 index 0000000000..8416b25dae Binary files /dev/null and b/modular_citadel/sound/vox/mercy.wav differ diff --git a/modular_citadel/sound/vox/mesa.wav b/modular_citadel/sound/vox/mesa.wav new file mode 100644 index 0000000000..fcb1d9843c Binary files /dev/null and b/modular_citadel/sound/vox/mesa.wav differ diff --git a/modular_citadel/sound/vox/message.wav b/modular_citadel/sound/vox/message.wav new file mode 100644 index 0000000000..b0b769db72 Binary files /dev/null and b/modular_citadel/sound/vox/message.wav differ diff --git a/modular_citadel/sound/vox/meter.wav b/modular_citadel/sound/vox/meter.wav new file mode 100644 index 0000000000..ca063bddad Binary files /dev/null and b/modular_citadel/sound/vox/meter.wav differ diff --git a/modular_citadel/sound/vox/micro.wav b/modular_citadel/sound/vox/micro.wav new file mode 100644 index 0000000000..7869b97cec Binary files /dev/null and b/modular_citadel/sound/vox/micro.wav differ diff --git a/modular_citadel/sound/vox/middle.wav b/modular_citadel/sound/vox/middle.wav new file mode 100644 index 0000000000..b58a5878a9 Binary files /dev/null and b/modular_citadel/sound/vox/middle.wav differ diff --git a/modular_citadel/sound/vox/mike.wav b/modular_citadel/sound/vox/mike.wav new file mode 100644 index 0000000000..a008bdefed Binary files /dev/null and b/modular_citadel/sound/vox/mike.wav differ diff --git a/modular_citadel/sound/vox/miles.wav b/modular_citadel/sound/vox/miles.wav new file mode 100644 index 0000000000..9b04a790ea Binary files /dev/null and b/modular_citadel/sound/vox/miles.wav differ diff --git a/modular_citadel/sound/vox/military.wav b/modular_citadel/sound/vox/military.wav new file mode 100644 index 0000000000..8387dc3b6c Binary files /dev/null and b/modular_citadel/sound/vox/military.wav differ diff --git a/modular_citadel/sound/vox/milli.wav b/modular_citadel/sound/vox/milli.wav new file mode 100644 index 0000000000..cc0b3e4c97 Binary files /dev/null and b/modular_citadel/sound/vox/milli.wav differ diff --git a/modular_citadel/sound/vox/million.wav b/modular_citadel/sound/vox/million.wav new file mode 100644 index 0000000000..6409eb0760 Binary files /dev/null and b/modular_citadel/sound/vox/million.wav differ diff --git a/modular_citadel/sound/vox/minefield.wav b/modular_citadel/sound/vox/minefield.wav new file mode 100644 index 0000000000..2af1c21367 Binary files /dev/null and b/modular_citadel/sound/vox/minefield.wav differ diff --git a/modular_citadel/sound/vox/minimum.wav b/modular_citadel/sound/vox/minimum.wav new file mode 100644 index 0000000000..ee184ce4fc Binary files /dev/null and b/modular_citadel/sound/vox/minimum.wav differ diff --git a/modular_citadel/sound/vox/minutes.wav b/modular_citadel/sound/vox/minutes.wav new file mode 100644 index 0000000000..2e9fb914ed Binary files /dev/null and b/modular_citadel/sound/vox/minutes.wav differ diff --git a/modular_citadel/sound/vox/mister.wav b/modular_citadel/sound/vox/mister.wav new file mode 100644 index 0000000000..27507cfb09 Binary files /dev/null and b/modular_citadel/sound/vox/mister.wav differ diff --git a/modular_citadel/sound/vox/mode.wav b/modular_citadel/sound/vox/mode.wav new file mode 100644 index 0000000000..e1060e9661 Binary files /dev/null and b/modular_citadel/sound/vox/mode.wav differ diff --git a/modular_citadel/sound/vox/motor.wav b/modular_citadel/sound/vox/motor.wav new file mode 100644 index 0000000000..7d1dbaeba4 Binary files /dev/null and b/modular_citadel/sound/vox/motor.wav differ diff --git a/modular_citadel/sound/vox/motorpool.wav b/modular_citadel/sound/vox/motorpool.wav new file mode 100644 index 0000000000..ae5a6af0d6 Binary files /dev/null and b/modular_citadel/sound/vox/motorpool.wav differ diff --git a/modular_citadel/sound/vox/move.wav b/modular_citadel/sound/vox/move.wav new file mode 100644 index 0000000000..1bc2172297 Binary files /dev/null and b/modular_citadel/sound/vox/move.wav differ diff --git a/modular_citadel/sound/vox/must.wav b/modular_citadel/sound/vox/must.wav new file mode 100644 index 0000000000..3e6e965bec Binary files /dev/null and b/modular_citadel/sound/vox/must.wav differ diff --git a/modular_citadel/sound/vox/nearest.wav b/modular_citadel/sound/vox/nearest.wav new file mode 100644 index 0000000000..3f84ee7241 Binary files /dev/null and b/modular_citadel/sound/vox/nearest.wav differ diff --git a/modular_citadel/sound/vox/nice.wav b/modular_citadel/sound/vox/nice.wav new file mode 100644 index 0000000000..8bd140649f Binary files /dev/null and b/modular_citadel/sound/vox/nice.wav differ diff --git a/modular_citadel/sound/vox/nine.wav b/modular_citadel/sound/vox/nine.wav new file mode 100644 index 0000000000..b85745edf9 Binary files /dev/null and b/modular_citadel/sound/vox/nine.wav differ diff --git a/modular_citadel/sound/vox/nineteen.wav b/modular_citadel/sound/vox/nineteen.wav new file mode 100644 index 0000000000..c6da48310b Binary files /dev/null and b/modular_citadel/sound/vox/nineteen.wav differ diff --git a/modular_citadel/sound/vox/ninety.wav b/modular_citadel/sound/vox/ninety.wav new file mode 100644 index 0000000000..74e2e02d41 Binary files /dev/null and b/modular_citadel/sound/vox/ninety.wav differ diff --git a/modular_citadel/sound/vox/no.wav b/modular_citadel/sound/vox/no.wav new file mode 100644 index 0000000000..ced1b6617c Binary files /dev/null and b/modular_citadel/sound/vox/no.wav differ diff --git a/modular_citadel/sound/vox/nominal.wav b/modular_citadel/sound/vox/nominal.wav new file mode 100644 index 0000000000..f0656302d1 Binary files /dev/null and b/modular_citadel/sound/vox/nominal.wav differ diff --git a/modular_citadel/sound/vox/north.wav b/modular_citadel/sound/vox/north.wav new file mode 100644 index 0000000000..4867fdc7bc Binary files /dev/null and b/modular_citadel/sound/vox/north.wav differ diff --git a/modular_citadel/sound/vox/not.wav b/modular_citadel/sound/vox/not.wav new file mode 100644 index 0000000000..626cd17774 Binary files /dev/null and b/modular_citadel/sound/vox/not.wav differ diff --git a/modular_citadel/sound/vox/november.wav b/modular_citadel/sound/vox/november.wav new file mode 100644 index 0000000000..212efe5f9a Binary files /dev/null and b/modular_citadel/sound/vox/november.wav differ diff --git a/modular_citadel/sound/vox/now.wav b/modular_citadel/sound/vox/now.wav new file mode 100644 index 0000000000..0619087d59 Binary files /dev/null and b/modular_citadel/sound/vox/now.wav differ diff --git a/modular_citadel/sound/vox/number.wav b/modular_citadel/sound/vox/number.wav new file mode 100644 index 0000000000..cfec10a75e Binary files /dev/null and b/modular_citadel/sound/vox/number.wav differ diff --git a/modular_citadel/sound/vox/objective.wav b/modular_citadel/sound/vox/objective.wav new file mode 100644 index 0000000000..14ea571aa6 Binary files /dev/null and b/modular_citadel/sound/vox/objective.wav differ diff --git a/modular_citadel/sound/vox/observation.wav b/modular_citadel/sound/vox/observation.wav new file mode 100644 index 0000000000..9141789671 Binary files /dev/null and b/modular_citadel/sound/vox/observation.wav differ diff --git a/modular_citadel/sound/vox/of.wav b/modular_citadel/sound/vox/of.wav new file mode 100644 index 0000000000..7cf5427dfb Binary files /dev/null and b/modular_citadel/sound/vox/of.wav differ diff --git a/modular_citadel/sound/vox/officer.wav b/modular_citadel/sound/vox/officer.wav new file mode 100644 index 0000000000..9017915aef Binary files /dev/null and b/modular_citadel/sound/vox/officer.wav differ diff --git a/modular_citadel/sound/vox/ok.wav b/modular_citadel/sound/vox/ok.wav new file mode 100644 index 0000000000..66011aed6d Binary files /dev/null and b/modular_citadel/sound/vox/ok.wav differ diff --git a/modular_citadel/sound/vox/on.wav b/modular_citadel/sound/vox/on.wav new file mode 100644 index 0000000000..2b97a1fd46 Binary files /dev/null and b/modular_citadel/sound/vox/on.wav differ diff --git a/modular_citadel/sound/vox/one.wav b/modular_citadel/sound/vox/one.wav new file mode 100644 index 0000000000..57f2b3f14d Binary files /dev/null and b/modular_citadel/sound/vox/one.wav differ diff --git a/modular_citadel/sound/vox/open.wav b/modular_citadel/sound/vox/open.wav new file mode 100644 index 0000000000..be98260bb9 Binary files /dev/null and b/modular_citadel/sound/vox/open.wav differ diff --git a/modular_citadel/sound/vox/operating.wav b/modular_citadel/sound/vox/operating.wav new file mode 100644 index 0000000000..b218069420 Binary files /dev/null and b/modular_citadel/sound/vox/operating.wav differ diff --git a/modular_citadel/sound/vox/operations.wav b/modular_citadel/sound/vox/operations.wav new file mode 100644 index 0000000000..37c9d75e0e Binary files /dev/null and b/modular_citadel/sound/vox/operations.wav differ diff --git a/modular_citadel/sound/vox/operative.wav b/modular_citadel/sound/vox/operative.wav new file mode 100644 index 0000000000..70f99029cd Binary files /dev/null and b/modular_citadel/sound/vox/operative.wav differ diff --git a/modular_citadel/sound/vox/option.wav b/modular_citadel/sound/vox/option.wav new file mode 100644 index 0000000000..a5199b71de Binary files /dev/null and b/modular_citadel/sound/vox/option.wav differ diff --git a/modular_citadel/sound/vox/order.wav b/modular_citadel/sound/vox/order.wav new file mode 100644 index 0000000000..c5a2548340 Binary files /dev/null and b/modular_citadel/sound/vox/order.wav differ diff --git a/modular_citadel/sound/vox/organic.wav b/modular_citadel/sound/vox/organic.wav new file mode 100644 index 0000000000..78dc879d7c Binary files /dev/null and b/modular_citadel/sound/vox/organic.wav differ diff --git a/modular_citadel/sound/vox/oscar.wav b/modular_citadel/sound/vox/oscar.wav new file mode 100644 index 0000000000..32db2392d5 Binary files /dev/null and b/modular_citadel/sound/vox/oscar.wav differ diff --git a/modular_citadel/sound/vox/out.wav b/modular_citadel/sound/vox/out.wav new file mode 100644 index 0000000000..4aca4d7070 Binary files /dev/null and b/modular_citadel/sound/vox/out.wav differ diff --git a/modular_citadel/sound/vox/outside.wav b/modular_citadel/sound/vox/outside.wav new file mode 100644 index 0000000000..62993ea5e4 Binary files /dev/null and b/modular_citadel/sound/vox/outside.wav differ diff --git a/modular_citadel/sound/vox/over.wav b/modular_citadel/sound/vox/over.wav new file mode 100644 index 0000000000..8068c74f73 Binary files /dev/null and b/modular_citadel/sound/vox/over.wav differ diff --git a/modular_citadel/sound/vox/overload.wav b/modular_citadel/sound/vox/overload.wav new file mode 100644 index 0000000000..d932cb3ded Binary files /dev/null and b/modular_citadel/sound/vox/overload.wav differ diff --git a/modular_citadel/sound/vox/override.wav b/modular_citadel/sound/vox/override.wav new file mode 100644 index 0000000000..132667e7ea Binary files /dev/null and b/modular_citadel/sound/vox/override.wav differ diff --git a/modular_citadel/sound/vox/pacify.wav b/modular_citadel/sound/vox/pacify.wav new file mode 100644 index 0000000000..6a596197d7 Binary files /dev/null and b/modular_citadel/sound/vox/pacify.wav differ diff --git a/modular_citadel/sound/vox/pain.wav b/modular_citadel/sound/vox/pain.wav new file mode 100644 index 0000000000..bdb30dded8 Binary files /dev/null and b/modular_citadel/sound/vox/pain.wav differ diff --git a/modular_citadel/sound/vox/pal.wav b/modular_citadel/sound/vox/pal.wav new file mode 100644 index 0000000000..28eb17ce99 Binary files /dev/null and b/modular_citadel/sound/vox/pal.wav differ diff --git a/modular_citadel/sound/vox/panel.wav b/modular_citadel/sound/vox/panel.wav new file mode 100644 index 0000000000..ce1f22fd23 Binary files /dev/null and b/modular_citadel/sound/vox/panel.wav differ diff --git a/modular_citadel/sound/vox/percent.wav b/modular_citadel/sound/vox/percent.wav new file mode 100644 index 0000000000..9e775863ae Binary files /dev/null and b/modular_citadel/sound/vox/percent.wav differ diff --git a/modular_citadel/sound/vox/perimeter.wav b/modular_citadel/sound/vox/perimeter.wav new file mode 100644 index 0000000000..91a8d95d91 Binary files /dev/null and b/modular_citadel/sound/vox/perimeter.wav differ diff --git a/modular_citadel/sound/vox/permitted.wav b/modular_citadel/sound/vox/permitted.wav new file mode 100644 index 0000000000..015d10eaa8 Binary files /dev/null and b/modular_citadel/sound/vox/permitted.wav differ diff --git a/modular_citadel/sound/vox/personnel.wav b/modular_citadel/sound/vox/personnel.wav new file mode 100644 index 0000000000..665a3215c9 Binary files /dev/null and b/modular_citadel/sound/vox/personnel.wav differ diff --git a/modular_citadel/sound/vox/pipe.wav b/modular_citadel/sound/vox/pipe.wav new file mode 100644 index 0000000000..53abe7db8b Binary files /dev/null and b/modular_citadel/sound/vox/pipe.wav differ diff --git a/modular_citadel/sound/vox/plant.wav b/modular_citadel/sound/vox/plant.wav new file mode 100644 index 0000000000..8fc84c60ac Binary files /dev/null and b/modular_citadel/sound/vox/plant.wav differ diff --git a/modular_citadel/sound/vox/platform.wav b/modular_citadel/sound/vox/platform.wav new file mode 100644 index 0000000000..72ca2c179f Binary files /dev/null and b/modular_citadel/sound/vox/platform.wav differ diff --git a/modular_citadel/sound/vox/please.wav b/modular_citadel/sound/vox/please.wav new file mode 100644 index 0000000000..4dc346e3e0 Binary files /dev/null and b/modular_citadel/sound/vox/please.wav differ diff --git a/modular_citadel/sound/vox/point.wav b/modular_citadel/sound/vox/point.wav new file mode 100644 index 0000000000..26e4ca508b Binary files /dev/null and b/modular_citadel/sound/vox/point.wav differ diff --git a/modular_citadel/sound/vox/portal.wav b/modular_citadel/sound/vox/portal.wav new file mode 100644 index 0000000000..2f093e9924 Binary files /dev/null and b/modular_citadel/sound/vox/portal.wav differ diff --git a/modular_citadel/sound/vox/power.wav b/modular_citadel/sound/vox/power.wav new file mode 100644 index 0000000000..3256e3ee99 Binary files /dev/null and b/modular_citadel/sound/vox/power.wav differ diff --git a/modular_citadel/sound/vox/presence.wav b/modular_citadel/sound/vox/presence.wav new file mode 100644 index 0000000000..c7a3b8f1e0 Binary files /dev/null and b/modular_citadel/sound/vox/presence.wav differ diff --git a/modular_citadel/sound/vox/press.wav b/modular_citadel/sound/vox/press.wav new file mode 100644 index 0000000000..138ef0f2eb Binary files /dev/null and b/modular_citadel/sound/vox/press.wav differ diff --git a/modular_citadel/sound/vox/primary.wav b/modular_citadel/sound/vox/primary.wav new file mode 100644 index 0000000000..ed107abdd1 Binary files /dev/null and b/modular_citadel/sound/vox/primary.wav differ diff --git a/modular_citadel/sound/vox/proceed.wav b/modular_citadel/sound/vox/proceed.wav new file mode 100644 index 0000000000..ec5ba2f438 Binary files /dev/null and b/modular_citadel/sound/vox/proceed.wav differ diff --git a/modular_citadel/sound/vox/processing.wav b/modular_citadel/sound/vox/processing.wav new file mode 100644 index 0000000000..3470d8eb07 Binary files /dev/null and b/modular_citadel/sound/vox/processing.wav differ diff --git a/modular_citadel/sound/vox/progress.wav b/modular_citadel/sound/vox/progress.wav new file mode 100644 index 0000000000..ab2ef1914f Binary files /dev/null and b/modular_citadel/sound/vox/progress.wav differ diff --git a/modular_citadel/sound/vox/proper.wav b/modular_citadel/sound/vox/proper.wav new file mode 100644 index 0000000000..fb799ae067 Binary files /dev/null and b/modular_citadel/sound/vox/proper.wav differ diff --git a/modular_citadel/sound/vox/propulsion.wav b/modular_citadel/sound/vox/propulsion.wav new file mode 100644 index 0000000000..cc60270a56 Binary files /dev/null and b/modular_citadel/sound/vox/propulsion.wav differ diff --git a/modular_citadel/sound/vox/prosecute.wav b/modular_citadel/sound/vox/prosecute.wav new file mode 100644 index 0000000000..9d76be850b Binary files /dev/null and b/modular_citadel/sound/vox/prosecute.wav differ diff --git a/modular_citadel/sound/vox/protective.wav b/modular_citadel/sound/vox/protective.wav new file mode 100644 index 0000000000..be17714e62 Binary files /dev/null and b/modular_citadel/sound/vox/protective.wav differ diff --git a/modular_citadel/sound/vox/push.wav b/modular_citadel/sound/vox/push.wav new file mode 100644 index 0000000000..db91cb1229 Binary files /dev/null and b/modular_citadel/sound/vox/push.wav differ diff --git a/modular_citadel/sound/vox/quantum.wav b/modular_citadel/sound/vox/quantum.wav new file mode 100644 index 0000000000..3e5ee45d7b Binary files /dev/null and b/modular_citadel/sound/vox/quantum.wav differ diff --git a/modular_citadel/sound/vox/quebec.wav b/modular_citadel/sound/vox/quebec.wav new file mode 100644 index 0000000000..6323a992cb Binary files /dev/null and b/modular_citadel/sound/vox/quebec.wav differ diff --git a/modular_citadel/sound/vox/question.wav b/modular_citadel/sound/vox/question.wav new file mode 100644 index 0000000000..cf6de8dd52 Binary files /dev/null and b/modular_citadel/sound/vox/question.wav differ diff --git a/modular_citadel/sound/vox/questioning.wav b/modular_citadel/sound/vox/questioning.wav new file mode 100644 index 0000000000..51f08488dc Binary files /dev/null and b/modular_citadel/sound/vox/questioning.wav differ diff --git a/modular_citadel/sound/vox/quick.wav b/modular_citadel/sound/vox/quick.wav new file mode 100644 index 0000000000..82c6c493d7 Binary files /dev/null and b/modular_citadel/sound/vox/quick.wav differ diff --git a/modular_citadel/sound/vox/quit.wav b/modular_citadel/sound/vox/quit.wav new file mode 100644 index 0000000000..1ee00b87a1 Binary files /dev/null and b/modular_citadel/sound/vox/quit.wav differ diff --git a/modular_citadel/sound/vox/radiation.wav b/modular_citadel/sound/vox/radiation.wav new file mode 100644 index 0000000000..5551f24b44 Binary files /dev/null and b/modular_citadel/sound/vox/radiation.wav differ diff --git a/modular_citadel/sound/vox/radioactive.wav b/modular_citadel/sound/vox/radioactive.wav new file mode 100644 index 0000000000..84b3b4a180 Binary files /dev/null and b/modular_citadel/sound/vox/radioactive.wav differ diff --git a/modular_citadel/sound/vox/rads.wav b/modular_citadel/sound/vox/rads.wav new file mode 100644 index 0000000000..13802ea302 Binary files /dev/null and b/modular_citadel/sound/vox/rads.wav differ diff --git a/modular_citadel/sound/vox/rapid.wav b/modular_citadel/sound/vox/rapid.wav new file mode 100644 index 0000000000..fdfdd10faa Binary files /dev/null and b/modular_citadel/sound/vox/rapid.wav differ diff --git a/modular_citadel/sound/vox/reach.wav b/modular_citadel/sound/vox/reach.wav new file mode 100644 index 0000000000..5b2ec24bd4 Binary files /dev/null and b/modular_citadel/sound/vox/reach.wav differ diff --git a/modular_citadel/sound/vox/reached.wav b/modular_citadel/sound/vox/reached.wav new file mode 100644 index 0000000000..22bd766019 Binary files /dev/null and b/modular_citadel/sound/vox/reached.wav differ diff --git a/modular_citadel/sound/vox/reactor.wav b/modular_citadel/sound/vox/reactor.wav new file mode 100644 index 0000000000..c8fb909be0 Binary files /dev/null and b/modular_citadel/sound/vox/reactor.wav differ diff --git a/modular_citadel/sound/vox/red.wav b/modular_citadel/sound/vox/red.wav new file mode 100644 index 0000000000..777e546648 Binary files /dev/null and b/modular_citadel/sound/vox/red.wav differ diff --git a/modular_citadel/sound/vox/relay.wav b/modular_citadel/sound/vox/relay.wav new file mode 100644 index 0000000000..bef9fb0927 Binary files /dev/null and b/modular_citadel/sound/vox/relay.wav differ diff --git a/modular_citadel/sound/vox/released.wav b/modular_citadel/sound/vox/released.wav new file mode 100644 index 0000000000..ba56d6d955 Binary files /dev/null and b/modular_citadel/sound/vox/released.wav differ diff --git a/modular_citadel/sound/vox/remaining.wav b/modular_citadel/sound/vox/remaining.wav new file mode 100644 index 0000000000..0c393ee9d1 Binary files /dev/null and b/modular_citadel/sound/vox/remaining.wav differ diff --git a/modular_citadel/sound/vox/renegade.wav b/modular_citadel/sound/vox/renegade.wav new file mode 100644 index 0000000000..0dc4518edc Binary files /dev/null and b/modular_citadel/sound/vox/renegade.wav differ diff --git a/modular_citadel/sound/vox/repair.wav b/modular_citadel/sound/vox/repair.wav new file mode 100644 index 0000000000..be2fe5418e Binary files /dev/null and b/modular_citadel/sound/vox/repair.wav differ diff --git a/modular_citadel/sound/vox/report.wav b/modular_citadel/sound/vox/report.wav new file mode 100644 index 0000000000..685c387894 Binary files /dev/null and b/modular_citadel/sound/vox/report.wav differ diff --git a/modular_citadel/sound/vox/reports.wav b/modular_citadel/sound/vox/reports.wav new file mode 100644 index 0000000000..19e8f0478b Binary files /dev/null and b/modular_citadel/sound/vox/reports.wav differ diff --git a/modular_citadel/sound/vox/required.wav b/modular_citadel/sound/vox/required.wav new file mode 100644 index 0000000000..c5bbf850b4 Binary files /dev/null and b/modular_citadel/sound/vox/required.wav differ diff --git a/modular_citadel/sound/vox/research.wav b/modular_citadel/sound/vox/research.wav new file mode 100644 index 0000000000..d7385867da Binary files /dev/null and b/modular_citadel/sound/vox/research.wav differ diff --git a/modular_citadel/sound/vox/resevoir.wav b/modular_citadel/sound/vox/resevoir.wav new file mode 100644 index 0000000000..7b67635b92 Binary files /dev/null and b/modular_citadel/sound/vox/resevoir.wav differ diff --git a/modular_citadel/sound/vox/resistance.wav b/modular_citadel/sound/vox/resistance.wav new file mode 100644 index 0000000000..1f3f90b0f9 Binary files /dev/null and b/modular_citadel/sound/vox/resistance.wav differ diff --git a/modular_citadel/sound/vox/right.wav b/modular_citadel/sound/vox/right.wav new file mode 100644 index 0000000000..0c920c843d Binary files /dev/null and b/modular_citadel/sound/vox/right.wav differ diff --git a/modular_citadel/sound/vox/rocket.wav b/modular_citadel/sound/vox/rocket.wav new file mode 100644 index 0000000000..57d7e6a8e0 Binary files /dev/null and b/modular_citadel/sound/vox/rocket.wav differ diff --git a/modular_citadel/sound/vox/roger.wav b/modular_citadel/sound/vox/roger.wav new file mode 100644 index 0000000000..426014be23 Binary files /dev/null and b/modular_citadel/sound/vox/roger.wav differ diff --git a/modular_citadel/sound/vox/romeo.wav b/modular_citadel/sound/vox/romeo.wav new file mode 100644 index 0000000000..42590922e4 Binary files /dev/null and b/modular_citadel/sound/vox/romeo.wav differ diff --git a/modular_citadel/sound/vox/room.wav b/modular_citadel/sound/vox/room.wav new file mode 100644 index 0000000000..da12c55fea Binary files /dev/null and b/modular_citadel/sound/vox/room.wav differ diff --git a/modular_citadel/sound/vox/round.wav b/modular_citadel/sound/vox/round.wav new file mode 100644 index 0000000000..76d30382eb Binary files /dev/null and b/modular_citadel/sound/vox/round.wav differ diff --git a/modular_citadel/sound/vox/run.wav b/modular_citadel/sound/vox/run.wav new file mode 100644 index 0000000000..f2baec69b1 Binary files /dev/null and b/modular_citadel/sound/vox/run.wav differ diff --git a/modular_citadel/sound/vox/safe.wav b/modular_citadel/sound/vox/safe.wav new file mode 100644 index 0000000000..65d52fbcdc Binary files /dev/null and b/modular_citadel/sound/vox/safe.wav differ diff --git a/modular_citadel/sound/vox/safety.wav b/modular_citadel/sound/vox/safety.wav new file mode 100644 index 0000000000..b24e8951b2 Binary files /dev/null and b/modular_citadel/sound/vox/safety.wav differ diff --git a/modular_citadel/sound/vox/sargeant.wav b/modular_citadel/sound/vox/sargeant.wav new file mode 100644 index 0000000000..e26c6a301e Binary files /dev/null and b/modular_citadel/sound/vox/sargeant.wav differ diff --git a/modular_citadel/sound/vox/satellite.wav b/modular_citadel/sound/vox/satellite.wav new file mode 100644 index 0000000000..45187b819b Binary files /dev/null and b/modular_citadel/sound/vox/satellite.wav differ diff --git a/modular_citadel/sound/vox/save.wav b/modular_citadel/sound/vox/save.wav new file mode 100644 index 0000000000..db09e27539 Binary files /dev/null and b/modular_citadel/sound/vox/save.wav differ diff --git a/modular_citadel/sound/vox/science.wav b/modular_citadel/sound/vox/science.wav new file mode 100644 index 0000000000..cb1f2d7236 Binary files /dev/null and b/modular_citadel/sound/vox/science.wav differ diff --git a/modular_citadel/sound/vox/scream.wav b/modular_citadel/sound/vox/scream.wav new file mode 100644 index 0000000000..66afd0983d Binary files /dev/null and b/modular_citadel/sound/vox/scream.wav differ diff --git a/modular_citadel/sound/vox/screen.wav b/modular_citadel/sound/vox/screen.wav new file mode 100644 index 0000000000..bb375266bb Binary files /dev/null and b/modular_citadel/sound/vox/screen.wav differ diff --git a/modular_citadel/sound/vox/search.wav b/modular_citadel/sound/vox/search.wav new file mode 100644 index 0000000000..023072d989 Binary files /dev/null and b/modular_citadel/sound/vox/search.wav differ diff --git a/modular_citadel/sound/vox/second.wav b/modular_citadel/sound/vox/second.wav new file mode 100644 index 0000000000..dbed0caa0a Binary files /dev/null and b/modular_citadel/sound/vox/second.wav differ diff --git a/modular_citadel/sound/vox/secondary.wav b/modular_citadel/sound/vox/secondary.wav new file mode 100644 index 0000000000..af29ac286c Binary files /dev/null and b/modular_citadel/sound/vox/secondary.wav differ diff --git a/modular_citadel/sound/vox/seconds.wav b/modular_citadel/sound/vox/seconds.wav new file mode 100644 index 0000000000..a631ea1db0 Binary files /dev/null and b/modular_citadel/sound/vox/seconds.wav differ diff --git a/modular_citadel/sound/vox/sector.wav b/modular_citadel/sound/vox/sector.wav new file mode 100644 index 0000000000..2318ccf631 Binary files /dev/null and b/modular_citadel/sound/vox/sector.wav differ diff --git a/modular_citadel/sound/vox/secure.wav b/modular_citadel/sound/vox/secure.wav new file mode 100644 index 0000000000..17fe6225ff Binary files /dev/null and b/modular_citadel/sound/vox/secure.wav differ diff --git a/modular_citadel/sound/vox/secured.wav b/modular_citadel/sound/vox/secured.wav new file mode 100644 index 0000000000..8007a48c0d Binary files /dev/null and b/modular_citadel/sound/vox/secured.wav differ diff --git a/modular_citadel/sound/vox/security.wav b/modular_citadel/sound/vox/security.wav new file mode 100644 index 0000000000..16435fdf51 Binary files /dev/null and b/modular_citadel/sound/vox/security.wav differ diff --git a/modular_citadel/sound/vox/select.wav b/modular_citadel/sound/vox/select.wav new file mode 100644 index 0000000000..9b89d52bb0 Binary files /dev/null and b/modular_citadel/sound/vox/select.wav differ diff --git a/modular_citadel/sound/vox/selected.wav b/modular_citadel/sound/vox/selected.wav new file mode 100644 index 0000000000..d4124f579a Binary files /dev/null and b/modular_citadel/sound/vox/selected.wav differ diff --git a/modular_citadel/sound/vox/service.wav b/modular_citadel/sound/vox/service.wav new file mode 100644 index 0000000000..3f6957d2e0 Binary files /dev/null and b/modular_citadel/sound/vox/service.wav differ diff --git a/modular_citadel/sound/vox/seven.wav b/modular_citadel/sound/vox/seven.wav new file mode 100644 index 0000000000..eca99c196a Binary files /dev/null and b/modular_citadel/sound/vox/seven.wav differ diff --git a/modular_citadel/sound/vox/seventeen.wav b/modular_citadel/sound/vox/seventeen.wav new file mode 100644 index 0000000000..9526b8a4e3 Binary files /dev/null and b/modular_citadel/sound/vox/seventeen.wav differ diff --git a/modular_citadel/sound/vox/seventy.wav b/modular_citadel/sound/vox/seventy.wav new file mode 100644 index 0000000000..1b45ce6afe Binary files /dev/null and b/modular_citadel/sound/vox/seventy.wav differ diff --git a/modular_citadel/sound/vox/severe.wav b/modular_citadel/sound/vox/severe.wav new file mode 100644 index 0000000000..fed84eea85 Binary files /dev/null and b/modular_citadel/sound/vox/severe.wav differ diff --git a/modular_citadel/sound/vox/sewage.wav b/modular_citadel/sound/vox/sewage.wav new file mode 100644 index 0000000000..60978963e2 Binary files /dev/null and b/modular_citadel/sound/vox/sewage.wav differ diff --git a/modular_citadel/sound/vox/sewer.wav b/modular_citadel/sound/vox/sewer.wav new file mode 100644 index 0000000000..5071a1d64a Binary files /dev/null and b/modular_citadel/sound/vox/sewer.wav differ diff --git a/modular_citadel/sound/vox/shield.wav b/modular_citadel/sound/vox/shield.wav new file mode 100644 index 0000000000..0ab01e0a6a Binary files /dev/null and b/modular_citadel/sound/vox/shield.wav differ diff --git a/modular_citadel/sound/vox/shipment.wav b/modular_citadel/sound/vox/shipment.wav new file mode 100644 index 0000000000..9b9014c51d Binary files /dev/null and b/modular_citadel/sound/vox/shipment.wav differ diff --git a/modular_citadel/sound/vox/shock.wav b/modular_citadel/sound/vox/shock.wav new file mode 100644 index 0000000000..d4451bdf3c Binary files /dev/null and b/modular_citadel/sound/vox/shock.wav differ diff --git a/modular_citadel/sound/vox/shoot.wav b/modular_citadel/sound/vox/shoot.wav new file mode 100644 index 0000000000..5661ceb9c9 Binary files /dev/null and b/modular_citadel/sound/vox/shoot.wav differ diff --git a/modular_citadel/sound/vox/shower.wav b/modular_citadel/sound/vox/shower.wav new file mode 100644 index 0000000000..c32a9e42e0 Binary files /dev/null and b/modular_citadel/sound/vox/shower.wav differ diff --git a/modular_citadel/sound/vox/shut.wav b/modular_citadel/sound/vox/shut.wav new file mode 100644 index 0000000000..6f68340502 Binary files /dev/null and b/modular_citadel/sound/vox/shut.wav differ diff --git a/modular_citadel/sound/vox/side.wav b/modular_citadel/sound/vox/side.wav new file mode 100644 index 0000000000..4f4091a4e5 Binary files /dev/null and b/modular_citadel/sound/vox/side.wav differ diff --git a/modular_citadel/sound/vox/sierra.wav b/modular_citadel/sound/vox/sierra.wav new file mode 100644 index 0000000000..0e52a6ec56 Binary files /dev/null and b/modular_citadel/sound/vox/sierra.wav differ diff --git a/modular_citadel/sound/vox/sight.wav b/modular_citadel/sound/vox/sight.wav new file mode 100644 index 0000000000..5d479cab75 Binary files /dev/null and b/modular_citadel/sound/vox/sight.wav differ diff --git a/modular_citadel/sound/vox/silo.wav b/modular_citadel/sound/vox/silo.wav new file mode 100644 index 0000000000..daf9f28be1 Binary files /dev/null and b/modular_citadel/sound/vox/silo.wav differ diff --git a/modular_citadel/sound/vox/six.wav b/modular_citadel/sound/vox/six.wav new file mode 100644 index 0000000000..aa6bb638e3 Binary files /dev/null and b/modular_citadel/sound/vox/six.wav differ diff --git a/modular_citadel/sound/vox/sixteen.wav b/modular_citadel/sound/vox/sixteen.wav new file mode 100644 index 0000000000..6f2db2ad9d Binary files /dev/null and b/modular_citadel/sound/vox/sixteen.wav differ diff --git a/modular_citadel/sound/vox/sixty.wav b/modular_citadel/sound/vox/sixty.wav new file mode 100644 index 0000000000..19610c7f79 Binary files /dev/null and b/modular_citadel/sound/vox/sixty.wav differ diff --git a/modular_citadel/sound/vox/slime.wav b/modular_citadel/sound/vox/slime.wav new file mode 100644 index 0000000000..4d1d3cf6a4 Binary files /dev/null and b/modular_citadel/sound/vox/slime.wav differ diff --git a/modular_citadel/sound/vox/slow.wav b/modular_citadel/sound/vox/slow.wav new file mode 100644 index 0000000000..75101b7de4 Binary files /dev/null and b/modular_citadel/sound/vox/slow.wav differ diff --git a/modular_citadel/sound/vox/soldier.wav b/modular_citadel/sound/vox/soldier.wav new file mode 100644 index 0000000000..c84ce20178 Binary files /dev/null and b/modular_citadel/sound/vox/soldier.wav differ diff --git a/modular_citadel/sound/vox/some.wav b/modular_citadel/sound/vox/some.wav new file mode 100644 index 0000000000..c4ba34efff Binary files /dev/null and b/modular_citadel/sound/vox/some.wav differ diff --git a/modular_citadel/sound/vox/someone.wav b/modular_citadel/sound/vox/someone.wav new file mode 100644 index 0000000000..6f6183e1f7 Binary files /dev/null and b/modular_citadel/sound/vox/someone.wav differ diff --git a/modular_citadel/sound/vox/something.wav b/modular_citadel/sound/vox/something.wav new file mode 100644 index 0000000000..4601140095 Binary files /dev/null and b/modular_citadel/sound/vox/something.wav differ diff --git a/modular_citadel/sound/vox/son.wav b/modular_citadel/sound/vox/son.wav new file mode 100644 index 0000000000..f23495127e Binary files /dev/null and b/modular_citadel/sound/vox/son.wav differ diff --git a/modular_citadel/sound/vox/sorry.wav b/modular_citadel/sound/vox/sorry.wav new file mode 100644 index 0000000000..4c0725b938 Binary files /dev/null and b/modular_citadel/sound/vox/sorry.wav differ diff --git a/modular_citadel/sound/vox/south.wav b/modular_citadel/sound/vox/south.wav new file mode 100644 index 0000000000..3a5ba00410 Binary files /dev/null and b/modular_citadel/sound/vox/south.wav differ diff --git a/modular_citadel/sound/vox/squad.wav b/modular_citadel/sound/vox/squad.wav new file mode 100644 index 0000000000..71739d1498 Binary files /dev/null and b/modular_citadel/sound/vox/squad.wav differ diff --git a/modular_citadel/sound/vox/square.wav b/modular_citadel/sound/vox/square.wav new file mode 100644 index 0000000000..f08f73a5f4 Binary files /dev/null and b/modular_citadel/sound/vox/square.wav differ diff --git a/modular_citadel/sound/vox/stairway.wav b/modular_citadel/sound/vox/stairway.wav new file mode 100644 index 0000000000..ab84571c82 Binary files /dev/null and b/modular_citadel/sound/vox/stairway.wav differ diff --git a/modular_citadel/sound/vox/status.wav b/modular_citadel/sound/vox/status.wav new file mode 100644 index 0000000000..42fe8b7822 Binary files /dev/null and b/modular_citadel/sound/vox/status.wav differ diff --git a/modular_citadel/sound/vox/sterile.wav b/modular_citadel/sound/vox/sterile.wav new file mode 100644 index 0000000000..d95753222b Binary files /dev/null and b/modular_citadel/sound/vox/sterile.wav differ diff --git a/modular_citadel/sound/vox/sterilization.wav b/modular_citadel/sound/vox/sterilization.wav new file mode 100644 index 0000000000..f53240310c Binary files /dev/null and b/modular_citadel/sound/vox/sterilization.wav differ diff --git a/modular_citadel/sound/vox/storage.wav b/modular_citadel/sound/vox/storage.wav new file mode 100644 index 0000000000..18954a4f79 Binary files /dev/null and b/modular_citadel/sound/vox/storage.wav differ diff --git a/modular_citadel/sound/vox/sub.wav b/modular_citadel/sound/vox/sub.wav new file mode 100644 index 0000000000..d25510d3c0 Binary files /dev/null and b/modular_citadel/sound/vox/sub.wav differ diff --git a/modular_citadel/sound/vox/subsurface.wav b/modular_citadel/sound/vox/subsurface.wav new file mode 100644 index 0000000000..cb19be3a88 Binary files /dev/null and b/modular_citadel/sound/vox/subsurface.wav differ diff --git a/modular_citadel/sound/vox/sudden.wav b/modular_citadel/sound/vox/sudden.wav new file mode 100644 index 0000000000..b5eb4088ac Binary files /dev/null and b/modular_citadel/sound/vox/sudden.wav differ diff --git a/modular_citadel/sound/vox/suit.wav b/modular_citadel/sound/vox/suit.wav new file mode 100644 index 0000000000..d099c95843 Binary files /dev/null and b/modular_citadel/sound/vox/suit.wav differ diff --git a/modular_citadel/sound/vox/superconducting.wav b/modular_citadel/sound/vox/superconducting.wav new file mode 100644 index 0000000000..ad4fcc8f9d Binary files /dev/null and b/modular_citadel/sound/vox/superconducting.wav differ diff --git a/modular_citadel/sound/vox/supercooled.wav b/modular_citadel/sound/vox/supercooled.wav new file mode 100644 index 0000000000..936562ed4f Binary files /dev/null and b/modular_citadel/sound/vox/supercooled.wav differ diff --git a/modular_citadel/sound/vox/supply.wav b/modular_citadel/sound/vox/supply.wav new file mode 100644 index 0000000000..4b33c8e9b7 Binary files /dev/null and b/modular_citadel/sound/vox/supply.wav differ diff --git a/modular_citadel/sound/vox/surface.wav b/modular_citadel/sound/vox/surface.wav new file mode 100644 index 0000000000..0b02d732a9 Binary files /dev/null and b/modular_citadel/sound/vox/surface.wav differ diff --git a/modular_citadel/sound/vox/surrender.wav b/modular_citadel/sound/vox/surrender.wav new file mode 100644 index 0000000000..f0a17b395a Binary files /dev/null and b/modular_citadel/sound/vox/surrender.wav differ diff --git a/modular_citadel/sound/vox/surround.wav b/modular_citadel/sound/vox/surround.wav new file mode 100644 index 0000000000..c9afd86f9c Binary files /dev/null and b/modular_citadel/sound/vox/surround.wav differ diff --git a/modular_citadel/sound/vox/surrounded.wav b/modular_citadel/sound/vox/surrounded.wav new file mode 100644 index 0000000000..3cbf513481 Binary files /dev/null and b/modular_citadel/sound/vox/surrounded.wav differ diff --git a/modular_citadel/sound/vox/switch.wav b/modular_citadel/sound/vox/switch.wav new file mode 100644 index 0000000000..f5ffcc7a6b Binary files /dev/null and b/modular_citadel/sound/vox/switch.wav differ diff --git a/modular_citadel/sound/vox/system.wav b/modular_citadel/sound/vox/system.wav new file mode 100644 index 0000000000..078727a081 Binary files /dev/null and b/modular_citadel/sound/vox/system.wav differ diff --git a/modular_citadel/sound/vox/systems.wav b/modular_citadel/sound/vox/systems.wav new file mode 100644 index 0000000000..c880250830 Binary files /dev/null and b/modular_citadel/sound/vox/systems.wav differ diff --git a/modular_citadel/sound/vox/tactical.wav b/modular_citadel/sound/vox/tactical.wav new file mode 100644 index 0000000000..6b1aca650b Binary files /dev/null and b/modular_citadel/sound/vox/tactical.wav differ diff --git a/modular_citadel/sound/vox/take.wav b/modular_citadel/sound/vox/take.wav new file mode 100644 index 0000000000..70644f5220 Binary files /dev/null and b/modular_citadel/sound/vox/take.wav differ diff --git a/modular_citadel/sound/vox/talk.wav b/modular_citadel/sound/vox/talk.wav new file mode 100644 index 0000000000..3ff83c48c9 Binary files /dev/null and b/modular_citadel/sound/vox/talk.wav differ diff --git a/modular_citadel/sound/vox/tango.wav b/modular_citadel/sound/vox/tango.wav new file mode 100644 index 0000000000..37b6f4fe19 Binary files /dev/null and b/modular_citadel/sound/vox/tango.wav differ diff --git a/modular_citadel/sound/vox/tank.wav b/modular_citadel/sound/vox/tank.wav new file mode 100644 index 0000000000..9608b0d749 Binary files /dev/null and b/modular_citadel/sound/vox/tank.wav differ diff --git a/modular_citadel/sound/vox/target.wav b/modular_citadel/sound/vox/target.wav new file mode 100644 index 0000000000..bd004147bf Binary files /dev/null and b/modular_citadel/sound/vox/target.wav differ diff --git a/modular_citadel/sound/vox/team.wav b/modular_citadel/sound/vox/team.wav new file mode 100644 index 0000000000..d0e47d4e10 Binary files /dev/null and b/modular_citadel/sound/vox/team.wav differ diff --git a/modular_citadel/sound/vox/temperature.wav b/modular_citadel/sound/vox/temperature.wav new file mode 100644 index 0000000000..e9b51dada7 Binary files /dev/null and b/modular_citadel/sound/vox/temperature.wav differ diff --git a/modular_citadel/sound/vox/temporal.wav b/modular_citadel/sound/vox/temporal.wav new file mode 100644 index 0000000000..d0398a0f8c Binary files /dev/null and b/modular_citadel/sound/vox/temporal.wav differ diff --git a/modular_citadel/sound/vox/ten.wav b/modular_citadel/sound/vox/ten.wav new file mode 100644 index 0000000000..fd0f353f6b Binary files /dev/null and b/modular_citadel/sound/vox/ten.wav differ diff --git a/modular_citadel/sound/vox/terminal.wav b/modular_citadel/sound/vox/terminal.wav new file mode 100644 index 0000000000..5ffe39101e Binary files /dev/null and b/modular_citadel/sound/vox/terminal.wav differ diff --git a/modular_citadel/sound/vox/terminated.wav b/modular_citadel/sound/vox/terminated.wav new file mode 100644 index 0000000000..1c972f092c Binary files /dev/null and b/modular_citadel/sound/vox/terminated.wav differ diff --git a/modular_citadel/sound/vox/termination.wav b/modular_citadel/sound/vox/termination.wav new file mode 100644 index 0000000000..f093cd31a1 Binary files /dev/null and b/modular_citadel/sound/vox/termination.wav differ diff --git a/modular_citadel/sound/vox/test.wav b/modular_citadel/sound/vox/test.wav new file mode 100644 index 0000000000..f7c9b461fc Binary files /dev/null and b/modular_citadel/sound/vox/test.wav differ diff --git a/modular_citadel/sound/vox/that.wav b/modular_citadel/sound/vox/that.wav new file mode 100644 index 0000000000..f9e8c92873 Binary files /dev/null and b/modular_citadel/sound/vox/that.wav differ diff --git a/modular_citadel/sound/vox/the.wav b/modular_citadel/sound/vox/the.wav new file mode 100644 index 0000000000..3a07ea3be8 Binary files /dev/null and b/modular_citadel/sound/vox/the.wav differ diff --git a/modular_citadel/sound/vox/then.wav b/modular_citadel/sound/vox/then.wav new file mode 100644 index 0000000000..1c2ec53386 Binary files /dev/null and b/modular_citadel/sound/vox/then.wav differ diff --git a/modular_citadel/sound/vox/there.wav b/modular_citadel/sound/vox/there.wav new file mode 100644 index 0000000000..0e25880076 Binary files /dev/null and b/modular_citadel/sound/vox/there.wav differ diff --git a/modular_citadel/sound/vox/third.wav b/modular_citadel/sound/vox/third.wav new file mode 100644 index 0000000000..962f2f9697 Binary files /dev/null and b/modular_citadel/sound/vox/third.wav differ diff --git a/modular_citadel/sound/vox/thirteen.wav b/modular_citadel/sound/vox/thirteen.wav new file mode 100644 index 0000000000..1c392cfa3e Binary files /dev/null and b/modular_citadel/sound/vox/thirteen.wav differ diff --git a/modular_citadel/sound/vox/thirty.wav b/modular_citadel/sound/vox/thirty.wav new file mode 100644 index 0000000000..d7a34d4351 Binary files /dev/null and b/modular_citadel/sound/vox/thirty.wav differ diff --git a/modular_citadel/sound/vox/this.wav b/modular_citadel/sound/vox/this.wav new file mode 100644 index 0000000000..b8f51ea151 Binary files /dev/null and b/modular_citadel/sound/vox/this.wav differ diff --git a/modular_citadel/sound/vox/those.wav b/modular_citadel/sound/vox/those.wav new file mode 100644 index 0000000000..ef7db90721 Binary files /dev/null and b/modular_citadel/sound/vox/those.wav differ diff --git a/modular_citadel/sound/vox/thousand.wav b/modular_citadel/sound/vox/thousand.wav new file mode 100644 index 0000000000..b1f9df6edd Binary files /dev/null and b/modular_citadel/sound/vox/thousand.wav differ diff --git a/modular_citadel/sound/vox/threat.wav b/modular_citadel/sound/vox/threat.wav new file mode 100644 index 0000000000..75cefae187 Binary files /dev/null and b/modular_citadel/sound/vox/threat.wav differ diff --git a/modular_citadel/sound/vox/three.wav b/modular_citadel/sound/vox/three.wav new file mode 100644 index 0000000000..097504d605 Binary files /dev/null and b/modular_citadel/sound/vox/three.wav differ diff --git a/modular_citadel/sound/vox/through.wav b/modular_citadel/sound/vox/through.wav new file mode 100644 index 0000000000..78053bdf90 Binary files /dev/null and b/modular_citadel/sound/vox/through.wav differ diff --git a/modular_citadel/sound/vox/time.wav b/modular_citadel/sound/vox/time.wav new file mode 100644 index 0000000000..856529d6a4 Binary files /dev/null and b/modular_citadel/sound/vox/time.wav differ diff --git a/modular_citadel/sound/vox/to.wav b/modular_citadel/sound/vox/to.wav new file mode 100644 index 0000000000..5189cf2d58 Binary files /dev/null and b/modular_citadel/sound/vox/to.wav differ diff --git a/modular_citadel/sound/vox/top.wav b/modular_citadel/sound/vox/top.wav new file mode 100644 index 0000000000..0747e8965a Binary files /dev/null and b/modular_citadel/sound/vox/top.wav differ diff --git a/modular_citadel/sound/vox/topside.wav b/modular_citadel/sound/vox/topside.wav new file mode 100644 index 0000000000..6f6f54b973 Binary files /dev/null and b/modular_citadel/sound/vox/topside.wav differ diff --git a/modular_citadel/sound/vox/touch.wav b/modular_citadel/sound/vox/touch.wav new file mode 100644 index 0000000000..6712dc18a3 Binary files /dev/null and b/modular_citadel/sound/vox/touch.wav differ diff --git a/modular_citadel/sound/vox/towards.wav b/modular_citadel/sound/vox/towards.wav new file mode 100644 index 0000000000..ff04147f15 Binary files /dev/null and b/modular_citadel/sound/vox/towards.wav differ diff --git a/modular_citadel/sound/vox/track.wav b/modular_citadel/sound/vox/track.wav new file mode 100644 index 0000000000..5247acabd0 Binary files /dev/null and b/modular_citadel/sound/vox/track.wav differ diff --git a/modular_citadel/sound/vox/train.wav b/modular_citadel/sound/vox/train.wav new file mode 100644 index 0000000000..ced1a9850c Binary files /dev/null and b/modular_citadel/sound/vox/train.wav differ diff --git a/modular_citadel/sound/vox/transportation.wav b/modular_citadel/sound/vox/transportation.wav new file mode 100644 index 0000000000..302241aeb0 Binary files /dev/null and b/modular_citadel/sound/vox/transportation.wav differ diff --git a/modular_citadel/sound/vox/truck.wav b/modular_citadel/sound/vox/truck.wav new file mode 100644 index 0000000000..1692a9c7dd Binary files /dev/null and b/modular_citadel/sound/vox/truck.wav differ diff --git a/modular_citadel/sound/vox/tunnel.wav b/modular_citadel/sound/vox/tunnel.wav new file mode 100644 index 0000000000..f158042a9d Binary files /dev/null and b/modular_citadel/sound/vox/tunnel.wav differ diff --git a/modular_citadel/sound/vox/turn.wav b/modular_citadel/sound/vox/turn.wav new file mode 100644 index 0000000000..407d2cdbe8 Binary files /dev/null and b/modular_citadel/sound/vox/turn.wav differ diff --git a/modular_citadel/sound/vox/turret.wav b/modular_citadel/sound/vox/turret.wav new file mode 100644 index 0000000000..ec42293ebb Binary files /dev/null and b/modular_citadel/sound/vox/turret.wav differ diff --git a/modular_citadel/sound/vox/twelve.wav b/modular_citadel/sound/vox/twelve.wav new file mode 100644 index 0000000000..d9fbcc2558 Binary files /dev/null and b/modular_citadel/sound/vox/twelve.wav differ diff --git a/modular_citadel/sound/vox/twenty.wav b/modular_citadel/sound/vox/twenty.wav new file mode 100644 index 0000000000..e6d7d8092d Binary files /dev/null and b/modular_citadel/sound/vox/twenty.wav differ diff --git a/modular_citadel/sound/vox/two.wav b/modular_citadel/sound/vox/two.wav new file mode 100644 index 0000000000..14f432fd5c Binary files /dev/null and b/modular_citadel/sound/vox/two.wav differ diff --git a/modular_citadel/sound/vox/unauthorized.wav b/modular_citadel/sound/vox/unauthorized.wav new file mode 100644 index 0000000000..7d3236f491 Binary files /dev/null and b/modular_citadel/sound/vox/unauthorized.wav differ diff --git a/modular_citadel/sound/vox/under.wav b/modular_citadel/sound/vox/under.wav new file mode 100644 index 0000000000..dc30e4711c Binary files /dev/null and b/modular_citadel/sound/vox/under.wav differ diff --git a/modular_citadel/sound/vox/uniform.wav b/modular_citadel/sound/vox/uniform.wav new file mode 100644 index 0000000000..899c7f029a Binary files /dev/null and b/modular_citadel/sound/vox/uniform.wav differ diff --git a/modular_citadel/sound/vox/unlocked.wav b/modular_citadel/sound/vox/unlocked.wav new file mode 100644 index 0000000000..0e48489db5 Binary files /dev/null and b/modular_citadel/sound/vox/unlocked.wav differ diff --git a/modular_citadel/sound/vox/until.wav b/modular_citadel/sound/vox/until.wav new file mode 100644 index 0000000000..68f5ea47e4 Binary files /dev/null and b/modular_citadel/sound/vox/until.wav differ diff --git a/modular_citadel/sound/vox/up.wav b/modular_citadel/sound/vox/up.wav new file mode 100644 index 0000000000..1816546702 Binary files /dev/null and b/modular_citadel/sound/vox/up.wav differ diff --git a/modular_citadel/sound/vox/upper.wav b/modular_citadel/sound/vox/upper.wav new file mode 100644 index 0000000000..8b59156651 Binary files /dev/null and b/modular_citadel/sound/vox/upper.wav differ diff --git a/modular_citadel/sound/vox/uranium.wav b/modular_citadel/sound/vox/uranium.wav new file mode 100644 index 0000000000..2ab47d6085 Binary files /dev/null and b/modular_citadel/sound/vox/uranium.wav differ diff --git a/modular_citadel/sound/vox/us.wav b/modular_citadel/sound/vox/us.wav new file mode 100644 index 0000000000..23b56e9357 Binary files /dev/null and b/modular_citadel/sound/vox/us.wav differ diff --git a/modular_citadel/sound/vox/usa.wav b/modular_citadel/sound/vox/usa.wav new file mode 100644 index 0000000000..591233e624 Binary files /dev/null and b/modular_citadel/sound/vox/usa.wav differ diff --git a/modular_citadel/sound/vox/use.wav b/modular_citadel/sound/vox/use.wav new file mode 100644 index 0000000000..35be617775 Binary files /dev/null and b/modular_citadel/sound/vox/use.wav differ diff --git a/modular_citadel/sound/vox/used.wav b/modular_citadel/sound/vox/used.wav new file mode 100644 index 0000000000..3385240fd9 Binary files /dev/null and b/modular_citadel/sound/vox/used.wav differ diff --git a/modular_citadel/sound/vox/user.wav b/modular_citadel/sound/vox/user.wav new file mode 100644 index 0000000000..91ccb15af6 Binary files /dev/null and b/modular_citadel/sound/vox/user.wav differ diff --git a/modular_citadel/sound/vox/vacate.wav b/modular_citadel/sound/vox/vacate.wav new file mode 100644 index 0000000000..bed5d702e4 Binary files /dev/null and b/modular_citadel/sound/vox/vacate.wav differ diff --git a/modular_citadel/sound/vox/valid.wav b/modular_citadel/sound/vox/valid.wav new file mode 100644 index 0000000000..40c3f1e4f6 Binary files /dev/null and b/modular_citadel/sound/vox/valid.wav differ diff --git a/modular_citadel/sound/vox/vapor.wav b/modular_citadel/sound/vox/vapor.wav new file mode 100644 index 0000000000..d067f69827 Binary files /dev/null and b/modular_citadel/sound/vox/vapor.wav differ diff --git a/modular_citadel/sound/vox/vent.wav b/modular_citadel/sound/vox/vent.wav new file mode 100644 index 0000000000..b4efa86991 Binary files /dev/null and b/modular_citadel/sound/vox/vent.wav differ diff --git a/modular_citadel/sound/vox/ventillation.wav b/modular_citadel/sound/vox/ventillation.wav new file mode 100644 index 0000000000..d56679dda1 Binary files /dev/null and b/modular_citadel/sound/vox/ventillation.wav differ diff --git a/modular_citadel/sound/vox/victor.wav b/modular_citadel/sound/vox/victor.wav new file mode 100644 index 0000000000..8245a2abf4 Binary files /dev/null and b/modular_citadel/sound/vox/victor.wav differ diff --git a/modular_citadel/sound/vox/violated.wav b/modular_citadel/sound/vox/violated.wav new file mode 100644 index 0000000000..c597d1dfe2 Binary files /dev/null and b/modular_citadel/sound/vox/violated.wav differ diff --git a/modular_citadel/sound/vox/violation.wav b/modular_citadel/sound/vox/violation.wav new file mode 100644 index 0000000000..98ed5dd0b9 Binary files /dev/null and b/modular_citadel/sound/vox/violation.wav differ diff --git a/modular_citadel/sound/vox/voltage.wav b/modular_citadel/sound/vox/voltage.wav new file mode 100644 index 0000000000..140e1dd6a2 Binary files /dev/null and b/modular_citadel/sound/vox/voltage.wav differ diff --git a/modular_citadel/sound/vox/vox_login.wav b/modular_citadel/sound/vox/vox_login.wav new file mode 100644 index 0000000000..5679acfce8 Binary files /dev/null and b/modular_citadel/sound/vox/vox_login.wav differ diff --git a/modular_citadel/sound/vox/walk.wav b/modular_citadel/sound/vox/walk.wav new file mode 100644 index 0000000000..fd8d85f84d Binary files /dev/null and b/modular_citadel/sound/vox/walk.wav differ diff --git a/modular_citadel/sound/vox/wall.wav b/modular_citadel/sound/vox/wall.wav new file mode 100644 index 0000000000..e8e9a5fb4a Binary files /dev/null and b/modular_citadel/sound/vox/wall.wav differ diff --git a/modular_citadel/sound/vox/want.wav b/modular_citadel/sound/vox/want.wav new file mode 100644 index 0000000000..3d130ce8fe Binary files /dev/null and b/modular_citadel/sound/vox/want.wav differ diff --git a/modular_citadel/sound/vox/wanted.wav b/modular_citadel/sound/vox/wanted.wav new file mode 100644 index 0000000000..a292d2d33b Binary files /dev/null and b/modular_citadel/sound/vox/wanted.wav differ diff --git a/modular_citadel/sound/vox/warm.wav b/modular_citadel/sound/vox/warm.wav new file mode 100644 index 0000000000..518f2905f4 Binary files /dev/null and b/modular_citadel/sound/vox/warm.wav differ diff --git a/modular_citadel/sound/vox/warn.wav b/modular_citadel/sound/vox/warn.wav new file mode 100644 index 0000000000..7580146005 Binary files /dev/null and b/modular_citadel/sound/vox/warn.wav differ diff --git a/modular_citadel/sound/vox/warning.wav b/modular_citadel/sound/vox/warning.wav new file mode 100644 index 0000000000..87db6c164b Binary files /dev/null and b/modular_citadel/sound/vox/warning.wav differ diff --git a/modular_citadel/sound/vox/waste.wav b/modular_citadel/sound/vox/waste.wav new file mode 100644 index 0000000000..245c44d682 Binary files /dev/null and b/modular_citadel/sound/vox/waste.wav differ diff --git a/modular_citadel/sound/vox/water.wav b/modular_citadel/sound/vox/water.wav new file mode 100644 index 0000000000..c29d7acf55 Binary files /dev/null and b/modular_citadel/sound/vox/water.wav differ diff --git a/modular_citadel/sound/vox/we.wav b/modular_citadel/sound/vox/we.wav new file mode 100644 index 0000000000..d7ba93484d Binary files /dev/null and b/modular_citadel/sound/vox/we.wav differ diff --git a/modular_citadel/sound/vox/weapon.wav b/modular_citadel/sound/vox/weapon.wav new file mode 100644 index 0000000000..3e95e9efc4 Binary files /dev/null and b/modular_citadel/sound/vox/weapon.wav differ diff --git a/modular_citadel/sound/vox/west.wav b/modular_citadel/sound/vox/west.wav new file mode 100644 index 0000000000..09f58088c9 Binary files /dev/null and b/modular_citadel/sound/vox/west.wav differ diff --git a/modular_citadel/sound/vox/whiskey.wav b/modular_citadel/sound/vox/whiskey.wav new file mode 100644 index 0000000000..11ef7b3aa0 Binary files /dev/null and b/modular_citadel/sound/vox/whiskey.wav differ diff --git a/modular_citadel/sound/vox/white.wav b/modular_citadel/sound/vox/white.wav new file mode 100644 index 0000000000..6d4ec3e138 Binary files /dev/null and b/modular_citadel/sound/vox/white.wav differ diff --git a/modular_citadel/sound/vox/wilco.wav b/modular_citadel/sound/vox/wilco.wav new file mode 100644 index 0000000000..862aa8d97d Binary files /dev/null and b/modular_citadel/sound/vox/wilco.wav differ diff --git a/modular_citadel/sound/vox/will.wav b/modular_citadel/sound/vox/will.wav new file mode 100644 index 0000000000..327d81c9d0 Binary files /dev/null and b/modular_citadel/sound/vox/will.wav differ diff --git a/modular_citadel/sound/vox/with.wav b/modular_citadel/sound/vox/with.wav new file mode 100644 index 0000000000..f1db548cd7 Binary files /dev/null and b/modular_citadel/sound/vox/with.wav differ diff --git a/modular_citadel/sound/vox/without.wav b/modular_citadel/sound/vox/without.wav new file mode 100644 index 0000000000..7f3096df12 Binary files /dev/null and b/modular_citadel/sound/vox/without.wav differ diff --git a/modular_citadel/sound/vox/woop.wav b/modular_citadel/sound/vox/woop.wav new file mode 100644 index 0000000000..62fa99cb3b Binary files /dev/null and b/modular_citadel/sound/vox/woop.wav differ diff --git a/modular_citadel/sound/vox/xeno.wav b/modular_citadel/sound/vox/xeno.wav new file mode 100644 index 0000000000..6b77a20b7a Binary files /dev/null and b/modular_citadel/sound/vox/xeno.wav differ diff --git a/modular_citadel/sound/vox/yankee.wav b/modular_citadel/sound/vox/yankee.wav new file mode 100644 index 0000000000..62bf15a40b Binary files /dev/null and b/modular_citadel/sound/vox/yankee.wav differ diff --git a/modular_citadel/sound/vox/yards.wav b/modular_citadel/sound/vox/yards.wav new file mode 100644 index 0000000000..33c3c4c3e3 Binary files /dev/null and b/modular_citadel/sound/vox/yards.wav differ diff --git a/modular_citadel/sound/vox/year.wav b/modular_citadel/sound/vox/year.wav new file mode 100644 index 0000000000..12dca8e86b Binary files /dev/null and b/modular_citadel/sound/vox/year.wav differ diff --git a/modular_citadel/sound/vox/yellow.wav b/modular_citadel/sound/vox/yellow.wav new file mode 100644 index 0000000000..bed92f5f9f Binary files /dev/null and b/modular_citadel/sound/vox/yellow.wav differ diff --git a/modular_citadel/sound/vox/yes.wav b/modular_citadel/sound/vox/yes.wav new file mode 100644 index 0000000000..799bb2b775 Binary files /dev/null and b/modular_citadel/sound/vox/yes.wav differ diff --git a/modular_citadel/sound/vox/you.wav b/modular_citadel/sound/vox/you.wav new file mode 100644 index 0000000000..7ba9be75a8 Binary files /dev/null and b/modular_citadel/sound/vox/you.wav differ diff --git a/modular_citadel/sound/vox/your.wav b/modular_citadel/sound/vox/your.wav new file mode 100644 index 0000000000..9e29c2418b Binary files /dev/null and b/modular_citadel/sound/vox/your.wav differ diff --git a/modular_citadel/sound/vox/yourself.wav b/modular_citadel/sound/vox/yourself.wav new file mode 100644 index 0000000000..582c3b7ed6 Binary files /dev/null and b/modular_citadel/sound/vox/yourself.wav differ diff --git a/modular_citadel/sound/vox/zero.wav b/modular_citadel/sound/vox/zero.wav new file mode 100644 index 0000000000..9b6c39722d Binary files /dev/null and b/modular_citadel/sound/vox/zero.wav differ diff --git a/modular_citadel/sound/vox/zone.wav b/modular_citadel/sound/vox/zone.wav new file mode 100644 index 0000000000..68f9b8952c Binary files /dev/null and b/modular_citadel/sound/vox/zone.wav differ diff --git a/modular_citadel/sound/vox/zulu.wav b/modular_citadel/sound/vox/zulu.wav new file mode 100644 index 0000000000..32d6605218 Binary files /dev/null and b/modular_citadel/sound/vox/zulu.wav differ diff --git a/tgstation.dme b/tgstation.dme index da990c169a..8b3ea4da63 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -862,7 +862,6 @@ #include "code\game\objects\items\devices\pipe_painter.dm" #include "code\game\objects\items\devices\powersink.dm" #include "code\game\objects\items\devices\pressureplates.dm" -#include "code\game\objects\items\devices\quantum_keycard.dm" #include "code\game\objects\items\devices\reverse_bear_trap.dm" #include "code\game\objects\items\devices\scanners.dm" #include "code\game\objects\items\devices\sensor_device.dm" @@ -2885,6 +2884,7 @@ #include "modular_citadel\code\game\objects\effects\temporary_visuals\projectiles\tracer.dm" #include "modular_citadel\code\game\objects\items\balls.dm" #include "modular_citadel\code\game\objects\items\boombox.dm" +#include "modular_citadel\code\game\objects\items\handcuffs.dm" #include "modular_citadel\code\game\objects\items\holy_weapons.dm" #include "modular_citadel\code\game\objects\items\honk.dm" #include "modular_citadel\code\game\objects\items\meat.dm" @@ -2926,6 +2926,7 @@ #include "modular_citadel\code\modules\arousal\toys\dildos.dm" #include "modular_citadel\code\modules\awaymissions\citadel_ghostrole_spawners.dm" #include "modular_citadel\code\modules\cargo\console.dm" +#include "modular_citadel\code\modules\cargo\packs.dm" #include "modular_citadel\code\modules\client\client_defines.dm" #include "modular_citadel\code\modules\client\client_procs.dm" #include "modular_citadel\code\modules\client\preferences.dm" @@ -2959,6 +2960,7 @@ #include "modular_citadel\code\modules\clothing\under\trek_under.dm" #include "modular_citadel\code\modules\clothing\under\turtlenecks.dm" #include "modular_citadel\code\modules\clothing\under\under.dm" +#include "modular_citadel\code\modules\crafting\recipes.dm" #include "modular_citadel\code\modules\custom_loadout\custom_items.dm" #include "modular_citadel\code\modules\custom_loadout\load_to_mob.dm" #include "modular_citadel\code\modules\custom_loadout\read_from_file.dm" @@ -2983,6 +2985,7 @@ #include "modular_citadel\code\modules\mentor\mentorhelp.dm" #include "modular_citadel\code\modules\mentor\mentorpm.dm" #include "modular_citadel\code\modules\mentor\mentorsay.dm" +#include "modular_citadel\code\modules\mining\mine_items.dm" #include "modular_citadel\code\modules\mining\mining_ruins.dm" #include "modular_citadel\code\modules\mob\cit_emotes.dm" #include "modular_citadel\code\modules\mob\mob.dm" @@ -3040,6 +3043,7 @@ #include "modular_citadel\code\modules\research\designs\xenobio_designs.dm" #include "modular_citadel\code\modules\research\designs\weapon_designs\weapon_designs.dm" #include "modular_citadel\code\modules\research\techweb\_techweb.dm" +#include "modular_citadel\code\modules\research\techweb\all_nodes.dm" #include "modular_citadel\code\modules\research\xenobiology\xenobio_camera.dm" #include "modular_citadel\code\modules\vehicles\secway.dm" #include "modular_citadel\code\modules\vore\hook-defs_vr.dm"