├── .bs-env.json ├── .circleci └── config.yml ├── .eslintrc ├── .gitignore ├── BoxStation.bsmap ├── LICENSE ├── MetaStation.bsmap ├── README.md ├── client_src ├── build.bat ├── code │ ├── alert.js │ ├── atmos_machine.js │ ├── carbon_mob.js │ ├── hud.js │ ├── parallax.js │ ├── preload.js │ ├── progress_bar.js │ ├── projectile.js │ ├── shuttle.js │ ├── splash_screen.js │ ├── text_input.js │ └── ui │ │ ├── admin_menu.js │ │ ├── atmos.js │ │ ├── chem_dispenser.js │ │ ├── chem_heater.js │ │ ├── components │ │ └── reagent_binding.js │ │ ├── latejoin.js │ │ ├── login.js │ │ ├── machine_wires.js │ │ ├── new_player.js │ │ ├── preferences.js │ │ ├── smes.js │ │ ├── spawn_object.js │ │ ├── stack_craft.js │ │ └── strip.js ├── css │ ├── chatwindow.less │ ├── main.less │ └── ui │ │ ├── bar.less │ │ ├── buttons.less │ │ ├── formatting.less │ │ ├── panel.less │ │ └── tooltip.less ├── fontawesome │ ├── animated.less │ ├── bordered-pulled.less │ ├── core.less │ ├── fixed-width.less │ ├── font-awesome.less │ ├── icons.less │ ├── larger.less │ ├── list.less │ ├── mixins.less │ ├── path.less │ ├── rotated-flipped.less │ ├── screen-reader.less │ ├── stacked.less │ └── variables.less ├── gulpfile.js ├── index.js ├── package-lock.json ├── package.json └── watch.bat ├── code ├── config.js ├── defines │ ├── access.js │ ├── atmos_defines.js │ ├── combat_defines.js │ ├── layers.js │ ├── lighting.js │ ├── mob_defines.js │ ├── pass_flags.js │ └── sounds.js ├── game │ ├── area │ │ ├── area.js │ │ └── area_components.js │ ├── components │ │ ├── climbable.js │ │ ├── squeak.js │ │ └── wires.js │ ├── machinery │ │ └── recharger.js │ ├── mobs │ │ ├── dead │ │ │ └── ghost.js │ │ ├── latejoin_panel.js │ │ ├── living │ │ │ ├── carbon │ │ │ │ ├── body_parts │ │ │ │ │ ├── body_parts.js │ │ │ │ │ ├── components.js │ │ │ │ │ ├── head.js │ │ │ │ │ ├── health_doll.js │ │ │ │ │ ├── helpers.js │ │ │ │ │ └── zones.js │ │ │ │ ├── carbon.js │ │ │ │ ├── human │ │ │ │ │ ├── human.js │ │ │ │ │ ├── human_parts.js │ │ │ │ │ └── sprite_accessories.js │ │ │ │ ├── organs │ │ │ │ │ ├── liver.js │ │ │ │ │ ├── lungs.js │ │ │ │ │ └── organ.js │ │ │ │ └── slip.js │ │ │ ├── effects │ │ │ │ ├── effect.js │ │ │ │ └── incapacitating.js │ │ │ ├── living.js │ │ │ └── living_defense.js │ │ ├── mind │ │ │ └── mind.js │ │ ├── mob_movement.js │ │ ├── new_player.js │ │ └── new_player_panel.js │ ├── objects │ │ ├── buckling.js │ │ ├── cleanable │ │ │ ├── blood.js │ │ │ ├── blood_holder.js │ │ │ └── cleanable.js │ │ ├── destructible.js │ │ ├── doors │ │ │ ├── airlock.js │ │ │ ├── airlock_variants.js │ │ │ └── door.js │ │ ├── items.js │ │ ├── items │ │ │ ├── clothing.js │ │ │ ├── devices │ │ │ │ ├── flashlight.js │ │ │ │ ├── multitool.js │ │ │ │ └── scanners.js │ │ │ ├── emag.js │ │ │ ├── handcuffs.js │ │ │ ├── miscellaneous.js │ │ │ ├── stacks │ │ │ │ ├── rods.js │ │ │ │ ├── sheets │ │ │ │ │ ├── glass.js │ │ │ │ │ └── sheet_types.js │ │ │ │ ├── stack.js │ │ │ │ ├── stack_craft_panel.js │ │ │ │ └── tiles │ │ │ │ │ ├── tile_mineral.js │ │ │ │ │ └── tile_types.js │ │ │ ├── storage.js │ │ │ ├── storage │ │ │ │ ├── backpack.js │ │ │ │ ├── belt.js │ │ │ │ ├── boxes.js │ │ │ │ └── toolbox.js │ │ │ ├── tanks │ │ │ │ ├── tank_types.js │ │ │ │ └── tanks.js │ │ │ ├── tools.js │ │ │ ├── trash.js │ │ │ └── weaponry.js │ │ ├── objs.js │ │ ├── puller.js │ │ └── structures │ │ │ ├── beds_chairs │ │ │ └── chair.js │ │ │ ├── crates_lockers │ │ │ ├── base.js │ │ │ ├── closets.js │ │ │ └── closets │ │ │ │ └── utility.js │ │ │ ├── girders.js │ │ │ ├── grille.js │ │ │ ├── lattice.js │ │ │ ├── rack.js │ │ │ ├── table.js │ │ │ ├── table_frames.js │ │ │ ├── wall │ │ │ ├── reinf_walls.js │ │ │ └── walls.js │ │ │ └── window.js │ ├── placeholders.js │ ├── ticker.js │ └── turfs │ │ ├── floor.js │ │ ├── floor_base.js │ │ └── plating.js ├── modules │ ├── admin │ │ ├── holder.js │ │ ├── menu.js │ │ ├── spawn_object.js │ │ └── unsorted_tools.js │ ├── atmospherics │ │ ├── environmental │ │ │ ├── air_holder.js │ │ │ ├── block_air.js │ │ │ ├── controller.js │ │ │ ├── excited_group.js │ │ │ └── turf.js │ │ ├── gasmixtures │ │ │ ├── gas_mixture.js │ │ │ └── gas_types.js │ │ └── machinery │ │ │ ├── machines │ │ │ ├── atmos_machine.js │ │ │ ├── binary │ │ │ │ ├── _binary.js │ │ │ │ └── pump.js │ │ │ └── unary │ │ │ │ ├── _unary.js │ │ │ │ ├── portables_connector.js │ │ │ │ ├── tank.js │ │ │ │ ├── vent_pump.js │ │ │ │ └── vent_scrubber.js │ │ │ ├── meter.js │ │ │ ├── node.js │ │ │ ├── pipenet.js │ │ │ ├── pipes │ │ │ └── pipes.js │ │ │ └── portable │ │ │ ├── canister.js │ │ │ └── portable_atmospherics.js │ ├── client │ │ ├── character.js │ │ ├── preferences_panel.js │ │ └── verbs.js │ ├── clothing │ │ ├── gloves │ │ │ ├── _gloves.js │ │ │ └── color.js │ │ ├── head │ │ │ ├── _head.js │ │ │ └── jobs.js │ │ ├── masks │ │ │ ├── _masks.js │ │ │ └── breath.js │ │ ├── shoes │ │ │ ├── _shoes.js │ │ │ ├── colour.js │ │ │ └── misc.js │ │ ├── suits │ │ │ ├── _suits.js │ │ │ ├── armor.js │ │ │ ├── jobs.js │ │ │ └── labcoat.js │ │ └── under │ │ │ ├── _under.js │ │ │ ├── color.js │ │ │ ├── jobs │ │ │ ├── civilian.js │ │ │ ├── engineering.js │ │ │ ├── medsci.js │ │ │ └── security.js │ │ │ ├── miscellaneous.js │ │ │ ├── pants.js │ │ │ ├── shorts.js │ │ │ ├── syndicate.js │ │ │ └── trek.js │ ├── effect_system │ │ ├── effect_system.js │ │ └── sparks.js │ ├── explosion │ │ └── explosion.js │ ├── janitorial │ │ └── mop.js │ ├── jobs │ │ ├── access.js │ │ ├── controller.js │ │ ├── id.js │ │ ├── job_types │ │ │ ├── assistant.js │ │ │ ├── cargo.js │ │ │ ├── chaplain.js │ │ │ ├── civilian.js │ │ │ ├── command.js │ │ │ ├── engineering.js │ │ │ ├── job.js │ │ │ ├── list.json │ │ │ ├── list_inverse.json │ │ │ ├── medical.js │ │ │ ├── science.js │ │ │ ├── security.js │ │ │ └── service.js │ │ └── landmark.js │ ├── outfits │ │ └── outfit.js │ ├── power │ │ ├── apc.js │ │ ├── cable.js │ │ ├── cell.js │ │ ├── controller.js │ │ ├── helpers.js │ │ ├── lighting.js │ │ ├── machine.js │ │ ├── node.js │ │ ├── powernet.js │ │ └── smes.js │ ├── projectiles │ │ ├── ammunition.js │ │ ├── ammunition │ │ │ ├── ammo_casings.js │ │ │ └── energy.js │ │ ├── box_magazine.js │ │ ├── boxes_magazines │ │ │ ├── ammo_boxes.js │ │ │ └── external_mag.js │ │ ├── gun.js │ │ ├── guns │ │ │ ├── ballistic.js │ │ │ ├── ballistic │ │ │ │ └── pistol.js │ │ │ ├── energy.js │ │ │ └── energy │ │ │ │ ├── laser.js │ │ │ │ └── stun.js │ │ ├── projectile.js │ │ └── projectile │ │ │ ├── beam.js │ │ │ ├── bullets.js │ │ │ └── energy.js │ ├── reagents │ │ ├── binding.js │ │ ├── containers │ │ │ ├── open.js │ │ │ ├── pill.js │ │ │ └── spray.js │ │ ├── holder.js │ │ ├── machinery │ │ │ ├── chem_dispenser.js │ │ │ └── chem_heater.js │ │ ├── reagent.js │ │ ├── reagents │ │ │ ├── alcohol.js │ │ │ ├── blob.js │ │ │ ├── drink.js │ │ │ ├── drug.js │ │ │ ├── food.js │ │ │ ├── medicine.js │ │ │ ├── other.js │ │ │ ├── pyrotechnic.js │ │ │ └── toxin.js │ │ └── recipes │ │ │ ├── drugs.js │ │ │ ├── medicine.js │ │ │ ├── others.js │ │ │ ├── pyrotechnics.js │ │ │ └── toxins.js │ ├── shuttle │ │ └── shuttle.js │ ├── smoothing │ │ └── smoothing.js │ └── speech │ │ └── speech.js └── onclick │ ├── action.js │ ├── hud.js │ ├── interact.js │ ├── inventory.js │ ├── screen_objects.js │ └── strip_panel.js ├── config └── default │ ├── config.cson │ ├── game_options.cson │ └── server.cson ├── index.js ├── launch.bat ├── launch.sh ├── launch_debug.bat ├── package.json ├── res ├── favicon.ico ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── icons │ ├── 480x480.png │ ├── 480x480.png.json │ ├── BadAss.png │ ├── BadAss.png.json │ ├── PSD files │ │ ├── asteroiddustoverlay.psd │ │ ├── door.psd │ │ ├── large-stamps.psd │ │ └── locker_template.psd │ ├── Testing │ │ ├── air_meter.png │ │ ├── air_meter.png.json │ │ ├── atmos_testing.png │ │ ├── atmos_testing.png.json │ │ ├── turf_analysis.png │ │ └── turf_analysis.png.json │ ├── VendingMachineBG.png │ ├── ass │ │ ├── assalien.png │ │ ├── assdrone.png │ │ ├── assfemale.png │ │ └── assmale.png │ ├── dispensebutton_bg.png │ ├── effects │ │ ├── 119x268.png │ │ ├── 119x268.png.json │ │ ├── 128x128.png │ │ ├── 128x128.png.json │ │ ├── 160x160.png │ │ ├── 160x160.png.json │ │ ├── 166x195.png │ │ ├── 166x195.png.json │ │ ├── 224x224.png │ │ ├── 224x224.png.json │ │ ├── 237x321.png │ │ ├── 237x321.png.json │ │ ├── 274x385.png │ │ ├── 274x385.png.json │ │ ├── 288x288.png │ │ ├── 288x288.png.json │ │ ├── 352x352.png │ │ ├── 352x352.png.json │ │ ├── 400x400.png │ │ ├── 400x400.png.json │ │ ├── 512x512.png │ │ ├── 512x512.png.json │ │ ├── 64x64.png │ │ ├── 64x64.png.json │ │ ├── 96x32.png │ │ ├── 96x32.png.json │ │ ├── 96x96.png │ │ ├── 96x96.png.json │ │ ├── alphacolors.png │ │ ├── alphacolors.png.json │ │ ├── beam.png │ │ ├── beam.png.json │ │ ├── bleed.png │ │ ├── bleed.png.json │ │ ├── blood.png │ │ ├── blood.png.json │ │ ├── bubblegum.png │ │ ├── bubblegum.png.json │ │ ├── cameravis.png │ │ ├── cameravis.png.json │ │ ├── chemsmoke.png │ │ ├── chemsmoke.png.json │ │ ├── clockwork_effects.png │ │ ├── clockwork_effects.png.json │ │ ├── compromise_target.png │ │ ├── compromise_target.png.json │ │ ├── crayondecal.png │ │ ├── crayondecal.png.json │ │ ├── creampie.png │ │ ├── creampie.png.json │ │ ├── cult_effects.png │ │ ├── cult_effects.png.json │ │ ├── cult_target.png │ │ ├── cult_target.png.json │ │ ├── effects.png │ │ ├── effects.png.json │ │ ├── fields.png │ │ ├── fields.png.json │ │ ├── fire.png │ │ ├── fire.png.json │ │ ├── footprints.png │ │ ├── footprints.png.json │ │ ├── freeze.png │ │ ├── freeze.png.json │ │ ├── genetics.png │ │ ├── genetics.png.json │ │ ├── item_damage.png │ │ ├── item_damage.png.json │ │ ├── lighting.png │ │ ├── lighting.png.json │ │ ├── lighting_object.png │ │ ├── lighting_object.png.json │ │ ├── liquid.png │ │ ├── liquid.png.json │ │ ├── ore_visuals.png │ │ ├── ore_visuals.png.json │ │ ├── overload_machine_target.png │ │ ├── overload_machine_target.png.json │ │ ├── override_machine_target.png │ │ ├── override_machine_target.png.json │ │ ├── parallax.png │ │ ├── parallax.png.json │ │ ├── progressbar.png │ │ ├── progressbar.png.json │ │ ├── spacevines.png │ │ ├── spacevines.png.json │ │ ├── ss13_dark_alpha6.png │ │ ├── ss13_dark_alpha6.png.json │ │ ├── ss13_dark_alpha7.png │ │ ├── ss13_dark_alpha7.png.json │ │ ├── ss13_dark_alpha7_DEBUG.png │ │ ├── ss13_dark_alpha7_DEBUG.png.json │ │ ├── ss13_dark_alpha7_old.png │ │ ├── ss13_dark_alpha7_old.png.json │ │ ├── static.png │ │ ├── static.png.json │ │ ├── station_explosion.png │ │ ├── station_explosion.png.json │ │ ├── throw_target.png │ │ ├── throw_target.png.json │ │ ├── tile_effects.png │ │ ├── tile_effects.png.json │ │ ├── tomatodecal.png │ │ ├── tomatodecal.png.json │ │ ├── trail.png │ │ ├── trail.png.json │ │ ├── vanguard_target.png │ │ ├── vanguard_target.png.json │ │ ├── visor_reticule.png │ │ ├── visor_reticule.png.json │ │ ├── volt_target.png │ │ ├── volt_target.png.json │ │ ├── water.png │ │ ├── water.png.json │ │ ├── weather_effects.png │ │ ├── weather_effects.png.json │ │ ├── wrap_target.png │ │ └── wrap_target.png.json │ ├── emoji.png │ ├── emoji.png.json │ ├── mecha │ │ ├── mech_bay.png │ │ ├── mech_bay.png.json │ │ ├── mech_construct.png │ │ ├── mech_construct.png.json │ │ ├── mech_construction.png │ │ ├── mech_construction.png.json │ │ ├── mech_fab.png │ │ ├── mech_fab.png.json │ │ ├── mecha.png │ │ ├── mecha.png.json │ │ ├── mecha_equipment.png │ │ ├── mecha_equipment.png.json │ │ ├── mecha_mouse.png │ │ └── mecha_mouse.png.json │ ├── member_content.png │ ├── member_content.png.json │ ├── minimap.png │ ├── minimap.png.json │ ├── minimaps │ │ ├── Box Station_2.png │ │ ├── CereStation_2.png │ │ ├── Delta Station_2.png │ │ ├── MetaStation_2.png │ │ └── OmegaStation_2.png │ ├── misc │ │ ├── beach.png │ │ ├── beach.png.json │ │ ├── beach2.png │ │ ├── beach2.png.json │ │ ├── buildmode.png │ │ ├── buildmode.png.json │ │ ├── imap.png │ │ ├── imap.png.json │ │ ├── inpipe.png │ │ ├── inpipe.png.json │ │ ├── language.png │ │ ├── language.png.json │ │ ├── largeui.png │ │ ├── largeui.png.json │ │ ├── mark.png │ │ ├── mark.png.json │ │ ├── radar.png │ │ ├── radar.png.json │ │ ├── static.png │ │ └── static.png.json │ ├── mob │ │ ├── 32x64.png │ │ ├── 32x64.png.json │ │ ├── AI.png │ │ ├── AI.png.json │ │ ├── Easter.png │ │ ├── Easter.png.json │ │ ├── EvilPope.png │ │ ├── EvilPope.png.json │ │ ├── OnFire.png │ │ ├── OnFire.png.json │ │ ├── accessories.png │ │ ├── accessories.png.json │ │ ├── actions.png │ │ ├── actions.png.json │ │ ├── actions │ │ │ ├── actions_AI.png │ │ │ ├── actions_AI.png.json │ │ │ ├── actions_animal.png │ │ │ ├── actions_animal.png.json │ │ │ ├── actions_clockcult.png │ │ │ ├── actions_clockcult.png.json │ │ │ ├── actions_construction.png │ │ │ ├── actions_construction.png.json │ │ │ ├── actions_cult.png │ │ │ ├── actions_cult.png.json │ │ │ ├── actions_flightsuit.png │ │ │ ├── actions_flightsuit.png.json │ │ │ ├── actions_items.png │ │ │ ├── actions_items.png.json │ │ │ ├── actions_mecha.png │ │ │ ├── actions_mecha.png.json │ │ │ ├── actions_minor_antag.png │ │ │ ├── actions_minor_antag.png.json │ │ │ ├── actions_revenant.png │ │ │ ├── actions_revenant.png.json │ │ │ ├── actions_silicon.png │ │ │ ├── actions_silicon.png.json │ │ │ ├── actions_slime.png │ │ │ ├── actions_slime.png.json │ │ │ ├── actions_spells.png │ │ │ ├── actions_spells.png.json │ │ │ ├── actions_xeno.png │ │ │ ├── actions_xeno.png.json │ │ │ ├── backgrounds.png │ │ │ └── backgrounds.png.json │ │ ├── aibots.png │ │ ├── aibots.png.json │ │ ├── alien.png │ │ ├── alien.png.json │ │ ├── alienleap.png │ │ ├── alienleap.png.json │ │ ├── alienqueen.png │ │ ├── alienqueen.png.json │ │ ├── animal.png │ │ ├── animal.png.json │ │ ├── animal_parts.png │ │ ├── animal_parts.png.json │ │ ├── augmentation │ │ │ ├── augments.png │ │ │ ├── augments.png.json │ │ │ ├── augments_engineer.png │ │ │ ├── augments_engineer.png.json │ │ │ ├── augments_mining.png │ │ │ ├── augments_mining.png.json │ │ │ ├── augments_security.png │ │ │ ├── augments_security.png.json │ │ │ ├── surplus_augments.png │ │ │ └── surplus_augments.png.json │ │ ├── back.png │ │ ├── back.png.json │ │ ├── bees.png │ │ ├── bees.png.json │ │ ├── belt.png │ │ ├── belt.png.json │ │ ├── belt_mirror.png │ │ ├── belt_mirror.png.json │ │ ├── blob.png │ │ ├── blob.png.json │ │ ├── broadMobs.png │ │ ├── broadMobs.png.json │ │ ├── clockwork_mobs.png │ │ ├── clockwork_mobs.png.json │ │ ├── corgi_back.png │ │ ├── corgi_back.png.json │ │ ├── corgi_head.png │ │ ├── corgi_head.png.json │ │ ├── dam_mob.png │ │ ├── dam_mob.png.json │ │ ├── drone.png │ │ ├── drone.png.json │ │ ├── ears.png │ │ ├── ears.png.json │ │ ├── eyes.png │ │ ├── eyes.png.json │ │ ├── facialhair_extensions.png │ │ ├── facialhair_extensions.png.json │ │ ├── feet.png │ │ ├── feet.png.json │ │ ├── gondolas.png │ │ ├── gondolas.png.json │ │ ├── gorilla.png │ │ ├── gorilla.png.json │ │ ├── guardian.png │ │ ├── guardian.png.json │ │ ├── hair_extensions.png │ │ ├── hair_extensions.png.json │ │ ├── hands.png │ │ ├── hands.png.json │ │ ├── head.png │ │ ├── head.png.json │ │ ├── hivebot.png │ │ ├── hivebot.png.json │ │ ├── hud.png │ │ ├── hud.png.json │ │ ├── human.png │ │ ├── human.png.json │ │ ├── human_face.png │ │ ├── human_face.png.json │ │ ├── human_parts.png │ │ ├── human_parts.png.json │ │ ├── human_parts_greyscale.png │ │ ├── human_parts_greyscale.png.json │ │ ├── inhands │ │ │ ├── 64x64_lefthand.png │ │ │ ├── 64x64_lefthand.png.json │ │ │ ├── 64x64_righthand.png │ │ │ ├── 64x64_righthand.png.json │ │ │ ├── __inhand_template.png │ │ │ ├── __inhand_template.png.json │ │ │ ├── antag │ │ │ │ ├── abductor_lefthand.png │ │ │ │ ├── abductor_lefthand.png.json │ │ │ │ ├── abductor_righthand.png │ │ │ │ ├── abductor_righthand.png.json │ │ │ │ ├── balloons_lefthand.png │ │ │ │ ├── balloons_lefthand.png.json │ │ │ │ ├── balloons_righthand.png │ │ │ │ ├── balloons_righthand.png.json │ │ │ │ ├── changeling_lefthand.png │ │ │ │ ├── changeling_lefthand.png.json │ │ │ │ ├── changeling_righthand.png │ │ │ │ ├── changeling_righthand.png.json │ │ │ │ ├── clockwork_lefthand.png │ │ │ │ ├── clockwork_lefthand.png.json │ │ │ │ ├── clockwork_righthand.png │ │ │ │ └── clockwork_righthand.png.json │ │ │ ├── clothing_lefthand.png │ │ │ ├── clothing_lefthand.png.json │ │ │ ├── clothing_righthand.png │ │ │ ├── clothing_righthand.png.json │ │ │ ├── equipment │ │ │ │ ├── backpack_lefthand.png │ │ │ │ ├── backpack_lefthand.png.json │ │ │ │ ├── backpack_righthand.png │ │ │ │ ├── backpack_righthand.png.json │ │ │ │ ├── banners_lefthand.png │ │ │ │ ├── banners_lefthand.png.json │ │ │ │ ├── banners_righthand.png │ │ │ │ ├── banners_righthand.png.json │ │ │ │ ├── briefcase_lefthand.png │ │ │ │ ├── briefcase_lefthand.png.json │ │ │ │ ├── briefcase_righthand.png │ │ │ │ ├── briefcase_righthand.png.json │ │ │ │ ├── custodial_lefthand.png │ │ │ │ ├── custodial_lefthand.png.json │ │ │ │ ├── custodial_righthand.png │ │ │ │ ├── custodial_righthand.png.json │ │ │ │ ├── horns_lefthand.png │ │ │ │ ├── horns_lefthand.png.json │ │ │ │ ├── horns_righthand.png │ │ │ │ ├── horns_righthand.png.json │ │ │ │ ├── hydroponics_lefthand.png │ │ │ │ ├── hydroponics_lefthand.png.json │ │ │ │ ├── hydroponics_righthand.png │ │ │ │ ├── hydroponics_righthand.png.json │ │ │ │ ├── idcards_lefthand.png │ │ │ │ ├── idcards_lefthand.png.json │ │ │ │ ├── idcards_righthand.png │ │ │ │ ├── idcards_righthand.png.json │ │ │ │ ├── instruments_lefthand.png │ │ │ │ ├── instruments_lefthand.png.json │ │ │ │ ├── instruments_righthand.png │ │ │ │ ├── instruments_righthand.png.json │ │ │ │ ├── jetpacks_lefthand.png │ │ │ │ ├── jetpacks_lefthand.png.json │ │ │ │ ├── jetpacks_righthand.png │ │ │ │ ├── jetpacks_righthand.png.json │ │ │ │ ├── kitchen_lefthand.png │ │ │ │ ├── kitchen_lefthand.png.json │ │ │ │ ├── kitchen_righthand.png │ │ │ │ ├── kitchen_righthand.png.json │ │ │ │ ├── medical_lefthand.png │ │ │ │ ├── medical_lefthand.png.json │ │ │ │ ├── medical_righthand.png │ │ │ │ ├── medical_righthand.png.json │ │ │ │ ├── mining_lefthand.png │ │ │ │ ├── mining_lefthand.png.json │ │ │ │ ├── mining_righthand.png │ │ │ │ ├── mining_righthand.png.json │ │ │ │ ├── mister_lefthand.png │ │ │ │ ├── mister_lefthand.png.json │ │ │ │ ├── mister_righthand.png │ │ │ │ ├── mister_righthand.png.json │ │ │ │ ├── security_lefthand.png │ │ │ │ ├── security_lefthand.png.json │ │ │ │ ├── security_righthand.png │ │ │ │ ├── security_righthand.png.json │ │ │ │ ├── shields_lefthand.png │ │ │ │ ├── shields_lefthand.png.json │ │ │ │ ├── shields_righthand.png │ │ │ │ ├── shields_righthand.png.json │ │ │ │ ├── tanks_lefthand.png │ │ │ │ ├── tanks_lefthand.png.json │ │ │ │ ├── tanks_righthand.png │ │ │ │ ├── tanks_righthand.png.json │ │ │ │ ├── toolbox_lefthand.png │ │ │ │ ├── toolbox_lefthand.png.json │ │ │ │ ├── toolbox_righthand.png │ │ │ │ ├── toolbox_righthand.png.json │ │ │ │ ├── tools_lefthand.png │ │ │ │ ├── tools_lefthand.png.json │ │ │ │ ├── tools_righthand.png │ │ │ │ └── tools_righthand.png.json │ │ │ ├── items_lefthand.png │ │ │ ├── items_lefthand.png.json │ │ │ ├── items_righthand.png │ │ │ ├── items_righthand.png.json │ │ │ ├── misc │ │ │ │ ├── books_lefthand.png │ │ │ │ ├── books_lefthand.png.json │ │ │ │ ├── books_righthand.png │ │ │ │ ├── books_righthand.png.json │ │ │ │ ├── chairs_lefthand.png │ │ │ │ ├── chairs_lefthand.png.json │ │ │ │ ├── chairs_righthand.png │ │ │ │ ├── chairs_righthand.png.json │ │ │ │ ├── devices_lefthand.png │ │ │ │ ├── devices_lefthand.png.json │ │ │ │ ├── devices_righthand.png │ │ │ │ ├── devices_righthand.png.json │ │ │ │ ├── food_lefthand.png │ │ │ │ ├── food_lefthand.png.json │ │ │ │ ├── food_righthand.png │ │ │ │ ├── food_righthand.png.json │ │ │ │ ├── lavaland_lefthand.png │ │ │ │ ├── lavaland_lefthand.png.json │ │ │ │ ├── lavaland_righthand.png │ │ │ │ ├── lavaland_righthand.png.json │ │ │ │ ├── sheets_lefthand.png │ │ │ │ ├── sheets_lefthand.png.json │ │ │ │ ├── sheets_righthand.png │ │ │ │ └── sheets_righthand.png.json │ │ │ └── weapons │ │ │ │ ├── axes_lefthand.png │ │ │ │ ├── axes_lefthand.png.json │ │ │ │ ├── axes_righthand.png │ │ │ │ ├── axes_righthand.png.json │ │ │ │ ├── bombs_lefthand.png │ │ │ │ ├── bombs_lefthand.png.json │ │ │ │ ├── bombs_righthand.png │ │ │ │ ├── bombs_righthand.png.json │ │ │ │ ├── chainsaw_lefthand.png │ │ │ │ ├── chainsaw_lefthand.png.json │ │ │ │ ├── chainsaw_righthand.png │ │ │ │ ├── chainsaw_righthand.png.json │ │ │ │ ├── flamethrower_lefthand.png │ │ │ │ ├── flamethrower_lefthand.png.json │ │ │ │ ├── flamethrower_righthand.png │ │ │ │ ├── flamethrower_righthand.png.json │ │ │ │ ├── guns_lefthand.png │ │ │ │ ├── guns_lefthand.png.json │ │ │ │ ├── guns_righthand.png │ │ │ │ ├── guns_righthand.png.json │ │ │ │ ├── hammers_lefthand.png │ │ │ │ ├── hammers_lefthand.png.json │ │ │ │ ├── hammers_righthand.png │ │ │ │ ├── hammers_righthand.png.json │ │ │ │ ├── melee_lefthand.png │ │ │ │ ├── melee_lefthand.png.json │ │ │ │ ├── melee_righthand.png │ │ │ │ ├── melee_righthand.png.json │ │ │ │ ├── plants_lefthand.png │ │ │ │ ├── plants_lefthand.png.json │ │ │ │ ├── plants_righthand.png │ │ │ │ ├── plants_righthand.png.json │ │ │ │ ├── polearms_lefthand.png │ │ │ │ ├── polearms_lefthand.png.json │ │ │ │ ├── polearms_righthand.png │ │ │ │ ├── polearms_righthand.png.json │ │ │ │ ├── staves_lefthand.png │ │ │ │ ├── staves_lefthand.png.json │ │ │ │ ├── staves_righthand.png │ │ │ │ ├── staves_righthand.png.json │ │ │ │ ├── swords_lefthand.png │ │ │ │ ├── swords_lefthand.png.json │ │ │ │ ├── swords_righthand.png │ │ │ │ └── swords_righthand.png.json │ │ ├── jungle │ │ │ ├── arachnid.png │ │ │ ├── arachnid.png.json │ │ │ ├── leaper.png │ │ │ ├── leaper.png.json │ │ │ ├── mook.png │ │ │ ├── mook.png.json │ │ │ ├── seedling.png │ │ │ └── seedling.png.json │ │ ├── large-worn-icons │ │ │ └── 64x64 │ │ │ │ ├── head.png │ │ │ │ └── head.png.json │ │ ├── lavaland │ │ │ ├── 64x64megafauna.png │ │ │ ├── 64x64megafauna.png.json │ │ │ ├── 96x96megafauna.png │ │ │ ├── 96x96megafauna.png.json │ │ │ ├── hierophant.png │ │ │ ├── hierophant.png.json │ │ │ ├── hierophant_new.png │ │ │ ├── hierophant_new.png.json │ │ │ ├── lavaland_monsters.png │ │ │ ├── lavaland_monsters.png.json │ │ │ ├── legion.png │ │ │ ├── legion.png.json │ │ │ ├── watcher.png │ │ │ └── watcher.png.json │ │ ├── limb_mask.png │ │ ├── limb_mask.png.json │ │ ├── mask.png │ │ ├── mask.png.json │ │ ├── mob.png │ │ ├── mob.png.json │ │ ├── monkey.png │ │ ├── monkey.png.json │ │ ├── mutant_bodyparts.png │ │ ├── mutant_bodyparts.png.json │ │ ├── neck.png │ │ ├── neck.png.json │ │ ├── nest.png │ │ ├── nest.png.json │ │ ├── pai.png │ │ ├── pai.png.json │ │ ├── penguins.png │ │ ├── penguins.png.json │ │ ├── pets.png │ │ ├── pets.png.json │ │ ├── robot_items.png │ │ ├── robot_items.png.json │ │ ├── robots.png │ │ ├── robots.png.json │ │ ├── screen_ai.png │ │ ├── screen_ai.png.json │ │ ├── screen_alert.png │ │ ├── screen_alert.png.json │ │ ├── screen_alien.png │ │ ├── screen_alien.png.json │ │ ├── screen_clockwork.png │ │ ├── screen_clockwork.png.json │ │ ├── screen_construct.png │ │ ├── screen_construct.png.json │ │ ├── screen_cyborg.png │ │ ├── screen_cyborg.png.json │ │ ├── screen_full.png │ │ ├── screen_full.png.json │ │ ├── screen_gen.png │ │ ├── screen_gen.png.json │ │ ├── screen_gen_old.png │ │ ├── screen_gen_old.png.json │ │ ├── screen_ghost.png │ │ ├── screen_ghost.png.json │ │ ├── screen_midnight.png │ │ ├── screen_midnight.png.json │ │ ├── screen_operative.png │ │ ├── screen_operative.png.json │ │ ├── screen_plasmafire.png │ │ ├── screen_plasmafire.png.json │ │ ├── screen_retro.png │ │ ├── screen_retro.png.json │ │ ├── screen_slimecore.png │ │ ├── screen_slimecore.png.json │ │ ├── simple_human.png │ │ ├── simple_human.png.json │ │ ├── slimes.png │ │ ├── slimes.png.json │ │ ├── suit.png │ │ ├── suit.png.json │ │ ├── swarmer.png │ │ ├── swarmer.png.json │ │ ├── talk.png │ │ ├── talk.png.json │ │ ├── underwear.png │ │ ├── underwear.png.json │ │ ├── uniform.png │ │ ├── uniform.png.json │ │ ├── wings.png │ │ ├── wings.png.json │ │ ├── zone_sel.png │ │ └── zone_sel.png.json │ ├── obj │ │ ├── 2x2.png │ │ ├── 2x2.png.json │ │ ├── 3x3.png │ │ ├── 3x3.png.json │ │ ├── Cryogenic2.png │ │ ├── Cryogenic2.png.json │ │ ├── abductor.png │ │ ├── abductor.png.json │ │ ├── aicards.png │ │ ├── aicards.png.json │ │ ├── airlock_machines.png │ │ ├── airlock_machines.png.json │ │ ├── ammo.png │ │ ├── ammo.png.json │ │ ├── artstuff.png │ │ ├── artstuff.png.json │ │ ├── assemblies.png │ │ ├── assemblies.png.json │ │ ├── assemblies │ │ │ ├── new_assemblies.png │ │ │ └── new_assemblies.png.json │ │ ├── atmos.png │ │ ├── atmos.png.json │ │ ├── atmospherics │ │ │ ├── components │ │ │ │ ├── binary_devices.png │ │ │ │ ├── binary_devices.png.json │ │ │ │ ├── miners.png │ │ │ │ ├── miners.png.json │ │ │ │ ├── relief_valve.png │ │ │ │ ├── relief_valve.png.json │ │ │ │ ├── trinary_devices.png │ │ │ │ ├── trinary_devices.png.json │ │ │ │ ├── unary_devices.png │ │ │ │ └── unary_devices.png.json │ │ │ └── pipes │ │ │ │ ├── disposal.png │ │ │ │ ├── disposal.png.json │ │ │ │ ├── heat.png │ │ │ │ ├── heat.png.json │ │ │ │ ├── junction.png │ │ │ │ ├── junction.png.json │ │ │ │ ├── manifold.png │ │ │ │ ├── manifold.png.json │ │ │ │ ├── pipe_item.png │ │ │ │ ├── pipe_item.png.json │ │ │ │ ├── pressure_tank.png │ │ │ │ ├── pressure_tank.png.json │ │ │ │ ├── simple.png │ │ │ │ ├── simple.png.json │ │ │ │ ├── transit_tube.png │ │ │ │ └── transit_tube.png.json │ │ ├── barsigns.png │ │ ├── barsigns.png.json │ │ ├── basketball.png │ │ ├── basketball.png.json │ │ ├── bedsheets.png │ │ ├── bedsheets.png.json │ │ ├── bike.png │ │ ├── bike.png.json │ │ ├── biogenerator.png │ │ ├── biogenerator.png.json │ │ ├── biomass.png │ │ ├── biomass.png.json │ │ ├── bloodpack.png │ │ ├── bloodpack.png.json │ │ ├── bodybag.png │ │ ├── bodybag.png.json │ │ ├── brokentiling.png │ │ ├── brokentiling.png.json │ │ ├── bureaucracy.png │ │ ├── bureaucracy.png.json │ │ ├── bus.png │ │ ├── bus.png.json │ │ ├── candle.png │ │ ├── candle.png.json │ │ ├── car.png │ │ ├── car.png.json │ │ ├── card.png │ │ ├── card.png.json │ │ ├── cardboard_cutout.png │ │ ├── cardboard_cutout.png.json │ │ ├── chairs.png │ │ ├── chairs.png.json │ │ ├── chemical.png │ │ ├── chemical.png.json │ │ ├── chempuff.png │ │ ├── chempuff.png.json │ │ ├── christmas.png │ │ ├── christmas.png.json │ │ ├── chronos.png │ │ ├── chronos.png.json │ │ ├── cigarettes.png │ │ ├── cigarettes.png.json │ │ ├── clockwork_objects.png │ │ ├── clockwork_objects.png.json │ │ ├── cloning.png │ │ ├── cloning.png.json │ │ ├── closet.png │ │ ├── closet.png.json │ │ ├── clothing │ │ │ ├── accessories.png │ │ │ ├── accessories.png.json │ │ │ ├── belt_overlays.png │ │ │ ├── belt_overlays.png.json │ │ │ ├── belts.png │ │ │ ├── belts.png.json │ │ │ ├── cloaks.png │ │ │ ├── cloaks.png.json │ │ │ ├── clockwork_garb.png │ │ │ ├── clockwork_garb.png.json │ │ │ ├── flightsuit.png │ │ │ ├── flightsuit.png.json │ │ │ ├── glasses.png │ │ │ ├── glasses.png.json │ │ │ ├── gloves.png │ │ │ ├── gloves.png.json │ │ │ ├── hats.png │ │ │ ├── hats.png.json │ │ │ ├── masks.png │ │ │ ├── masks.png.json │ │ │ ├── neck.png │ │ │ ├── neck.png.json │ │ │ ├── shoes.png │ │ │ ├── shoes.png.json │ │ │ ├── suits.png │ │ │ ├── suits.png.json │ │ │ ├── uniforms.png │ │ │ └── uniforms.png.json │ │ ├── computer.png │ │ ├── computer.png.json │ │ ├── contraband.png │ │ ├── contraband.png.json │ │ ├── crates.png │ │ ├── crates.png.json │ │ ├── crayons.png │ │ ├── crayons.png.json │ │ ├── cryo_mobs.png │ │ ├── cryo_mobs.png.json │ │ ├── cryogenics.png │ │ ├── cryogenics.png.json │ │ ├── cult.png │ │ ├── cult.png.json │ │ ├── cult_large.png │ │ ├── cult_large.png.json │ │ ├── decals.png │ │ ├── decals.png.json │ │ ├── device.png │ │ ├── device.png.json │ │ ├── dice.png │ │ ├── dice.png.json │ │ ├── doors │ │ │ ├── 1x2blast_hor.png │ │ │ ├── 1x2blast_hor.png.json │ │ │ ├── 1x2blast_vert.png │ │ │ ├── 1x2blast_vert.png.json │ │ │ ├── 1x4blast_hor.png │ │ │ ├── 1x4blast_hor.png.json │ │ │ ├── 1x4blast_vert.png │ │ │ ├── 1x4blast_vert.png.json │ │ │ ├── Door2x1glassfull.png │ │ │ ├── Door2x1glassfull.png.json │ │ │ ├── DoorHazard.png │ │ │ ├── DoorHazard.png.json │ │ │ ├── Doorf.png │ │ │ ├── Doorf.png.json │ │ │ ├── Doorfire.png │ │ │ ├── Doorfire.png.json │ │ │ ├── Doorfireglass.png │ │ │ ├── Doorfireglass.png.json │ │ │ ├── airlocks │ │ │ │ ├── abductor │ │ │ │ │ ├── abductor_airlock.png │ │ │ │ │ ├── abductor_airlock.png.json │ │ │ │ │ ├── overlays.png │ │ │ │ │ └── overlays.png.json │ │ │ │ ├── centcom │ │ │ │ │ ├── centcom.png │ │ │ │ │ ├── centcom.png.json │ │ │ │ │ ├── overlays.png │ │ │ │ │ └── overlays.png.json │ │ │ │ ├── clockwork │ │ │ │ │ ├── overlays.png │ │ │ │ │ ├── overlays.png.json │ │ │ │ │ ├── pinion_airlock.png │ │ │ │ │ └── pinion_airlock.png.json │ │ │ │ ├── cult │ │ │ │ │ ├── runed │ │ │ │ │ │ ├── cult.png │ │ │ │ │ │ ├── cult.png.json │ │ │ │ │ │ ├── overlays.png │ │ │ │ │ │ └── overlays.png.json │ │ │ │ │ └── unruned │ │ │ │ │ │ ├── cult.png │ │ │ │ │ │ ├── cult.png.json │ │ │ │ │ │ ├── overlays.png │ │ │ │ │ │ └── overlays.png.json │ │ │ │ ├── external │ │ │ │ │ ├── external.png │ │ │ │ │ ├── external.png.json │ │ │ │ │ ├── overlays.png │ │ │ │ │ └── overlays.png.json │ │ │ │ ├── glass_large │ │ │ │ │ ├── glass_large.png │ │ │ │ │ ├── glass_large.png.json │ │ │ │ │ ├── overlays.png │ │ │ │ │ └── overlays.png.json │ │ │ │ ├── hatch │ │ │ │ │ ├── centcom.png │ │ │ │ │ ├── centcom.png.json │ │ │ │ │ ├── maintenance.png │ │ │ │ │ ├── maintenance.png.json │ │ │ │ │ ├── overlays.png │ │ │ │ │ └── overlays.png.json │ │ │ │ ├── highsec │ │ │ │ │ ├── highsec.png │ │ │ │ │ ├── highsec.png.json │ │ │ │ │ ├── overlays.png │ │ │ │ │ └── overlays.png.json │ │ │ │ ├── shuttle │ │ │ │ │ ├── overlays.png │ │ │ │ │ ├── overlays.png.json │ │ │ │ │ ├── shuttle.png │ │ │ │ │ └── shuttle.png.json │ │ │ │ ├── station │ │ │ │ │ ├── atmos.png │ │ │ │ │ ├── atmos.png.json │ │ │ │ │ ├── bananium.png │ │ │ │ │ ├── bananium.png.json │ │ │ │ │ ├── command.png │ │ │ │ │ ├── command.png.json │ │ │ │ │ ├── diamond.png │ │ │ │ │ ├── diamond.png.json │ │ │ │ │ ├── engineering.png │ │ │ │ │ ├── engineering.png.json │ │ │ │ │ ├── freezer.png │ │ │ │ │ ├── freezer.png.json │ │ │ │ │ ├── gold.png │ │ │ │ │ ├── gold.png.json │ │ │ │ │ ├── maintenance.png │ │ │ │ │ ├── maintenance.png.json │ │ │ │ │ ├── maintenanceexternal.png │ │ │ │ │ ├── maintenanceexternal.png.json │ │ │ │ │ ├── medical.png │ │ │ │ │ ├── medical.png.json │ │ │ │ │ ├── mining.png │ │ │ │ │ ├── mining.png.json │ │ │ │ │ ├── overlays.png │ │ │ │ │ ├── overlays.png.json │ │ │ │ │ ├── plasma.png │ │ │ │ │ ├── plasma.png.json │ │ │ │ │ ├── public.png │ │ │ │ │ ├── public.png.json │ │ │ │ │ ├── research.png │ │ │ │ │ ├── research.png.json │ │ │ │ │ ├── sandstone.png │ │ │ │ │ ├── sandstone.png.json │ │ │ │ │ ├── science.png │ │ │ │ │ ├── science.png.json │ │ │ │ │ ├── security.png │ │ │ │ │ ├── security.png.json │ │ │ │ │ ├── silver.png │ │ │ │ │ ├── silver.png.json │ │ │ │ │ ├── uranium.png │ │ │ │ │ ├── uranium.png.json │ │ │ │ │ ├── virology.png │ │ │ │ │ ├── virology.png.json │ │ │ │ │ ├── wood.png │ │ │ │ │ └── wood.png.json │ │ │ │ ├── station2 │ │ │ │ │ ├── glass.png │ │ │ │ │ ├── glass.png.json │ │ │ │ │ ├── overlays.png │ │ │ │ │ └── overlays.png.json │ │ │ │ ├── survival │ │ │ │ │ ├── survival.png │ │ │ │ │ ├── survival.png.json │ │ │ │ │ ├── survival_overlays.png │ │ │ │ │ └── survival_overlays.png.json │ │ │ │ └── vault │ │ │ │ │ ├── overlays.png │ │ │ │ │ ├── overlays.png.json │ │ │ │ │ ├── vault.png │ │ │ │ │ └── vault.png.json │ │ │ ├── blastdoor.png │ │ │ ├── blastdoor.png.json │ │ │ ├── door_assembly.png │ │ │ ├── door_assembly.png.json │ │ │ ├── doorint.png │ │ │ ├── doorint.png.json │ │ │ ├── doormorgue.png │ │ │ ├── doormorgue.png.json │ │ │ ├── edge_Doorfire.png │ │ │ ├── edge_Doorfire.png.json │ │ │ ├── mineral_doors.png │ │ │ ├── mineral_doors.png.json │ │ │ ├── shutters.png │ │ │ ├── shutters.png.json │ │ │ ├── windoor.png │ │ │ └── windoor.png.json │ │ ├── drinks.png │ │ ├── drinks.png.json │ │ ├── economy.png │ │ ├── economy.png.json │ │ ├── fireplace.png │ │ ├── fireplace.png.json │ │ ├── flamethrower.png │ │ ├── flamethrower.png.json │ │ ├── flora │ │ │ ├── ausflora.png │ │ │ ├── ausflora.png.json │ │ │ ├── deadtrees.png │ │ │ ├── deadtrees.png.json │ │ │ ├── jungleflora.png │ │ │ ├── jungleflora.png.json │ │ │ ├── jungletrees.png │ │ │ ├── jungletrees.png.json │ │ │ ├── jungletreesmall.png │ │ │ ├── jungletreesmall.png.json │ │ │ ├── largejungleflora.png │ │ │ ├── largejungleflora.png.json │ │ │ ├── pinetrees.png │ │ │ ├── pinetrees.png.json │ │ │ ├── plants.png │ │ │ ├── plants.png.json │ │ │ ├── rocks.png │ │ │ ├── rocks.png.json │ │ │ ├── snowflora.png │ │ │ └── snowflora.png.json │ │ ├── fluff.png │ │ ├── fluff.png.json │ │ ├── food │ │ │ ├── burgerbread.png │ │ │ ├── burgerbread.png.json │ │ │ ├── containers.png │ │ │ ├── containers.png.json │ │ │ ├── food.png │ │ │ ├── food.png.json │ │ │ ├── food_ingredients.png │ │ │ ├── food_ingredients.png.json │ │ │ ├── piecake.png │ │ │ ├── piecake.png.json │ │ │ ├── pizzaspaghetti.png │ │ │ ├── pizzaspaghetti.png.json │ │ │ ├── soupsalad.png │ │ │ └── soupsalad.png.json │ │ ├── fulton.png │ │ ├── fulton.png.json │ │ ├── fulton_balloon.png │ │ ├── fulton_balloon.png.json │ │ ├── grenade.png │ │ ├── grenade.png.json │ │ ├── guns │ │ │ ├── bayonets.png │ │ │ ├── bayonets.png.json │ │ │ ├── energy.png │ │ │ ├── energy.png.json │ │ │ ├── flashlights.png │ │ │ ├── flashlights.png.json │ │ │ ├── magic.png │ │ │ ├── magic.png.json │ │ │ ├── minigun.png │ │ │ ├── minigun.png.json │ │ │ ├── projectile.png │ │ │ ├── projectile.png.json │ │ │ ├── toy.png │ │ │ └── toy.png.json │ │ ├── halloween_items.png │ │ ├── halloween_items.png.json │ │ ├── hand_of_god_structures.png │ │ ├── hand_of_god_structures.png.json │ │ ├── holiday_misc.png │ │ ├── holiday_misc.png.json │ │ ├── hydroponics │ │ │ ├── equipment.png │ │ │ ├── equipment.png.json │ │ │ ├── growing.png │ │ │ ├── growing.png.json │ │ │ ├── growing_flowers.png │ │ │ ├── growing_flowers.png.json │ │ │ ├── growing_fruits.png │ │ │ ├── growing_fruits.png.json │ │ │ ├── growing_mushrooms.png │ │ │ ├── growing_mushrooms.png.json │ │ │ ├── growing_vegetables.png │ │ │ ├── growing_vegetables.png.json │ │ │ ├── harvest.png │ │ │ ├── harvest.png.json │ │ │ ├── seeds.png │ │ │ └── seeds.png.json │ │ ├── implants.png │ │ ├── implants.png.json │ │ ├── improvised.png │ │ ├── improvised.png.json │ │ ├── items_and_weapons.png │ │ ├── items_and_weapons.png.json │ │ ├── items_cyborg.png │ │ ├── items_cyborg.png.json │ │ ├── iv_drip.png │ │ ├── iv_drip.png.json │ │ ├── janitor.png │ │ ├── janitor.png.json │ │ ├── kitchen.png │ │ ├── kitchen.png.json │ │ ├── lavaland │ │ │ ├── artefacts.png │ │ │ ├── artefacts.png.json │ │ │ ├── ash_flora.png │ │ │ ├── ash_flora.png.json │ │ │ ├── cannon.png │ │ │ ├── cannon.png.json │ │ │ ├── donkvendor.png │ │ │ ├── donkvendor.png.json │ │ │ ├── dragonboat.png │ │ │ ├── dragonboat.png.json │ │ │ ├── orbital_cannon.png │ │ │ ├── orbital_cannon.png.json │ │ │ ├── pod_computer.png │ │ │ ├── pod_computer.png.json │ │ │ ├── spawners.png │ │ │ ├── spawners.png.json │ │ │ ├── survival_pod.png │ │ │ └── survival_pod.png.json │ │ ├── library.png │ │ ├── library.png.json │ │ ├── lighting.png │ │ ├── lighting.png.json │ │ ├── lollipop.png │ │ ├── lollipop.png.json │ │ ├── machineprototype.png │ │ ├── machineprototype.png.json │ │ ├── machines │ │ │ ├── antimatter.png │ │ │ ├── antimatter.png.json │ │ │ ├── artillery.png │ │ │ ├── artillery.png.json │ │ │ ├── dna_vault.png │ │ │ ├── dna_vault.png.json │ │ │ ├── dominator.png │ │ │ ├── dominator.png.json │ │ │ ├── droneDispenser.png │ │ │ ├── droneDispenser.png.json │ │ │ ├── fiber.png │ │ │ ├── fiber.png.json │ │ │ ├── field_generator.png │ │ │ ├── field_generator.png.json │ │ │ ├── gateway.png │ │ │ ├── gateway.png.json │ │ │ ├── gravity_generator.png │ │ │ ├── gravity_generator.png.json │ │ │ ├── heavy_fiber.png │ │ │ ├── heavy_fiber.png.json │ │ │ ├── heavy_lathe.png │ │ │ ├── heavy_lathe.png.json │ │ │ ├── implantchair.png │ │ │ ├── implantchair.png.json │ │ │ ├── lasers.png │ │ │ ├── lasers.png.json │ │ │ ├── limbgrower.png │ │ │ ├── limbgrower.png.json │ │ │ ├── magic_emitter.png │ │ │ ├── magic_emitter.png.json │ │ │ ├── mining_machines.png │ │ │ ├── mining_machines.png.json │ │ │ ├── nuke.png │ │ │ ├── nuke.png.json │ │ │ ├── nuke_terminal.png │ │ │ ├── nuke_terminal.png.json │ │ │ ├── particle_accelerator.png │ │ │ ├── particle_accelerator.png.json │ │ │ ├── research.png │ │ │ ├── research.png.json │ │ │ ├── satellite.png │ │ │ ├── satellite.png.json │ │ │ ├── selfdestruct.png │ │ │ ├── selfdestruct.png.json │ │ │ ├── shuttle_manipulator.png │ │ │ ├── shuttle_manipulator.png.json │ │ │ ├── telecomms.png │ │ │ ├── telecomms.png.json │ │ │ ├── teleporter.png │ │ │ ├── teleporter.png.json │ │ │ ├── turret_control.png │ │ │ ├── turret_control.png.json │ │ │ ├── washing_machine.png │ │ │ └── washing_machine.png.json │ │ ├── magic.png │ │ ├── magic.png.json │ │ ├── magic_terror.png │ │ ├── magic_terror.png.json │ │ ├── meteor.png │ │ ├── meteor.png.json │ │ ├── meteor_spooky.png │ │ ├── meteor_spooky.png.json │ │ ├── meter.png │ │ ├── meter.png.json │ │ ├── mining.png │ │ ├── mining.png.json │ │ ├── modular_console.png │ │ ├── modular_console.png.json │ │ ├── modular_laptop.png │ │ ├── modular_laptop.png.json │ │ ├── modular_tablet.png │ │ ├── modular_tablet.png.json │ │ ├── module.png │ │ ├── module.png.json │ │ ├── monitors.png │ │ ├── monitors.png.json │ │ ├── musician.png │ │ ├── musician.png.json │ │ ├── mysterybox.png │ │ ├── mysterybox.png.json │ │ ├── narsie.png │ │ ├── narsie.png.json │ │ ├── narsie_spawn_anim.png │ │ ├── narsie_spawn_anim.png.json │ │ ├── nuke_tools.png │ │ ├── nuke_tools.png.json │ │ ├── objects.png │ │ ├── objects.png.json │ │ ├── pda.png │ │ ├── pda.png.json │ │ ├── playing_cards.png │ │ ├── playing_cards.png.json │ │ ├── plushes.png │ │ ├── plushes.png.json │ │ ├── pneumaticCannon.png │ │ ├── pneumaticCannon.png.json │ │ ├── poster_wanted.png │ │ ├── poster_wanted.png.json │ │ ├── power.png │ │ ├── power.png.json │ │ ├── power_cond │ │ │ ├── cables.png │ │ │ ├── cables.png.json │ │ │ ├── power_cond_heavy.png │ │ │ ├── power_cond_heavy.png.json │ │ │ ├── power_local.png │ │ │ └── power_local.png.json │ │ ├── projectiles.png │ │ ├── projectiles.png.json │ │ ├── radio.png │ │ ├── radio.png.json │ │ ├── reagentfillings.png │ │ ├── reagentfillings.png.json │ │ ├── recycling.png │ │ ├── recycling.png.json │ │ ├── robot_parts.png │ │ ├── robot_parts.png.json │ │ ├── robotics.png │ │ ├── robotics.png.json │ │ ├── rollerbed.png │ │ ├── rollerbed.png.json │ │ ├── rune.png │ │ ├── rune.png.json │ │ ├── shards.png │ │ ├── shards.png.json │ │ ├── singularity.png │ │ ├── singularity.png.json │ │ ├── smooth_structures │ │ │ ├── alien │ │ │ │ ├── nest.png │ │ │ │ ├── nest.png.json │ │ │ │ ├── resin_membrane.png │ │ │ │ ├── resin_membrane.png.json │ │ │ │ ├── resin_wall.png │ │ │ │ ├── resin_wall.png.json │ │ │ │ ├── weednode.png │ │ │ │ ├── weednode.png.json │ │ │ │ ├── weeds1.png │ │ │ │ ├── weeds1.png.json │ │ │ │ ├── weeds2.png │ │ │ │ ├── weeds2.png.json │ │ │ │ ├── weeds3.png │ │ │ │ └── weeds3.png.json │ │ │ ├── alien_table.png │ │ │ ├── alien_table.png.json │ │ │ ├── brass_table.png │ │ │ ├── brass_table.png.json │ │ │ ├── catwalk.png │ │ │ ├── catwalk.png.json │ │ │ ├── catwalk_clockwork.png │ │ │ ├── catwalk_clockwork.png.json │ │ │ ├── catwalk_clockwork_large.png │ │ │ ├── catwalk_clockwork_large.png.json │ │ │ ├── clockwork_window.png │ │ │ ├── clockwork_window.png.json │ │ │ ├── fancy_table.png │ │ │ ├── fancy_table.png.json │ │ │ ├── fancy_table_black.png │ │ │ ├── fancy_table_black.png.json │ │ │ ├── glass_table.png │ │ │ ├── glass_table.png.json │ │ │ ├── lattice.png │ │ │ ├── lattice.png.json │ │ │ ├── lattice_clockwork.png │ │ │ ├── lattice_clockwork.png.json │ │ │ ├── lattice_clockwork_large.png │ │ │ ├── lattice_clockwork_large.png.json │ │ │ ├── paperframes.png │ │ │ ├── paperframes.png.json │ │ │ ├── plasma_window.png │ │ │ ├── plasma_window.png.json │ │ │ ├── plastitanium_window.png │ │ │ ├── plastitanium_window.png.json │ │ │ ├── pod_window.png │ │ │ ├── pod_window.png.json │ │ │ ├── poker_table.png │ │ │ ├── poker_table.png.json │ │ │ ├── reinforced_table.png │ │ │ ├── reinforced_table.png.json │ │ │ ├── reinforced_window.png │ │ │ ├── reinforced_window.png.json │ │ │ ├── rice_window.png │ │ │ ├── rice_window.png.json │ │ │ ├── rplasma_window.png │ │ │ ├── rplasma_window.png.json │ │ │ ├── sandbags.png │ │ │ ├── sandbags.png.json │ │ │ ├── shuttle_window.png │ │ │ ├── shuttle_window.png.json │ │ │ ├── swarmer_catwalk.png │ │ │ ├── swarmer_catwalk.png.json │ │ │ ├── table.png │ │ │ ├── table.png.json │ │ │ ├── tinted_window.png │ │ │ ├── tinted_window.png.json │ │ │ ├── window.png │ │ │ ├── window.png.json │ │ │ ├── wood_table.png │ │ │ └── wood_table.png.json │ │ ├── stack_objects.png │ │ ├── stack_objects.png.json │ │ ├── stationobjs.png │ │ ├── stationobjs.png.json │ │ ├── statue.png │ │ ├── statue.png.json │ │ ├── statuelarge.png │ │ ├── statuelarge.png.json │ │ ├── status_display.png │ │ ├── status_display.png.json │ │ ├── stock_parts.png │ │ ├── stock_parts.png.json │ │ ├── storage.png │ │ ├── storage.png.json │ │ ├── structures.png │ │ ├── structures.png.json │ │ ├── structures_spawners.png │ │ ├── structures_spawners.png.json │ │ ├── suitstorage.png │ │ ├── suitstorage.png.json │ │ ├── supermatter.png │ │ ├── supermatter.png.json │ │ ├── surgery.png │ │ ├── surgery.png.json │ │ ├── syringe.png │ │ ├── syringe.png.json │ │ ├── tank.png │ │ ├── tank.png.json │ │ ├── telescience.png │ │ ├── telescience.png.json │ │ ├── terminals.png │ │ ├── terminals.png.json │ │ ├── tesla_engine │ │ │ ├── energy_ball.png │ │ │ ├── energy_ball.png.json │ │ │ ├── tesla_coil.png │ │ │ ├── tesla_coil.png.json │ │ │ ├── tesla_generator.png │ │ │ └── tesla_generator.png.json │ │ ├── tgui_components.png │ │ ├── tgui_components.png.json │ │ ├── tiles.png │ │ ├── tiles.png.json │ │ ├── tomb.png │ │ ├── tomb.png.json │ │ ├── tools.png │ │ ├── tools.png.json │ │ ├── toy.png │ │ ├── toy.png.json │ │ ├── tubing.png │ │ ├── tubing.png.json │ │ ├── turrets.png │ │ ├── turrets.png.json │ │ ├── vehicles.png │ │ ├── vehicles.png.json │ │ ├── vending.png │ │ ├── vending.png.json │ │ ├── vending_restock.png │ │ ├── vending_restock.png.json │ │ ├── virology.png │ │ ├── virology.png.json │ │ ├── wallframe.png │ │ ├── wallframe.png.json │ │ ├── wallmounts.png │ │ ├── wallmounts.png.json │ │ ├── watercloset.png │ │ ├── watercloset.png.json │ │ ├── wizard.png │ │ └── wizard.png.json │ ├── pda_icons │ │ ├── pda_atmos.png │ │ ├── pda_back.png │ │ ├── pda_bell.png │ │ ├── pda_blank.png │ │ ├── pda_boom.png │ │ ├── pda_bucket.png │ │ ├── pda_chatroom.png │ │ ├── pda_cleanbot.png │ │ ├── pda_color.png │ │ ├── pda_crate.png │ │ ├── pda_cuffs.png │ │ ├── pda_dronephone.png │ │ ├── pda_eject.png │ │ ├── pda_exit.png │ │ ├── pda_flashlight.png │ │ ├── pda_floorbot.png │ │ ├── pda_font.png │ │ ├── pda_honk.png │ │ ├── pda_locked.PNG │ │ ├── pda_mail.png │ │ ├── pda_medbot.png │ │ ├── pda_medical.png │ │ ├── pda_menu.png │ │ ├── pda_mule.png │ │ ├── pda_notes.png │ │ ├── pda_power.png │ │ ├── pda_rdoor.png │ │ ├── pda_reagent.png │ │ ├── pda_refresh.png │ │ ├── pda_scanner.png │ │ ├── pda_signaler.png │ │ └── pda_status.png │ ├── program_icons │ │ ├── alarm_green.gif │ │ ├── alarm_red.gif │ │ ├── batt_100.gif │ │ ├── batt_20.gif │ │ ├── batt_40.gif │ │ ├── batt_5.gif │ │ ├── batt_60.gif │ │ ├── batt_80.gif │ │ ├── charging.gif │ │ ├── downloader_finished.gif │ │ ├── downloader_running.gif │ │ ├── ntnrc_idle.gif │ │ ├── ntnrc_new.gif │ │ ├── power_norm.gif │ │ ├── power_warn.gif │ │ ├── sig_high.gif │ │ ├── sig_lan.gif │ │ ├── sig_low.gif │ │ ├── sig_none.gif │ │ ├── smmon_0.gif │ │ ├── smmon_1.gif │ │ ├── smmon_2.gif │ │ ├── smmon_3.gif │ │ ├── smmon_4.gif │ │ ├── smmon_5.gif │ │ └── smmon_6.gif │ ├── reagentname_bg.png │ ├── ss13_32.png │ ├── ss13_64.png │ ├── stamp_icons │ │ ├── large_stamp-cap.png │ │ ├── large_stamp-ce.png │ │ ├── large_stamp-clown.png │ │ ├── large_stamp-cmo.png │ │ ├── large_stamp-deny.png │ │ ├── large_stamp-hop.png │ │ ├── large_stamp-hos.png │ │ ├── large_stamp-law.png │ │ ├── large_stamp-ok.png │ │ ├── large_stamp-qm.png │ │ └── large_stamp-rd.png │ ├── title_screen │ │ ├── blank.png │ │ ├── bluespess.png │ │ ├── default.png │ │ └── default.png.json │ ├── turf │ │ ├── areas.png │ │ ├── areas.png.json │ │ ├── boss_floors.png │ │ ├── boss_floors.png.json │ │ ├── decals.png │ │ ├── decals.png.json │ │ ├── floors.png │ │ ├── floors.png.json │ │ ├── floors │ │ │ ├── Chasms.png │ │ │ ├── Chasms.png.json │ │ │ ├── ash.png │ │ │ ├── ash.png.json │ │ │ ├── carpet.png │ │ │ ├── carpet.png.json │ │ │ ├── carpet_black.png │ │ │ ├── carpet_black.png.json │ │ │ ├── darkdirt.png │ │ │ ├── darkdirt.png.json │ │ │ ├── dirt.png │ │ │ ├── dirt.png.json │ │ │ ├── hierophant_floor.png │ │ │ ├── hierophant_floor.png.json │ │ │ ├── junglechasm.png │ │ │ ├── junglechasm.png.json │ │ │ ├── lava.png │ │ │ ├── lava.png.json │ │ │ ├── rocky_ash.png │ │ │ └── rocky_ash.png.json │ │ ├── mining.png │ │ ├── mining.png.json │ │ ├── overlays.png │ │ ├── overlays.png.json │ │ ├── shuttle.png │ │ ├── shuttle.png.json │ │ ├── shuttleold.png │ │ ├── shuttleold.png.json │ │ ├── smooth_wall.png │ │ ├── smooth_wall.png.json │ │ ├── smoothrocks.png │ │ ├── smoothrocks.png.json │ │ ├── snow.png │ │ ├── snow.png.json │ │ ├── space.png │ │ ├── space.png.json │ │ ├── walls.png │ │ ├── walls.png.json │ │ └── walls │ │ │ ├── abductor_wall.png │ │ │ ├── abductor_wall.png.json │ │ │ ├── bananium_wall.png │ │ │ ├── bananium_wall.png.json │ │ │ ├── boss_wall.png │ │ │ ├── boss_wall.png.json │ │ │ ├── clockwork_wall.png │ │ │ ├── clockwork_wall.png.json │ │ │ ├── cult_wall.png │ │ │ ├── cult_wall.png.json │ │ │ ├── diamond_wall.png │ │ │ ├── diamond_wall.png.json │ │ │ ├── gold_wall.png │ │ │ ├── gold_wall.png.json │ │ │ ├── hierophant_wall.png │ │ │ ├── hierophant_wall.png.json │ │ │ ├── hierophant_wall_temp.png │ │ │ ├── hierophant_wall_temp.png.json │ │ │ ├── icedmetal_wall.png │ │ │ ├── icedmetal_wall.png.json │ │ │ ├── iron_wall.png │ │ │ ├── iron_wall.png.json │ │ │ ├── plasma_wall.png │ │ │ ├── plasma_wall.png.json │ │ │ ├── plastitanium_wall.png │ │ │ ├── plastitanium_wall.png.json │ │ │ ├── reinforced_wall.png │ │ │ ├── reinforced_wall.png.json │ │ │ ├── riveted.png │ │ │ ├── riveted.png.json │ │ │ ├── rock_wall.png │ │ │ ├── rock_wall.png.json │ │ │ ├── rusty_reinforced_wall.png │ │ │ ├── rusty_reinforced_wall.png.json │ │ │ ├── rusty_wall.png │ │ │ ├── rusty_wall.png.json │ │ │ ├── sandstone_wall.png │ │ │ ├── sandstone_wall.png.json │ │ │ ├── shuttle_wall.png │ │ │ ├── shuttle_wall.png.json │ │ │ ├── silver_wall.png │ │ │ ├── silver_wall.png.json │ │ │ ├── snow_wall.png │ │ │ ├── snow_wall.png.json │ │ │ ├── survival_pod_walls.png │ │ │ ├── survival_pod_walls.png.json │ │ │ ├── uranium_wall.png │ │ │ ├── uranium_wall.png.json │ │ │ ├── wall.png │ │ │ ├── wall.png.json │ │ │ ├── wood_wall.png │ │ │ └── wood_wall.png.json │ └── vending_icons │ │ └── vendingslot_bg.png ├── index.html └── sound │ ├── ai │ ├── aimalf.ogg │ ├── aliens.ogg │ ├── animes.ogg │ ├── attention.ogg │ ├── commandreport.ogg │ ├── granomalies.ogg │ ├── harmalarm.ogg │ ├── intercept.ogg │ ├── ionstorm.ogg │ ├── meteors.ogg │ ├── newai.ogg │ ├── outbreak5.ogg │ ├── outbreak7.ogg │ ├── poweroff.ogg │ ├── poweron.ogg │ ├── radiation.ogg │ ├── shuttlecalled.ogg │ ├── shuttledock.ogg │ ├── shuttlerecalled.ogg │ ├── spanomalies.ogg │ └── welcome.ogg │ ├── ambience │ ├── acidrain_end.ogg │ ├── acidrain_mid.ogg │ ├── acidrain_start.ogg │ ├── ambiatm1.ogg │ ├── ambicha1.ogg │ ├── ambicha2.ogg │ ├── ambicha3.ogg │ ├── ambicha4.ogg │ ├── ambidet1.ogg │ ├── ambidet2.ogg │ ├── ambieng1.ogg │ ├── ambigen1.ogg │ ├── ambigen10.ogg │ ├── ambigen11.ogg │ ├── ambigen12.ogg │ ├── ambigen13.ogg │ ├── ambigen14.ogg │ ├── ambigen2.ogg │ ├── ambigen3.ogg │ ├── ambigen4.ogg │ ├── ambigen5.ogg │ ├── ambigen6.ogg │ ├── ambigen7.ogg │ ├── ambigen8.ogg │ ├── ambigen9.ogg │ ├── ambilava.ogg │ ├── ambimaint1.ogg │ ├── ambimaint2.ogg │ ├── ambimaint3.ogg │ ├── ambimaint4.ogg │ ├── ambimaint5.ogg │ ├── ambimalf.ogg │ ├── ambimine.ogg │ ├── ambimo1.ogg │ ├── ambimo2.ogg │ ├── ambisin1.ogg │ ├── ambisin2.ogg │ ├── ambisin3.ogg │ ├── ambisin4.ogg │ ├── ambispace.ogg │ ├── ambivapor1.ogg │ ├── antag │ │ ├── bloodcult.ogg │ │ ├── clockcultalr.ogg │ │ ├── ling_aler.ogg │ │ ├── malf.ogg │ │ ├── monkey.ogg │ │ ├── new_clock.ogg │ │ ├── ops.ogg │ │ ├── ragesmages.ogg │ │ └── tatoralert.ogg │ ├── clown.ogg │ ├── license.txt │ ├── seag1.ogg │ ├── seag2.ogg │ ├── seag3.ogg │ ├── shipambience.ogg │ ├── shore.ogg │ ├── signal.ogg │ ├── title1.ogg │ ├── title2.ogg │ └── title3.ogg │ ├── arcade │ ├── boom.ogg │ ├── heal.ogg │ ├── hit.ogg │ ├── lose.ogg │ ├── mana.ogg │ ├── steal.ogg │ └── win.ogg │ ├── chatter │ ├── griffin_1.ogg │ ├── griffin_10.ogg │ ├── griffin_2.ogg │ ├── griffin_3.ogg │ ├── griffin_4.ogg │ ├── griffin_5.ogg │ ├── griffin_6.ogg │ ├── griffin_7.ogg │ ├── griffin_8.ogg │ ├── griffin_9.ogg │ ├── owl_1.ogg │ ├── owl_10.ogg │ ├── owl_2.ogg │ ├── owl_3.ogg │ ├── owl_4.ogg │ ├── owl_5.ogg │ ├── owl_6.ogg │ ├── owl_7.ogg │ ├── owl_8.ogg │ └── owl_9.ogg │ ├── creatures │ ├── legion_death.ogg │ ├── legion_death_far.ogg │ ├── legion_spawn.ogg │ └── rattle.ogg │ ├── effects │ ├── -adminhelp.ogg │ ├── adminhelp.ogg │ ├── alert.ogg │ ├── attackblob.ogg │ ├── bamf.ogg │ ├── bang.ogg │ ├── bin_close.ogg │ ├── bin_open.ogg │ ├── blobattack.ogg │ ├── bodyfall1.ogg │ ├── bodyfall2.ogg │ ├── bodyfall3.ogg │ ├── bodyfall4.ogg │ ├── break_stone.ogg │ ├── bubbles.ogg │ ├── bubbles2.ogg │ ├── can_open1.ogg │ ├── can_open2.ogg │ ├── can_open3.ogg │ ├── clang.ogg │ ├── clockcult_gateway_active.ogg │ ├── clockcult_gateway_charging.ogg │ ├── clockcult_gateway_closing.ogg │ ├── clockcult_gateway_disrupted.ogg │ ├── clownstep1.ogg │ ├── clownstep2.ogg │ ├── comfyfire.ogg │ ├── curse1.ogg │ ├── curse2.ogg │ ├── curse3.ogg │ ├── curse4.ogg │ ├── curse5.ogg │ ├── curse6.ogg │ ├── curseattack.ogg │ ├── curtain.ogg │ ├── dimensional_rend.ogg │ ├── doorcreaky.ogg │ ├── empulse.ogg │ ├── explosion1.ogg │ ├── explosion2.ogg │ ├── explosion3.ogg │ ├── explosionfar.ogg │ ├── extinguish.ogg │ ├── fuse.ogg │ ├── genetics.ogg │ ├── ghost.ogg │ ├── ghost2.ogg │ ├── glass_step.ogg │ ├── glassbr1.ogg │ ├── glassbr2.ogg │ ├── glassbr3.ogg │ ├── glasshit.ogg │ ├── glassknock.ogg │ ├── grillehit.ogg │ ├── heart_beat.ogg │ ├── his_grace_ascend.ogg │ ├── his_grace_awaken.ogg │ ├── hit_kick.ogg │ ├── hit_on_shattered_glass.ogg │ ├── hit_punch.ogg │ ├── huuu.ogg │ ├── hyperspace_begin.ogg │ ├── hyperspace_end.ogg │ ├── hyperspace_progress.ogg │ ├── light_flicker.ogg │ ├── magic.ogg │ ├── meow1.ogg │ ├── meteorimpact.ogg │ ├── mousesqueek.ogg │ ├── ninja_greeting.ogg │ ├── pageturn1.ogg │ ├── pageturn2.ogg │ ├── pageturn3.ogg │ ├── pai_boot.ogg │ ├── phasein.ogg │ ├── picaxe1.ogg │ ├── picaxe2.ogg │ ├── picaxe3.ogg │ ├── pop.ogg │ ├── pop_expl.ogg │ ├── pope_entry.ogg │ ├── pray.ogg │ ├── pray_chaplain.ogg │ ├── pressureplate.ogg │ ├── ratvar_reveal.ogg │ ├── ratvar_rises.ogg │ ├── reee.ogg │ ├── refill.ogg │ ├── rustle1.ogg │ ├── rustle2.ogg │ ├── rustle3.ogg │ ├── rustle4.ogg │ ├── rustle5.ogg │ ├── screech.ogg │ ├── servostep.ogg │ ├── shieldbash.ogg │ ├── shovel_dig.ogg │ ├── singlebeat.ogg │ ├── slosh.ogg │ ├── smoke.ogg │ ├── snap.ogg │ ├── space_wind.ogg │ ├── sparks1.ogg │ ├── sparks2.ogg │ ├── sparks3.ogg │ ├── sparks4.ogg │ ├── splat.ogg │ ├── spray.ogg │ ├── spray2.ogg │ ├── spray3.ogg │ ├── stealthoff.ogg │ ├── stonedoor_openclose.ogg │ ├── suitstep1.ogg │ ├── suitstep2.ogg │ ├── supermatter.ogg │ ├── tendril_destroyed.ogg │ ├── woodhit.ogg │ └── zzzt.ogg │ ├── eguitar │ ├── ab4.ogg │ ├── ab5.ogg │ ├── ab6.ogg │ ├── an4.ogg │ ├── an5.ogg │ ├── an6.ogg │ ├── bb4.ogg │ ├── bb5.ogg │ ├── bb6.ogg │ ├── bn4.ogg │ ├── bn5.ogg │ ├── bn6.ogg │ ├── cn4.ogg │ ├── cn5.ogg │ ├── cn6.ogg │ ├── cn7.ogg │ ├── db4.ogg │ ├── db5.ogg │ ├── db6.ogg │ ├── dn4.ogg │ ├── dn5.ogg │ ├── dn6.ogg │ ├── eb4.ogg │ ├── eb5.ogg │ ├── eb6.ogg │ ├── en4.ogg │ ├── en5.ogg │ ├── en6.ogg │ ├── fn4.ogg │ ├── fn5.ogg │ ├── fn6.ogg │ ├── gb4.ogg │ ├── gb5.ogg │ ├── gb6.ogg │ ├── gn4.ogg │ ├── gn5.ogg │ └── gn6.ogg │ ├── guitar │ ├── ab3.ogg │ ├── ab4.ogg │ ├── ab5.ogg │ ├── ab6.ogg │ ├── an3.ogg │ ├── an4.ogg │ ├── an5.ogg │ ├── an6.ogg │ ├── bb3.ogg │ ├── bb4.ogg │ ├── bb5.ogg │ ├── bb6.ogg │ ├── bn3.ogg │ ├── bn4.ogg │ ├── bn5.ogg │ ├── bn6.ogg │ ├── cn4.ogg │ ├── cn5.ogg │ ├── cn6.ogg │ ├── db4.ogg │ ├── db5.ogg │ ├── db6.ogg │ ├── dn4.ogg │ ├── dn5.ogg │ ├── dn6.ogg │ ├── eb4.ogg │ ├── eb5.ogg │ ├── eb6.ogg │ ├── en3.ogg │ ├── en4.ogg │ ├── en5.ogg │ ├── en6.ogg │ ├── fn3.ogg │ ├── fn4.ogg │ ├── fn5.ogg │ ├── fn6.ogg │ ├── gb3.ogg │ ├── gb4.ogg │ ├── gb5.ogg │ ├── gb6.ogg │ ├── gn3.ogg │ ├── gn4.ogg │ ├── gn5.ogg │ └── gn6.ogg │ ├── hallucinations │ ├── behind_you1.ogg │ ├── behind_you2.ogg │ ├── far_noise.ogg │ ├── growl1.ogg │ ├── growl2.ogg │ ├── growl3.ogg │ ├── i_see_you1.ogg │ ├── i_see_you2.ogg │ ├── im_here1.ogg │ ├── im_here2.ogg │ ├── look_up1.ogg │ ├── look_up2.ogg │ ├── over_here1.ogg │ ├── over_here2.ogg │ ├── over_here3.ogg │ ├── turn_around1.ogg │ ├── turn_around2.ogg │ ├── veryfar_noise.ogg │ └── wail.ogg │ ├── health │ ├── fastbeat.ogg │ └── slowbeat.ogg │ ├── items │ ├── airhorn.ogg │ ├── airhorn2.ogg │ ├── bikehorn.ogg │ ├── bubblewrap.ogg │ ├── cardshuffle.ogg │ ├── carhorn.ogg │ ├── change_drill.ogg │ ├── change_jaws.ogg │ ├── coinflip.ogg │ ├── crowbar.ogg │ ├── deconstruct.ogg │ ├── dodgeball.ogg │ ├── drill_hit.ogg │ ├── drill_use.ogg │ ├── drink.ogg │ ├── eatfood.ogg │ ├── fulext_deploy.wav │ ├── fultext_launch.wav │ ├── gavel.ogg │ ├── jaws_cut.ogg │ ├── jaws_pry.ogg │ ├── megaphone.ogg │ ├── nuke_toy_lowpower.ogg │ ├── party_horn.ogg │ ├── polaroid1.ogg │ ├── polaroid2.ogg │ ├── poster_being_created.ogg │ ├── poster_ripped.ogg │ ├── pshoom.ogg │ ├── pshoom_2.ogg │ ├── ratchet.ogg │ ├── rped.ogg │ ├── screwdriver.ogg │ ├── screwdriver2.ogg │ ├── sheath.ogg │ ├── syringeproj.ogg │ ├── timer.ogg │ ├── trayhit1.ogg │ ├── trayhit2.ogg │ ├── unsheath.ogg │ ├── weeoo1.ogg │ ├── welder.ogg │ ├── welder2.ogg │ ├── welderactivate.ogg │ ├── welderdeactivate.ogg │ ├── wirecutter.ogg │ └── zip.ogg │ ├── lavaland │ ├── ash_storm_end.ogg │ ├── ash_storm_start.ogg │ ├── ash_storm_windup.ogg │ ├── cursed_slot_machine.ogg │ └── cursed_slot_machine_jackpot.ogg │ ├── machines │ ├── airlock.ogg │ ├── airlock_alien_prying.ogg │ ├── airlockclose.ogg │ ├── airlockforced.ogg │ ├── airlockopen.ogg │ ├── alarm.ogg │ ├── blender.ogg │ ├── boltsdown.ogg │ ├── boltsup.ogg │ ├── buzz-sigh.ogg │ ├── buzz-two.ogg │ ├── buzzsaw_BRRRRR.ogg │ ├── buzzsaw_windup.ogg │ ├── chime.ogg │ ├── click.ogg │ ├── clockcult │ │ ├── ocularwarden-dot1.ogg │ │ ├── ocularwarden-dot2.ogg │ │ └── ocularwarden-target.ogg │ ├── copier.ogg │ ├── cryo_warning.ogg │ ├── defib_SaftyOn.ogg │ ├── defib_charge.ogg │ ├── defib_failed.ogg │ ├── defib_ready.ogg │ ├── defib_saftyOff.ogg │ ├── defib_success.ogg │ ├── defib_zap.ogg │ ├── deniedbeep.ogg │ ├── ding.ogg │ ├── disposalflush.ogg │ ├── door_close.ogg │ ├── door_locked.ogg │ ├── door_open.ogg │ ├── doorclick.ogg │ ├── engine_alert1.ogg │ ├── engine_alert2.ogg │ ├── hiss.ogg │ ├── juicer.ogg │ ├── locktoggle.ogg │ ├── ping.ogg │ ├── signal.ogg │ ├── terminal_alert.ogg │ ├── terminal_button01.ogg │ ├── terminal_button02.ogg │ ├── terminal_button03.ogg │ ├── terminal_button04.ogg │ ├── terminal_button05.ogg │ ├── terminal_button06.ogg │ ├── terminal_button07.ogg │ ├── terminal_button08.ogg │ ├── terminal_insert_disc.ogg │ ├── terminal_off.ogg │ ├── terminal_on.ogg │ ├── terminal_prompt.ogg │ ├── terminal_prompt_confirm.ogg │ ├── terminal_prompt_deny.ogg │ ├── triple_beep.ogg │ ├── twobeep.ogg │ ├── ventcrawl.ogg │ ├── warning-buzzer.ogg │ ├── warning_alarm.ogg │ └── windowdoor.ogg │ ├── magic │ ├── blind.ogg │ ├── blink.ogg │ ├── castsummon.ogg │ ├── charge.ogg │ ├── clockwork │ │ ├── anima_fragment_attack.ogg │ │ ├── anima_fragment_death.ogg │ │ ├── fellowship_armory.ogg │ │ ├── invoke_general.ogg │ │ ├── narsie_attack.ogg │ │ └── ratvar_attack.ogg │ ├── cowhead_curse.ogg │ ├── demon_attack1.ogg │ ├── demon_consume.ogg │ ├── demon_dies.ogg │ ├── disable_tech.ogg │ ├── disintegrate.ogg │ ├── enter_blood.ogg │ ├── ethereal_enter.ogg │ ├── ethereal_exit.ogg │ ├── exit_blood.ogg │ ├── fireball.ogg │ ├── fleshtostone.ogg │ ├── forcewall.ogg │ ├── horsehead_curse.ogg │ ├── knock.ogg │ ├── lightning_chargeup.ogg │ ├── lightningbolt.ogg │ ├── lightningshock.ogg │ ├── magic_missile.ogg │ ├── mandswap.ogg │ ├── mm_hit.ogg │ ├── mutate.ogg │ ├── pighead_curse.ogg │ ├── repulse.ogg │ ├── smoke.ogg │ ├── staff_animation.ogg │ ├── staff_change.ogg │ ├── staff_chaos.ogg │ ├── staff_door.ogg │ ├── staff_healing.ogg │ ├── summon_guns.ogg │ ├── summon_karp.ogg │ ├── summon_magic.ogg │ ├── summonitems_generic.ogg │ ├── tail_swing.ogg │ ├── teleport_app.ogg │ ├── teleport_diss.ogg │ ├── timeparadox2.ogg │ ├── wand_teleport.ogg │ ├── wandodeath.ogg │ └── warpwhistle.ogg │ ├── mecha │ ├── critdestr.ogg │ ├── imag_enh.ogg │ ├── mechmove01.ogg │ ├── mechmove03.ogg │ ├── mechmove04.ogg │ ├── mechstep.ogg │ ├── mechturn.ogg │ ├── nominal.ogg │ └── weapdestr.ogg │ ├── misc │ ├── airraid.ogg │ ├── announce.ogg │ ├── announce_dig.ogg │ ├── bang.ogg │ ├── bike1.mid │ ├── bike2.mid │ ├── bike3.mid │ ├── bloblarm.ogg │ ├── boogie2.ogg │ ├── compiler-failure.ogg │ ├── compiler-stage1.ogg │ ├── compiler-stage2.ogg │ ├── desceration-01.ogg │ ├── desceration-02.ogg │ ├── desceration-03.ogg │ ├── disco.ogg │ ├── e1m1.ogg │ ├── highlander.ogg │ ├── highlander_delayed.ogg │ ├── highlander_only_one.ogg │ ├── interference.ogg │ ├── notice1.ogg │ ├── notice2.ogg │ ├── null.ogg │ ├── paradox.ogg │ ├── sadtrombone.ogg │ ├── server-ready.ogg │ ├── slip.ogg │ ├── splort.ogg │ ├── superior.ogg │ └── ultimate.ogg │ ├── piano │ ├── ab1.ogg │ ├── ab2.ogg │ ├── ab3.ogg │ ├── ab4.ogg │ ├── ab5.ogg │ ├── ab6.ogg │ ├── ab7.ogg │ ├── ab8.ogg │ ├── an1.ogg │ ├── an2.ogg │ ├── an3.ogg │ ├── an4.ogg │ ├── an5.ogg │ ├── an6.ogg │ ├── an7.ogg │ ├── an8.ogg │ ├── bb1.ogg │ ├── bb2.ogg │ ├── bb3.ogg │ ├── bb4.ogg │ ├── bb5.ogg │ ├── bb6.ogg │ ├── bb7.ogg │ ├── bb8.ogg │ ├── bn1.ogg │ ├── bn2.ogg │ ├── bn3.ogg │ ├── bn4.ogg │ ├── bn5.ogg │ ├── bn6.ogg │ ├── bn7.ogg │ ├── bn8.ogg │ ├── cn1.ogg │ ├── cn2.ogg │ ├── cn3.ogg │ ├── cn4.ogg │ ├── cn5.ogg │ ├── cn6.ogg │ ├── cn7.ogg │ ├── cn8.ogg │ ├── cn9.ogg │ ├── db1.ogg │ ├── db2.ogg │ ├── db3.ogg │ ├── db4.ogg │ ├── db5.ogg │ ├── db6.ogg │ ├── db7.ogg │ ├── db8.ogg │ ├── dn1.ogg │ ├── dn2.ogg │ ├── dn3.ogg │ ├── dn4.ogg │ ├── dn5.ogg │ ├── dn6.ogg │ ├── dn7.ogg │ ├── dn8.ogg │ ├── eb1.ogg │ ├── eb2.ogg │ ├── eb3.ogg │ ├── eb4.ogg │ ├── eb5.ogg │ ├── eb6.ogg │ ├── eb7.ogg │ ├── eb8.ogg │ ├── en1.ogg │ ├── en2.ogg │ ├── en3.ogg │ ├── en4.ogg │ ├── en5.ogg │ ├── en6.ogg │ ├── en7.ogg │ ├── en8.ogg │ ├── fn1.ogg │ ├── fn2.ogg │ ├── fn3.ogg │ ├── fn4.ogg │ ├── fn5.ogg │ ├── fn6.ogg │ ├── fn7.ogg │ ├── fn8.ogg │ ├── gb1.ogg │ ├── gb2.ogg │ ├── gb3.ogg │ ├── gb4.ogg │ ├── gb5.ogg │ ├── gb6.ogg │ ├── gb7.ogg │ ├── gb8.ogg │ ├── gn1.ogg │ ├── gn2.ogg │ ├── gn3.ogg │ ├── gn4.ogg │ ├── gn5.ogg │ ├── gn6.ogg │ ├── gn7.ogg │ └── gn8.ogg │ ├── roundend │ ├── apcdestroyed.ogg │ ├── bangindonk.ogg │ ├── disappointed.ogg │ ├── its_only_game.ogg │ ├── leavingtg.ogg │ ├── newroundsexy.ogg │ └── yeehaw.ogg │ ├── spookoween │ ├── bats.ogg │ ├── chain_rattling.ogg │ ├── ghost_whisper.ogg │ ├── ghosty_wind.ogg │ ├── girlscream.ogg │ ├── insane_low_laugh.ogg │ ├── scary_clown_appear.ogg │ ├── scary_horn.ogg │ ├── scary_horn2.ogg │ └── scary_horn3.ogg │ ├── violin │ ├── ab3.ogg │ ├── ab4.ogg │ ├── ab5.ogg │ ├── ab6.ogg │ ├── an3.ogg │ ├── an4.ogg │ ├── an5.ogg │ ├── an6.ogg │ ├── bb3.ogg │ ├── bb4.ogg │ ├── bb5.ogg │ ├── bb6.ogg │ ├── bn3.ogg │ ├── bn4.ogg │ ├── bn5.ogg │ ├── bn6.ogg │ ├── cn4.ogg │ ├── cn5.ogg │ ├── cn6.ogg │ ├── cn7.ogg │ ├── db4.ogg │ ├── db5.ogg │ ├── db6.ogg │ ├── db7.ogg │ ├── dn4.ogg │ ├── dn5.ogg │ ├── dn6.ogg │ ├── dn7.ogg │ ├── eb4.ogg │ ├── eb5.ogg │ ├── eb6.ogg │ ├── en4.ogg │ ├── en5.ogg │ ├── en6.ogg │ ├── fn4.ogg │ ├── fn5.ogg │ ├── fn6.ogg │ ├── gb4.ogg │ ├── gb5.ogg │ ├── gb6.ogg │ ├── gn3.ogg │ ├── gn4.ogg │ ├── gn5.ogg │ └── gn6.ogg │ ├── voice │ ├── ApproachingTG.ogg │ ├── bcreep.ogg │ ├── bcriminal.ogg │ ├── bfreeze.ogg │ ├── bgod.ogg │ ├── biamthelaw.ogg │ ├── binsult.ogg │ ├── bjustice.ogg │ ├── bradio.ogg │ ├── bsecureday.ogg │ ├── complionator │ │ ├── asshole.ogg │ │ ├── bash.ogg │ │ ├── bobby.ogg │ │ ├── compliance.ogg │ │ ├── dontmove.ogg │ │ ├── dredd.ogg │ │ ├── emag.ogg │ │ ├── floor.ogg │ │ ├── freeze.ogg │ │ ├── god.ogg │ │ ├── halt.ogg │ │ ├── harry.ogg │ │ ├── imperial.ogg │ │ ├── justice.ogg │ │ ├── robocop.ogg │ │ ├── running.ogg │ │ ├── shutup.ogg │ │ ├── stfu.ogg │ │ └── super.ogg │ ├── ed209_20sec.ogg │ ├── edplaceholder.ogg │ ├── hiss1.ogg │ ├── hiss2.ogg │ ├── hiss3.ogg │ ├── hiss4.ogg │ ├── hiss5.ogg │ ├── hiss6.ogg │ ├── human │ │ ├── manlaugh1.ogg │ │ ├── manlaugh2.ogg │ │ └── womanlaugh.ogg │ ├── liveagain.ogg │ ├── lowHiss1.ogg │ ├── lowHiss2.ogg │ ├── lowHiss3.ogg │ ├── lowHiss4.ogg │ ├── mapple.ogg │ ├── mcatch.ogg │ ├── mcoming.ogg │ ├── mdelicious.ogg │ ├── mfeelbetter.ogg │ ├── mflies.ogg │ ├── mhelp.ogg │ ├── minjured.ogg │ ├── minsult.ogg │ ├── mlive.ogg │ ├── mlost.ogg │ ├── mno.ogg │ ├── mook_death.ogg │ ├── mook_leap_yell.ogg │ ├── mpatchedup.ogg │ ├── mradar.ogg │ └── msurgeon.ogg │ ├── vox_fem │ ├── ,.ogg │ ├── ..ogg │ ├── a.ogg │ ├── abortions.ogg │ ├── accelerating.ogg │ ├── accelerator.ogg │ ├── accepted.ogg │ ├── access.ogg │ ├── acknowledge.ogg │ ├── acknowledged.ogg │ ├── acquired.ogg │ ├── acquisition.ogg │ ├── across.ogg │ ├── activate.ogg │ ├── activated.ogg │ ├── activity.ogg │ ├── adios.ogg │ ├── administration.ogg │ ├── advanced.ogg │ ├── aft.ogg │ ├── after.ogg │ ├── agent.ogg │ ├── ai.ogg │ ├── alarm.ogg │ ├── alert.ogg │ ├── alien.ogg │ ├── aligned.ogg │ ├── all.ogg │ ├── alpha.ogg │ ├── am.ogg │ ├── amigo.ogg │ ├── ammunition.ogg │ ├── an.ogg │ ├── and.ogg │ ├── announcement.ogg │ ├── anomalous.ogg │ ├── antenna.ogg │ ├── any.ogg │ ├── apprehend.ogg │ ├── approach.ogg │ ├── are.ogg │ ├── area.ogg │ ├── arm.ogg │ ├── armed.ogg │ ├── armor.ogg │ ├── armory.ogg │ ├── array.ogg │ ├── arrest.ogg │ ├── asimov.ogg │ ├── ass.ogg │ ├── asshole.ogg │ ├── assholes.ogg │ ├── at.ogg │ ├── atomic.ogg │ ├── attention.ogg │ ├── authorize.ogg │ ├── authorized.ogg │ ├── automatic.ogg │ ├── away.ogg │ ├── b.ogg │ ├── back.ogg │ ├── backman.ogg │ ├── bad.ogg │ ├── bag.ogg │ ├── bailey.ogg │ ├── barracks.ogg │ ├── base.ogg │ ├── bay.ogg │ ├── be.ogg │ ├── been.ogg │ ├── before.ogg │ ├── beyond.ogg │ ├── biohazard.ogg │ ├── biological.ogg │ ├── birdwell.ogg │ ├── bitch.ogg │ ├── bitches.ogg │ ├── black.ogg │ ├── blast.ogg │ ├── blocked.ogg │ ├── blue.ogg │ ├── bottom.ogg │ ├── bravo.ogg │ ├── breach.ogg │ ├── breached.ogg │ ├── break.ogg │ ├── bridge.ogg │ ├── bust.ogg │ ├── but.ogg │ ├── button.ogg │ ├── bypass.ogg │ ├── c.ogg │ ├── cable.ogg │ ├── call.ogg │ ├── called.ogg │ ├── canal.ogg │ ├── cap.ogg │ ├── captain.ogg │ ├── capture.ogg │ ├── cargo.ogg │ ├── ceiling.ogg │ ├── celsius.ogg │ ├── centcom.ogg │ ├── center.ogg │ ├── centi.ogg │ ├── central.ogg │ ├── chamber.ogg │ ├── changed.ogg │ ├── charlie.ogg │ ├── check.ogg │ ├── checkpoint.ogg │ ├── chemical.ogg │ ├── cleanup.ogg │ ├── clear.ogg │ ├── clearance.ogg │ ├── close.ogg │ ├── clown.ogg │ ├── code.ogg │ ├── coded.ogg │ ├── collider.ogg │ ├── come.ogg │ ├── command.ogg │ ├── communication.ogg │ ├── complex.ogg │ ├── computer.ogg │ ├── condition.ogg │ ├── connor.ogg │ ├── containment.ogg │ ├── contamination.ogg │ ├── contraband.ogg │ ├── control.ogg │ ├── coolant.ogg │ ├── coomer.ogg │ ├── core.ogg │ ├── correct.ogg │ ├── corridor.ogg │ ├── coward.ogg │ ├── cowards.ogg │ ├── crew.ogg │ ├── cross.ogg │ ├── cryogenic.ogg │ ├── cunt.ogg │ ├── cyborg.ogg │ ├── cyborgs.ogg │ ├── d.ogg │ ├── damage.ogg │ ├── damaged.ogg │ ├── danger.ogg │ ├── day.ogg │ ├── deactivated.ogg │ ├── decompression.ogg │ ├── decontamination.ogg │ ├── deeoo.ogg │ ├── defense.ogg │ ├── degrees.ogg │ ├── delta.ogg │ ├── denied.ogg │ ├── deploy.ogg │ ├── deployed.ogg │ ├── destroy.ogg │ ├── destroyed.ogg │ ├── detain.ogg │ ├── detected.ogg │ ├── detonation.ogg │ ├── device.ogg │ ├── did.ogg │ ├── die.ogg │ ├── dimensional.ogg │ ├── dirt.ogg │ ├── disengaged.ogg │ ├── dish.ogg │ ├── disposal.ogg │ ├── distance.ogg │ ├── distortion.ogg │ ├── do.ogg │ ├── doctor.ogg │ ├── door.ogg │ ├── down.ogg │ ├── dual.ogg │ ├── duct.ogg │ ├── e.ogg │ ├── east.ogg │ ├── echo.ogg │ ├── ed.ogg │ ├── effect.ogg │ ├── egress.ogg │ ├── eight.ogg │ ├── eighteen.ogg │ ├── eighty.ogg │ ├── electric.ogg │ ├── electromagnetic.ogg │ ├── elevator.ogg │ ├── eleven.ogg │ ├── eliminate.ogg │ ├── emergency.ogg │ ├── energy.ogg │ ├── engage.ogg │ ├── engaged.ogg │ ├── engine.ogg │ ├── enter.ogg │ ├── entry.ogg │ ├── environment.ogg │ ├── error.ogg │ ├── escape.ogg │ ├── evacuate.ogg │ ├── exchange.ogg │ ├── exit.ogg │ ├── expect.ogg │ ├── experiment.ogg │ ├── experimental.ogg │ ├── explode.ogg │ ├── explosion.ogg │ ├── exposure.ogg │ ├── exterminate.ogg │ ├── extinguish.ogg │ ├── extinguisher.ogg │ ├── extreme.ogg │ ├── f.ogg │ ├── facility.ogg │ ├── fahrenheit.ogg │ ├── failed.ogg │ ├── failure.ogg │ ├── farthest.ogg │ ├── fast.ogg │ ├── feet.ogg │ ├── field.ogg │ ├── fifteen.ogg │ ├── fifth.ogg │ ├── fifty.ogg │ ├── final.ogg │ ├── fine.ogg │ ├── fire.ogg │ ├── first.ogg │ ├── five.ogg │ ├── flooding.ogg │ ├── floor.ogg │ ├── fool.ogg │ ├── for.ogg │ ├── forbidden.ogg │ ├── force.ogg │ ├── fore.ogg │ ├── forms.ogg │ ├── found.ogg │ ├── four.ogg │ ├── fourteen.ogg │ ├── fourth.ogg │ ├── fourty.ogg │ ├── foxtrot.ogg │ ├── freeman.ogg │ ├── freezer.ogg │ ├── from.ogg │ ├── front.ogg │ ├── fuck.ogg │ ├── fucking.ogg │ ├── fucks.ogg │ ├── fuel.ogg │ ├── g.ogg │ ├── gas.ogg │ ├── get.ogg │ ├── glory.ogg │ ├── go.ogg │ ├── going.ogg │ ├── good.ogg │ ├── goodbye.ogg │ ├── gordon.ogg │ ├── got.ogg │ ├── government.ogg │ ├── granted.ogg │ ├── gray.ogg │ ├── great.ogg │ ├── green.ogg │ ├── grenade.ogg │ ├── guard.ogg │ ├── gulf.ogg │ ├── gun.ogg │ ├── guthrie.ogg │ ├── h.ogg │ ├── hacker.ogg │ ├── hackers.ogg │ ├── handling.ogg │ ├── hangar.ogg │ ├── harm.ogg │ ├── has.ogg │ ├── have.ogg │ ├── hazard.ogg │ ├── head.ogg │ ├── health.ogg │ ├── heat.ogg │ ├── helicopter.ogg │ ├── helium.ogg │ ├── hello.ogg │ ├── help.ogg │ ├── here.ogg │ ├── hide.ogg │ ├── high.ogg │ ├── highest.ogg │ ├── hit.ogg │ ├── hole.ogg │ ├── hostile.ogg │ ├── hot.ogg │ ├── hotel.ogg │ ├── hour.ogg │ ├── hours.ogg │ ├── human.ogg │ ├── hundred.ogg │ ├── hunger.ogg │ ├── hydro.ogg │ ├── hydroponics.ogg │ ├── i.ogg │ ├── idiot.ogg │ ├── illegal.ogg │ ├── immediate.ogg │ ├── immediately.ogg │ ├── in.ogg │ ├── inches.ogg │ ├── india.ogg │ ├── ing.ogg │ ├── inoperative.ogg │ ├── inside.ogg │ ├── inspection.ogg │ ├── inspector.ogg │ ├── interchange.ogg │ ├── intruder.ogg │ ├── invalid.ogg │ ├── invasion.ogg │ ├── is.ogg │ ├── it.ogg │ ├── j.ogg │ ├── johnson.ogg │ ├── juliet.ogg │ ├── k.ogg │ ├── key.ogg │ ├── kill.ogg │ ├── kilo.ogg │ ├── kit.ogg │ ├── l.ogg │ ├── lab.ogg │ ├── lambda.ogg │ ├── laser.ogg │ ├── last.ogg │ ├── launch.ogg │ ├── law.ogg │ ├── laws.ogg │ ├── leak.ogg │ ├── leave.ogg │ ├── left.ogg │ ├── legal.ogg │ ├── level.ogg │ ├── lever.ogg │ ├── lie.ogg │ ├── lieutenant.ogg │ ├── life.ogg │ ├── light.ogg │ ├── lima.ogg │ ├── liquid.ogg │ ├── loading.ogg │ ├── locate.ogg │ ├── located.ogg │ ├── location.ogg │ ├── lock.ogg │ ├── locked.ogg │ ├── locker.ogg │ ├── lockout.ogg │ ├── loose.ogg │ ├── lower.ogg │ ├── lowest.ogg │ ├── m.ogg │ ├── magnetic.ogg │ ├── main.ogg │ ├── maintenance.ogg │ ├── malfunction.ogg │ ├── man.ogg │ ├── mass.ogg │ ├── materials.ogg │ ├── maximum.ogg │ ├── may.ogg │ ├── me.ogg │ ├── medbay.ogg │ ├── medical.ogg │ ├── men.ogg │ ├── mercy.ogg │ ├── mesa.ogg │ ├── message.ogg │ ├── meter.ogg │ ├── micro.ogg │ ├── middle.ogg │ ├── mike.ogg │ ├── miles.ogg │ ├── military.ogg │ ├── milli.ogg │ ├── million.ogg │ ├── minefield.ogg │ ├── minimum.ogg │ ├── minutes.ogg │ ├── mister.ogg │ ├── mode.ogg │ ├── money.ogg │ ├── motor.ogg │ ├── motorpool.ogg │ ├── move.ogg │ ├── must.ogg │ ├── my.ogg │ ├── n.ogg │ ├── nanotrasen.ogg │ ├── nearest.ogg │ ├── nice.ogg │ ├── nine.ogg │ ├── nineteen.ogg │ ├── ninety.ogg │ ├── no.ogg │ ├── nominal.ogg │ ├── north.ogg │ ├── not.ogg │ ├── november.ogg │ ├── now.ogg │ ├── number.ogg │ ├── o.ogg │ ├── objective.ogg │ ├── observation.ogg │ ├── obtain.ogg │ ├── of.ogg │ ├── officer.ogg │ ├── ok.ogg │ ├── on.ogg │ ├── one.ogg │ ├── open.ogg │ ├── operating.ogg │ ├── operations.ogg │ ├── operative.ogg │ ├── option.ogg │ ├── order.ogg │ ├── organic.ogg │ ├── oscar.ogg │ ├── out.ogg │ ├── outside.ogg │ ├── over.ogg │ ├── overload.ogg │ ├── override.ogg │ ├── p.ogg │ ├── pacify.ogg │ ├── pain.ogg │ ├── pal.ogg │ ├── panel.ogg │ ├── percent.ogg │ ├── perimeter.ogg │ ├── permitted.ogg │ ├── personnel.ogg │ ├── pipe.ogg │ ├── plant.ogg │ ├── plasma.ogg │ ├── platform.ogg │ ├── please.ogg │ ├── point.ogg │ ├── port.ogg │ ├── portal.ogg │ ├── power.ogg │ ├── presence.ogg │ ├── press.ogg │ ├── primary.ogg │ ├── proceed.ogg │ ├── processing.ogg │ ├── progress.ogg │ ├── proper.ogg │ ├── propulsion.ogg │ ├── prosecute.ogg │ ├── protective.ogg │ ├── push.ogg │ ├── q.ogg │ ├── quantum.ogg │ ├── quebec.ogg │ ├── queen.ogg │ ├── question.ogg │ ├── questioning.ogg │ ├── quick.ogg │ ├── quit.ogg │ ├── r.ogg │ ├── radiation.ogg │ ├── radioactive.ogg │ ├── rads.ogg │ ├── raider.ogg │ ├── raiders.ogg │ ├── rapid.ogg │ ├── reach.ogg │ ├── reached.ogg │ ├── reactor.ogg │ ├── red.ogg │ ├── relay.ogg │ ├── released.ogg │ ├── remaining.ogg │ ├── removal.ogg │ ├── renegade.ogg │ ├── repair.ogg │ ├── report.ogg │ ├── reports.ogg │ ├── required.ogg │ ├── research.ogg │ ├── resevoir.ogg │ ├── resistance.ogg │ ├── rest.ogg │ ├── right.ogg │ ├── rocket.ogg │ ├── roger.ogg │ ├── romeo.ogg │ ├── room.ogg │ ├── round.ogg │ ├── run.ogg │ ├── s.ogg │ ├── safe.ogg │ ├── safety.ogg │ ├── sarah.ogg │ ├── sargeant.ogg │ ├── satellite.ogg │ ├── save.ogg │ ├── science.ogg │ ├── scream.ogg │ ├── screen.ogg │ ├── search.ogg │ ├── second.ogg │ ├── secondary.ogg │ ├── seconds.ogg │ ├── sector.ogg │ ├── secure.ogg │ ├── secured.ogg │ ├── security.ogg │ ├── select.ogg │ ├── selected.ogg │ ├── sensors.ogg │ ├── service.ogg │ ├── seven.ogg │ ├── seventeen.ogg │ ├── seventy.ogg │ ├── severe.ogg │ ├── sewage.ogg │ ├── sewer.ogg │ ├── shield.ogg │ ├── shipment.ogg │ ├── shirt.ogg │ ├── shit.ogg │ ├── shitlord.ogg │ ├── shits.ogg │ ├── shitting.ogg │ ├── shock.ogg │ ├── shoot.ogg │ ├── shower.ogg │ ├── shut.ogg │ ├── shuttle.ogg │ ├── side.ogg │ ├── sierra.ogg │ ├── sight.ogg │ ├── silo.ogg │ ├── singularity.ogg │ ├── six.ogg │ ├── sixteen.ogg │ ├── sixty.ogg │ ├── slime.ogg │ ├── slow.ogg │ ├── solar.ogg │ ├── solars.ogg │ ├── soldier.ogg │ ├── some.ogg │ ├── someone.ogg │ ├── something.ogg │ ├── son.ogg │ ├── sorry.ogg │ ├── south.ogg │ ├── squad.ogg │ ├── square.ogg │ ├── ss13.ogg │ ├── stairway.ogg │ ├── starboard.ogg │ ├── station.ogg │ ├── status.ogg │ ├── sterile.ogg │ ├── sterilization.ogg │ ├── storage.ogg │ ├── stuck.ogg │ ├── sub.ogg │ ├── subsurface.ogg │ ├── sudden.ogg │ ├── suffer.ogg │ ├── suit.ogg │ ├── superconducting.ogg │ ├── supercooled.ogg │ ├── supply.ogg │ ├── surface.ogg │ ├── surrender.ogg │ ├── surround.ogg │ ├── surrounded.ogg │ ├── switch.ogg │ ├── syndicate.ogg │ ├── system.ogg │ ├── systems.ogg │ ├── t.ogg │ ├── tactical.ogg │ ├── take.ogg │ ├── talk.ogg │ ├── tango.ogg │ ├── tank.ogg │ ├── target.ogg │ ├── team.ogg │ ├── temperature.ogg │ ├── temporal.ogg │ ├── ten.ogg │ ├── terminal.ogg │ ├── terminated.ogg │ ├── termination.ogg │ ├── test.ogg │ ├── that.ogg │ ├── the.ogg │ ├── then.ogg │ ├── there.ogg │ ├── third.ogg │ ├── thirteen.ogg │ ├── thirty.ogg │ ├── this.ogg │ ├── those.ogg │ ├── thousand.ogg │ ├── threat.ogg │ ├── three.ogg │ ├── through.ogg │ ├── tide.ogg │ ├── time.ogg │ ├── to.ogg │ ├── top.ogg │ ├── topside.ogg │ ├── touch.ogg │ ├── towards.ogg │ ├── toxins.ogg │ ├── track.ogg │ ├── train.ogg │ ├── traitor.ogg │ ├── transportation.ogg │ ├── truck.ogg │ ├── tunnel.ogg │ ├── turn.ogg │ ├── turret.ogg │ ├── twelve.ogg │ ├── twenty.ogg │ ├── two.ogg │ ├── u.ogg │ ├── unauthorized.ogg │ ├── under.ogg │ ├── uniform.ogg │ ├── unlocked.ogg │ ├── until.ogg │ ├── up.ogg │ ├── update.ogg │ ├── updated.ogg │ ├── updating.ogg │ ├── upload.ogg │ ├── upper.ogg │ ├── uranium.ogg │ ├── us.ogg │ ├── usa.ogg │ ├── use.ogg │ ├── used.ogg │ ├── user.ogg │ ├── v.ogg │ ├── vacate.ogg │ ├── valid.ogg │ ├── vapor.ogg │ ├── vent.ogg │ ├── ventilation.ogg │ ├── victor.ogg │ ├── violated.ogg │ ├── violation.ogg │ ├── virology.ogg │ ├── voltage.ogg │ ├── vox.ogg │ ├── vox_login.ogg │ ├── voxtest.ogg │ ├── w.ogg │ ├── walk.ogg │ ├── wall.ogg │ ├── wanker.ogg │ ├── want.ogg │ ├── wanted.ogg │ ├── warm.ogg │ ├── warn.ogg │ ├── warning.ogg │ ├── waste.ogg │ ├── water.ogg │ ├── we.ogg │ ├── weapon.ogg │ ├── welcome.ogg │ ├── west.ogg │ ├── whiskey.ogg │ ├── white.ogg │ ├── wilco.ogg │ ├── will.ogg │ ├── with.ogg │ ├── without.ogg │ ├── wood.ogg │ ├── woody.ogg │ ├── x.ogg │ ├── xeno.ogg │ ├── xenobiology.ogg │ ├── xenomorph.ogg │ ├── xenomorphs.ogg │ ├── y.ogg │ ├── yankee.ogg │ ├── yards.ogg │ ├── year.ogg │ ├── yellow.ogg │ ├── yes.ogg │ ├── you.ogg │ ├── your.ogg │ ├── yourself.ogg │ ├── z.ogg │ ├── zero.ogg │ ├── zone.ogg │ └── zulu.ogg │ └── weapons │ ├── armbomb.ogg │ ├── attributions.txt │ ├── autoguninsert.ogg │ ├── batonextend.ogg │ ├── beam_sniper.ogg │ ├── bite.ogg │ ├── blade1.ogg │ ├── bladeslice.ogg │ ├── blastcannon.ogg │ ├── blaster.ogg │ ├── bolathrow.ogg │ ├── bulletflyby.ogg │ ├── bulletflyby2.ogg │ ├── bulletflyby3.ogg │ ├── bulletinsert.ogg │ ├── bulletremove.ogg │ ├── cablecuff.ogg │ ├── chainhit.ogg │ ├── chainsawhit.ogg │ ├── circsawhit.ogg │ ├── cqchit1.ogg │ ├── cqchit2.ogg │ ├── draw_bow.ogg │ ├── draw_bow2.ogg │ ├── drill.ogg │ ├── effects │ ├── batreflect1.ogg │ ├── batreflect2.ogg │ ├── ric1.ogg │ ├── ric2.ogg │ ├── ric3.ogg │ ├── ric4.ogg │ ├── ric5.ogg │ └── searwall.ogg │ ├── egloves.ogg │ ├── emitter.ogg │ ├── emitter2.ogg │ ├── empty.ogg │ ├── flash.ogg │ ├── flash_ring.ogg │ ├── flashbang.ogg │ ├── genhit.ogg │ ├── genhit1.ogg │ ├── genhit2.ogg │ ├── genhit3.ogg │ ├── grenadelaunch.ogg │ ├── gunshot.ogg │ ├── gunshot2.ogg │ ├── gunshot3.ogg │ ├── gunshot4.ogg │ ├── gunshot_silenced.ogg │ ├── gunshot_smg.ogg │ ├── handcuffs.ogg │ ├── homerun.ogg │ ├── ionrifle.ogg │ ├── kenetic_accel.ogg │ ├── kenetic_reload.ogg │ ├── laser.ogg │ ├── laser2.ogg │ ├── laser3.ogg │ ├── lasercannonfire.ogg │ ├── magin.ogg │ ├── magout.ogg │ ├── marauder.ogg │ ├── pierce.ogg │ ├── plasma_cutter.ogg │ ├── pulse.ogg │ ├── pulse2.ogg │ ├── pulse3.ogg │ ├── punch1.ogg │ ├── punch2.ogg │ ├── punch3.ogg │ ├── punch4.ogg │ ├── punchmiss.ogg │ ├── rapierhit.ogg │ ├── resonator_blast.ogg │ ├── resonator_fire.ogg │ ├── ring.ogg │ ├── rocketlaunch.ogg │ ├── saberoff.ogg │ ├── saberon.ogg │ ├── sawclose.ogg │ ├── sawopen.ogg │ ├── sear.ogg │ ├── shotguninsert.ogg │ ├── shotgunpump.ogg │ ├── slam.ogg │ ├── slap.ogg │ ├── slash.ogg │ ├── slashmiss.ogg │ ├── slice.ogg │ ├── smash.ogg │ ├── smg_empty_alarm.ogg │ ├── sonic_jackhammer.ogg │ ├── stringsmash.ogg │ ├── tap.ogg │ ├── taser.ogg │ ├── taser2.ogg │ ├── taserhit.ogg │ ├── throwtap.ogg │ ├── thudswoosh.ogg │ ├── wave.ogg │ └── zapbang.ogg ├── setup.bat ├── setup.sh ├── strings ├── names │ ├── adjectives.json │ ├── ai.json │ ├── carp.json │ ├── clown.json │ ├── death_commando.json │ ├── first.json │ ├── first_female.json │ ├── first_male.json │ ├── golem.json │ ├── last.json │ ├── lizard_female.json │ ├── lizard_male.json │ ├── megacarp1.json │ ├── megacarp2.json │ ├── mime.json │ ├── nightmare.json │ ├── ninjaname.json │ ├── ninjatitle.json │ ├── plasmaman.json │ ├── posibrain.json │ ├── verbs.json │ ├── wizardfirst.json │ └── wizardsecond.json ├── sillytips.json └── tips.json ├── testmap.bsmap └── tools └── map-converter ├── convert.bat ├── index.js ├── package-lock.json ├── package.json └── rules ├── access.json ├── areas.js ├── atmos.js ├── clothing.js ├── job_landmarks.json ├── misc_items.js ├── rules.js └── utils.js /.bs-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/.bs-env.json -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/.gitignore -------------------------------------------------------------------------------- /BoxStation.bsmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/BoxStation.bsmap -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/LICENSE -------------------------------------------------------------------------------- /MetaStation.bsmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/MetaStation.bsmap -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/README.md -------------------------------------------------------------------------------- /client_src/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | gulp -------------------------------------------------------------------------------- /client_src/code/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/client_src/code/alert.js -------------------------------------------------------------------------------- /client_src/code/hud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/client_src/code/hud.js -------------------------------------------------------------------------------- /client_src/code/parallax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/client_src/code/parallax.js -------------------------------------------------------------------------------- /client_src/code/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/client_src/code/preload.js -------------------------------------------------------------------------------- /client_src/code/shuttle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/client_src/code/shuttle.js -------------------------------------------------------------------------------- /client_src/code/ui/atmos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/client_src/code/ui/atmos.js -------------------------------------------------------------------------------- /client_src/code/ui/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/client_src/code/ui/login.js -------------------------------------------------------------------------------- /client_src/code/ui/smes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/client_src/code/ui/smes.js -------------------------------------------------------------------------------- /client_src/code/ui/strip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/client_src/code/ui/strip.js -------------------------------------------------------------------------------- /client_src/css/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/client_src/css/main.less -------------------------------------------------------------------------------- /client_src/css/ui/bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/client_src/css/ui/bar.less -------------------------------------------------------------------------------- /client_src/css/ui/panel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/client_src/css/ui/panel.less -------------------------------------------------------------------------------- /client_src/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/client_src/gulpfile.js -------------------------------------------------------------------------------- /client_src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/client_src/index.js -------------------------------------------------------------------------------- /client_src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/client_src/package-lock.json -------------------------------------------------------------------------------- /client_src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/client_src/package.json -------------------------------------------------------------------------------- /client_src/watch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | gulp all 3 | -------------------------------------------------------------------------------- /code/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/config.js -------------------------------------------------------------------------------- /code/defines/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/defines/access.js -------------------------------------------------------------------------------- /code/defines/layers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/defines/layers.js -------------------------------------------------------------------------------- /code/defines/lighting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/defines/lighting.js -------------------------------------------------------------------------------- /code/defines/mob_defines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/defines/mob_defines.js -------------------------------------------------------------------------------- /code/defines/pass_flags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/defines/pass_flags.js -------------------------------------------------------------------------------- /code/defines/sounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/defines/sounds.js -------------------------------------------------------------------------------- /code/game/area/area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/game/area/area.js -------------------------------------------------------------------------------- /code/game/mobs/dead/ghost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/game/mobs/dead/ghost.js -------------------------------------------------------------------------------- /code/game/mobs/mind/mind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/game/mobs/mind/mind.js -------------------------------------------------------------------------------- /code/game/mobs/new_player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/game/mobs/new_player.js -------------------------------------------------------------------------------- /code/game/objects/items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/game/objects/items.js -------------------------------------------------------------------------------- /code/game/objects/objs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/game/objects/objs.js -------------------------------------------------------------------------------- /code/game/objects/puller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/game/objects/puller.js -------------------------------------------------------------------------------- /code/game/placeholders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/game/placeholders.js -------------------------------------------------------------------------------- /code/game/ticker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/game/ticker.js -------------------------------------------------------------------------------- /code/game/turfs/floor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/game/turfs/floor.js -------------------------------------------------------------------------------- /code/game/turfs/plating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/game/turfs/plating.js -------------------------------------------------------------------------------- /code/modules/admin/holder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/modules/admin/holder.js -------------------------------------------------------------------------------- /code/modules/admin/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/modules/admin/menu.js -------------------------------------------------------------------------------- /code/modules/client/verbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/modules/client/verbs.js -------------------------------------------------------------------------------- /code/modules/jobs/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/modules/jobs/access.js -------------------------------------------------------------------------------- /code/modules/jobs/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/modules/jobs/id.js -------------------------------------------------------------------------------- /code/modules/power/apc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/modules/power/apc.js -------------------------------------------------------------------------------- /code/modules/power/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/modules/power/cable.js -------------------------------------------------------------------------------- /code/modules/power/cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/modules/power/cell.js -------------------------------------------------------------------------------- /code/modules/power/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/modules/power/node.js -------------------------------------------------------------------------------- /code/modules/power/smes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/modules/power/smes.js -------------------------------------------------------------------------------- /code/onclick/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/onclick/action.js -------------------------------------------------------------------------------- /code/onclick/hud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/onclick/hud.js -------------------------------------------------------------------------------- /code/onclick/interact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/onclick/interact.js -------------------------------------------------------------------------------- /code/onclick/inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/onclick/inventory.js -------------------------------------------------------------------------------- /code/onclick/strip_panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/code/onclick/strip_panel.js -------------------------------------------------------------------------------- /config/default/config.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/config/default/config.cson -------------------------------------------------------------------------------- /config/default/server.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/config/default/server.cson -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/index.js -------------------------------------------------------------------------------- /launch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | title Bluespess 4 | 5 | node index.js 6 | 7 | pause -------------------------------------------------------------------------------- /launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | node index.js -------------------------------------------------------------------------------- /launch_debug.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | title Bluespess Debug 4 | 5 | node --inspect index.js 6 | 7 | pause -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/package.json -------------------------------------------------------------------------------- /res/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/favicon.ico -------------------------------------------------------------------------------- /res/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /res/icons/480x480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/480x480.png -------------------------------------------------------------------------------- /res/icons/480x480.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/480x480.png.json -------------------------------------------------------------------------------- /res/icons/BadAss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/BadAss.png -------------------------------------------------------------------------------- /res/icons/BadAss.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/BadAss.png.json -------------------------------------------------------------------------------- /res/icons/PSD files/door.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/PSD files/door.psd -------------------------------------------------------------------------------- /res/icons/ass/assalien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/ass/assalien.png -------------------------------------------------------------------------------- /res/icons/ass/assdrone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/ass/assdrone.png -------------------------------------------------------------------------------- /res/icons/ass/assfemale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/ass/assfemale.png -------------------------------------------------------------------------------- /res/icons/ass/assmale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/ass/assmale.png -------------------------------------------------------------------------------- /res/icons/effects/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/effects/64x64.png -------------------------------------------------------------------------------- /res/icons/effects/96x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/effects/96x32.png -------------------------------------------------------------------------------- /res/icons/effects/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/effects/96x96.png -------------------------------------------------------------------------------- /res/icons/effects/beam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/effects/beam.png -------------------------------------------------------------------------------- /res/icons/effects/bleed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/effects/bleed.png -------------------------------------------------------------------------------- /res/icons/effects/blood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/effects/blood.png -------------------------------------------------------------------------------- /res/icons/effects/fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/effects/fields.png -------------------------------------------------------------------------------- /res/icons/effects/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/effects/fire.png -------------------------------------------------------------------------------- /res/icons/effects/freeze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/effects/freeze.png -------------------------------------------------------------------------------- /res/icons/effects/liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/effects/liquid.png -------------------------------------------------------------------------------- /res/icons/effects/static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/effects/static.png -------------------------------------------------------------------------------- /res/icons/effects/trail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/effects/trail.png -------------------------------------------------------------------------------- /res/icons/effects/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/effects/water.png -------------------------------------------------------------------------------- /res/icons/emoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/emoji.png -------------------------------------------------------------------------------- /res/icons/emoji.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/emoji.png.json -------------------------------------------------------------------------------- /res/icons/mecha/mech_bay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mecha/mech_bay.png -------------------------------------------------------------------------------- /res/icons/mecha/mech_fab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mecha/mech_fab.png -------------------------------------------------------------------------------- /res/icons/mecha/mecha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mecha/mecha.png -------------------------------------------------------------------------------- /res/icons/member_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/member_content.png -------------------------------------------------------------------------------- /res/icons/minimap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/minimap.png -------------------------------------------------------------------------------- /res/icons/minimap.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/minimap.png.json -------------------------------------------------------------------------------- /res/icons/misc/beach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/misc/beach.png -------------------------------------------------------------------------------- /res/icons/misc/beach2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/misc/beach2.png -------------------------------------------------------------------------------- /res/icons/misc/buildmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/misc/buildmode.png -------------------------------------------------------------------------------- /res/icons/misc/imap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/misc/imap.png -------------------------------------------------------------------------------- /res/icons/misc/imap.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/misc/imap.png.json -------------------------------------------------------------------------------- /res/icons/misc/inpipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/misc/inpipe.png -------------------------------------------------------------------------------- /res/icons/misc/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/misc/language.png -------------------------------------------------------------------------------- /res/icons/misc/largeui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/misc/largeui.png -------------------------------------------------------------------------------- /res/icons/misc/mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/misc/mark.png -------------------------------------------------------------------------------- /res/icons/misc/mark.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/misc/mark.png.json -------------------------------------------------------------------------------- /res/icons/misc/radar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/misc/radar.png -------------------------------------------------------------------------------- /res/icons/misc/static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/misc/static.png -------------------------------------------------------------------------------- /res/icons/mob/32x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/32x64.png -------------------------------------------------------------------------------- /res/icons/mob/32x64.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/32x64.png.json -------------------------------------------------------------------------------- /res/icons/mob/AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/AI.png -------------------------------------------------------------------------------- /res/icons/mob/AI.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/AI.png.json -------------------------------------------------------------------------------- /res/icons/mob/Easter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/Easter.png -------------------------------------------------------------------------------- /res/icons/mob/EvilPope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/EvilPope.png -------------------------------------------------------------------------------- /res/icons/mob/OnFire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/OnFire.png -------------------------------------------------------------------------------- /res/icons/mob/actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/actions.png -------------------------------------------------------------------------------- /res/icons/mob/aibots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/aibots.png -------------------------------------------------------------------------------- /res/icons/mob/alien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/alien.png -------------------------------------------------------------------------------- /res/icons/mob/alien.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/alien.png.json -------------------------------------------------------------------------------- /res/icons/mob/alienleap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/alienleap.png -------------------------------------------------------------------------------- /res/icons/mob/alienqueen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/alienqueen.png -------------------------------------------------------------------------------- /res/icons/mob/animal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/animal.png -------------------------------------------------------------------------------- /res/icons/mob/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/back.png -------------------------------------------------------------------------------- /res/icons/mob/back.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/back.png.json -------------------------------------------------------------------------------- /res/icons/mob/bees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/bees.png -------------------------------------------------------------------------------- /res/icons/mob/bees.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/bees.png.json -------------------------------------------------------------------------------- /res/icons/mob/belt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/belt.png -------------------------------------------------------------------------------- /res/icons/mob/belt.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/belt.png.json -------------------------------------------------------------------------------- /res/icons/mob/blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/blob.png -------------------------------------------------------------------------------- /res/icons/mob/blob.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/blob.png.json -------------------------------------------------------------------------------- /res/icons/mob/broadMobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/broadMobs.png -------------------------------------------------------------------------------- /res/icons/mob/corgi_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/corgi_back.png -------------------------------------------------------------------------------- /res/icons/mob/corgi_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/corgi_head.png -------------------------------------------------------------------------------- /res/icons/mob/dam_mob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/dam_mob.png -------------------------------------------------------------------------------- /res/icons/mob/drone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/drone.png -------------------------------------------------------------------------------- /res/icons/mob/drone.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/drone.png.json -------------------------------------------------------------------------------- /res/icons/mob/ears.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/ears.png -------------------------------------------------------------------------------- /res/icons/mob/ears.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/ears.png.json -------------------------------------------------------------------------------- /res/icons/mob/eyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/eyes.png -------------------------------------------------------------------------------- /res/icons/mob/eyes.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/eyes.png.json -------------------------------------------------------------------------------- /res/icons/mob/facialhair_extensions.png.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /res/icons/mob/feet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/feet.png -------------------------------------------------------------------------------- /res/icons/mob/feet.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/feet.png.json -------------------------------------------------------------------------------- /res/icons/mob/gondolas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/gondolas.png -------------------------------------------------------------------------------- /res/icons/mob/gorilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/gorilla.png -------------------------------------------------------------------------------- /res/icons/mob/guardian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/guardian.png -------------------------------------------------------------------------------- /res/icons/mob/hands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/hands.png -------------------------------------------------------------------------------- /res/icons/mob/hands.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/hands.png.json -------------------------------------------------------------------------------- /res/icons/mob/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/head.png -------------------------------------------------------------------------------- /res/icons/mob/head.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/head.png.json -------------------------------------------------------------------------------- /res/icons/mob/hivebot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/hivebot.png -------------------------------------------------------------------------------- /res/icons/mob/hud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/hud.png -------------------------------------------------------------------------------- /res/icons/mob/hud.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/hud.png.json -------------------------------------------------------------------------------- /res/icons/mob/human.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/human.png -------------------------------------------------------------------------------- /res/icons/mob/human.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/human.png.json -------------------------------------------------------------------------------- /res/icons/mob/human_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/human_face.png -------------------------------------------------------------------------------- /res/icons/mob/limb_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/limb_mask.png -------------------------------------------------------------------------------- /res/icons/mob/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/mask.png -------------------------------------------------------------------------------- /res/icons/mob/mask.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/mask.png.json -------------------------------------------------------------------------------- /res/icons/mob/mob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/mob.png -------------------------------------------------------------------------------- /res/icons/mob/mob.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/mob.png.json -------------------------------------------------------------------------------- /res/icons/mob/monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/monkey.png -------------------------------------------------------------------------------- /res/icons/mob/neck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/neck.png -------------------------------------------------------------------------------- /res/icons/mob/neck.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/neck.png.json -------------------------------------------------------------------------------- /res/icons/mob/nest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/nest.png -------------------------------------------------------------------------------- /res/icons/mob/nest.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/nest.png.json -------------------------------------------------------------------------------- /res/icons/mob/pai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/pai.png -------------------------------------------------------------------------------- /res/icons/mob/pai.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/pai.png.json -------------------------------------------------------------------------------- /res/icons/mob/penguins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/penguins.png -------------------------------------------------------------------------------- /res/icons/mob/pets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/pets.png -------------------------------------------------------------------------------- /res/icons/mob/pets.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/pets.png.json -------------------------------------------------------------------------------- /res/icons/mob/robots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/robots.png -------------------------------------------------------------------------------- /res/icons/mob/screen_ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/screen_ai.png -------------------------------------------------------------------------------- /res/icons/mob/screen_gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/screen_gen.png -------------------------------------------------------------------------------- /res/icons/mob/slimes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/slimes.png -------------------------------------------------------------------------------- /res/icons/mob/suit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/suit.png -------------------------------------------------------------------------------- /res/icons/mob/suit.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/suit.png.json -------------------------------------------------------------------------------- /res/icons/mob/swarmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/swarmer.png -------------------------------------------------------------------------------- /res/icons/mob/talk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/talk.png -------------------------------------------------------------------------------- /res/icons/mob/talk.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/talk.png.json -------------------------------------------------------------------------------- /res/icons/mob/underwear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/underwear.png -------------------------------------------------------------------------------- /res/icons/mob/uniform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/uniform.png -------------------------------------------------------------------------------- /res/icons/mob/wings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/wings.png -------------------------------------------------------------------------------- /res/icons/mob/wings.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/wings.png.json -------------------------------------------------------------------------------- /res/icons/mob/zone_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/mob/zone_sel.png -------------------------------------------------------------------------------- /res/icons/obj/2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/2x2.png -------------------------------------------------------------------------------- /res/icons/obj/2x2.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/2x2.png.json -------------------------------------------------------------------------------- /res/icons/obj/3x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/3x3.png -------------------------------------------------------------------------------- /res/icons/obj/3x3.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/3x3.png.json -------------------------------------------------------------------------------- /res/icons/obj/Cryogenic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/Cryogenic2.png -------------------------------------------------------------------------------- /res/icons/obj/abductor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/abductor.png -------------------------------------------------------------------------------- /res/icons/obj/aicards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/aicards.png -------------------------------------------------------------------------------- /res/icons/obj/ammo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/ammo.png -------------------------------------------------------------------------------- /res/icons/obj/ammo.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/ammo.png.json -------------------------------------------------------------------------------- /res/icons/obj/artstuff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/artstuff.png -------------------------------------------------------------------------------- /res/icons/obj/assemblies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/assemblies.png -------------------------------------------------------------------------------- /res/icons/obj/atmos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/atmos.png -------------------------------------------------------------------------------- /res/icons/obj/atmos.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/atmos.png.json -------------------------------------------------------------------------------- /res/icons/obj/barsigns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/barsigns.png -------------------------------------------------------------------------------- /res/icons/obj/basketball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/basketball.png -------------------------------------------------------------------------------- /res/icons/obj/bedsheets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/bedsheets.png -------------------------------------------------------------------------------- /res/icons/obj/bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/bike.png -------------------------------------------------------------------------------- /res/icons/obj/bike.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/bike.png.json -------------------------------------------------------------------------------- /res/icons/obj/biomass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/biomass.png -------------------------------------------------------------------------------- /res/icons/obj/bloodpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/bloodpack.png -------------------------------------------------------------------------------- /res/icons/obj/bodybag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/bodybag.png -------------------------------------------------------------------------------- /res/icons/obj/bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/bus.png -------------------------------------------------------------------------------- /res/icons/obj/bus.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/bus.png.json -------------------------------------------------------------------------------- /res/icons/obj/candle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/candle.png -------------------------------------------------------------------------------- /res/icons/obj/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/car.png -------------------------------------------------------------------------------- /res/icons/obj/car.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/car.png.json -------------------------------------------------------------------------------- /res/icons/obj/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/card.png -------------------------------------------------------------------------------- /res/icons/obj/card.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/card.png.json -------------------------------------------------------------------------------- /res/icons/obj/chairs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/chairs.png -------------------------------------------------------------------------------- /res/icons/obj/chemical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/chemical.png -------------------------------------------------------------------------------- /res/icons/obj/chempuff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/chempuff.png -------------------------------------------------------------------------------- /res/icons/obj/christmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/christmas.png -------------------------------------------------------------------------------- /res/icons/obj/chronos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/chronos.png -------------------------------------------------------------------------------- /res/icons/obj/cigarettes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/cigarettes.png -------------------------------------------------------------------------------- /res/icons/obj/cloning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/cloning.png -------------------------------------------------------------------------------- /res/icons/obj/closet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/closet.png -------------------------------------------------------------------------------- /res/icons/obj/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/computer.png -------------------------------------------------------------------------------- /res/icons/obj/contraband.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/contraband.png -------------------------------------------------------------------------------- /res/icons/obj/crates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/crates.png -------------------------------------------------------------------------------- /res/icons/obj/crayons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/crayons.png -------------------------------------------------------------------------------- /res/icons/obj/cryo_mobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/cryo_mobs.png -------------------------------------------------------------------------------- /res/icons/obj/cryogenics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/cryogenics.png -------------------------------------------------------------------------------- /res/icons/obj/cult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/cult.png -------------------------------------------------------------------------------- /res/icons/obj/cult.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/cult.png.json -------------------------------------------------------------------------------- /res/icons/obj/cult_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/cult_large.png -------------------------------------------------------------------------------- /res/icons/obj/decals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/decals.png -------------------------------------------------------------------------------- /res/icons/obj/device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/device.png -------------------------------------------------------------------------------- /res/icons/obj/dice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/dice.png -------------------------------------------------------------------------------- /res/icons/obj/dice.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/dice.png.json -------------------------------------------------------------------------------- /res/icons/obj/drinks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/drinks.png -------------------------------------------------------------------------------- /res/icons/obj/economy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/economy.png -------------------------------------------------------------------------------- /res/icons/obj/fireplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/fireplace.png -------------------------------------------------------------------------------- /res/icons/obj/fluff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/fluff.png -------------------------------------------------------------------------------- /res/icons/obj/fluff.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/fluff.png.json -------------------------------------------------------------------------------- /res/icons/obj/food/food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/food/food.png -------------------------------------------------------------------------------- /res/icons/obj/fulton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/fulton.png -------------------------------------------------------------------------------- /res/icons/obj/grenade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/grenade.png -------------------------------------------------------------------------------- /res/icons/obj/guns/magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/guns/magic.png -------------------------------------------------------------------------------- /res/icons/obj/guns/toy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/guns/toy.png -------------------------------------------------------------------------------- /res/icons/obj/implants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/implants.png -------------------------------------------------------------------------------- /res/icons/obj/improvised.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/improvised.png -------------------------------------------------------------------------------- /res/icons/obj/iv_drip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/iv_drip.png -------------------------------------------------------------------------------- /res/icons/obj/janitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/janitor.png -------------------------------------------------------------------------------- /res/icons/obj/kitchen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/kitchen.png -------------------------------------------------------------------------------- /res/icons/obj/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/library.png -------------------------------------------------------------------------------- /res/icons/obj/lighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/lighting.png -------------------------------------------------------------------------------- /res/icons/obj/lollipop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/lollipop.png -------------------------------------------------------------------------------- /res/icons/obj/magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/magic.png -------------------------------------------------------------------------------- /res/icons/obj/magic.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/magic.png.json -------------------------------------------------------------------------------- /res/icons/obj/meteor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/meteor.png -------------------------------------------------------------------------------- /res/icons/obj/meter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/meter.png -------------------------------------------------------------------------------- /res/icons/obj/meter.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/meter.png.json -------------------------------------------------------------------------------- /res/icons/obj/mining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/mining.png -------------------------------------------------------------------------------- /res/icons/obj/module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/module.png -------------------------------------------------------------------------------- /res/icons/obj/monitors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/monitors.png -------------------------------------------------------------------------------- /res/icons/obj/musician.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/musician.png -------------------------------------------------------------------------------- /res/icons/obj/mysterybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/mysterybox.png -------------------------------------------------------------------------------- /res/icons/obj/narsie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/narsie.png -------------------------------------------------------------------------------- /res/icons/obj/nuke_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/nuke_tools.png -------------------------------------------------------------------------------- /res/icons/obj/objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/objects.png -------------------------------------------------------------------------------- /res/icons/obj/pda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/pda.png -------------------------------------------------------------------------------- /res/icons/obj/pda.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/pda.png.json -------------------------------------------------------------------------------- /res/icons/obj/plushes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/plushes.png -------------------------------------------------------------------------------- /res/icons/obj/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/power.png -------------------------------------------------------------------------------- /res/icons/obj/power.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/power.png.json -------------------------------------------------------------------------------- /res/icons/obj/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/radio.png -------------------------------------------------------------------------------- /res/icons/obj/radio.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/radio.png.json -------------------------------------------------------------------------------- /res/icons/obj/recycling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/recycling.png -------------------------------------------------------------------------------- /res/icons/obj/robotics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/robotics.png -------------------------------------------------------------------------------- /res/icons/obj/rollerbed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/rollerbed.png -------------------------------------------------------------------------------- /res/icons/obj/rune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/rune.png -------------------------------------------------------------------------------- /res/icons/obj/rune.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/rune.png.json -------------------------------------------------------------------------------- /res/icons/obj/shards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/shards.png -------------------------------------------------------------------------------- /res/icons/obj/statue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/statue.png -------------------------------------------------------------------------------- /res/icons/obj/storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/storage.png -------------------------------------------------------------------------------- /res/icons/obj/structures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/structures.png -------------------------------------------------------------------------------- /res/icons/obj/surgery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/surgery.png -------------------------------------------------------------------------------- /res/icons/obj/syringe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/syringe.png -------------------------------------------------------------------------------- /res/icons/obj/tank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/tank.png -------------------------------------------------------------------------------- /res/icons/obj/tank.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/tank.png.json -------------------------------------------------------------------------------- /res/icons/obj/terminals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/terminals.png -------------------------------------------------------------------------------- /res/icons/obj/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/tiles.png -------------------------------------------------------------------------------- /res/icons/obj/tiles.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/tiles.png.json -------------------------------------------------------------------------------- /res/icons/obj/tomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/tomb.png -------------------------------------------------------------------------------- /res/icons/obj/tomb.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/tomb.png.json -------------------------------------------------------------------------------- /res/icons/obj/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/tools.png -------------------------------------------------------------------------------- /res/icons/obj/tools.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/tools.png.json -------------------------------------------------------------------------------- /res/icons/obj/toy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/toy.png -------------------------------------------------------------------------------- /res/icons/obj/toy.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/toy.png.json -------------------------------------------------------------------------------- /res/icons/obj/tubing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/tubing.png -------------------------------------------------------------------------------- /res/icons/obj/turrets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/turrets.png -------------------------------------------------------------------------------- /res/icons/obj/vehicles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/vehicles.png -------------------------------------------------------------------------------- /res/icons/obj/vending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/vending.png -------------------------------------------------------------------------------- /res/icons/obj/virology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/virology.png -------------------------------------------------------------------------------- /res/icons/obj/wallframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/wallframe.png -------------------------------------------------------------------------------- /res/icons/obj/wallmounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/wallmounts.png -------------------------------------------------------------------------------- /res/icons/obj/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/obj/wizard.png -------------------------------------------------------------------------------- /res/icons/reagentname_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/reagentname_bg.png -------------------------------------------------------------------------------- /res/icons/ss13_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/ss13_32.png -------------------------------------------------------------------------------- /res/icons/ss13_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/ss13_64.png -------------------------------------------------------------------------------- /res/icons/turf/areas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/turf/areas.png -------------------------------------------------------------------------------- /res/icons/turf/decals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/turf/decals.png -------------------------------------------------------------------------------- /res/icons/turf/floors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/turf/floors.png -------------------------------------------------------------------------------- /res/icons/turf/mining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/turf/mining.png -------------------------------------------------------------------------------- /res/icons/turf/overlays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/turf/overlays.png -------------------------------------------------------------------------------- /res/icons/turf/shuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/turf/shuttle.png -------------------------------------------------------------------------------- /res/icons/turf/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/turf/snow.png -------------------------------------------------------------------------------- /res/icons/turf/snow.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/turf/snow.png.json -------------------------------------------------------------------------------- /res/icons/turf/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/turf/space.png -------------------------------------------------------------------------------- /res/icons/turf/walls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/icons/turf/walls.png -------------------------------------------------------------------------------- /res/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/index.html -------------------------------------------------------------------------------- /res/sound/ai/aimalf.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ai/aimalf.ogg -------------------------------------------------------------------------------- /res/sound/ai/aliens.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ai/aliens.ogg -------------------------------------------------------------------------------- /res/sound/ai/animes.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ai/animes.ogg -------------------------------------------------------------------------------- /res/sound/ai/attention.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ai/attention.ogg -------------------------------------------------------------------------------- /res/sound/ai/granomalies.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ai/granomalies.ogg -------------------------------------------------------------------------------- /res/sound/ai/harmalarm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ai/harmalarm.ogg -------------------------------------------------------------------------------- /res/sound/ai/intercept.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ai/intercept.ogg -------------------------------------------------------------------------------- /res/sound/ai/ionstorm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ai/ionstorm.ogg -------------------------------------------------------------------------------- /res/sound/ai/meteors.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ai/meteors.ogg -------------------------------------------------------------------------------- /res/sound/ai/newai.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ai/newai.ogg -------------------------------------------------------------------------------- /res/sound/ai/outbreak5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ai/outbreak5.ogg -------------------------------------------------------------------------------- /res/sound/ai/outbreak7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ai/outbreak7.ogg -------------------------------------------------------------------------------- /res/sound/ai/poweroff.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ai/poweroff.ogg -------------------------------------------------------------------------------- /res/sound/ai/poweron.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ai/poweron.ogg -------------------------------------------------------------------------------- /res/sound/ai/radiation.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ai/radiation.ogg -------------------------------------------------------------------------------- /res/sound/ai/shuttledock.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ai/shuttledock.ogg -------------------------------------------------------------------------------- /res/sound/ai/spanomalies.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ai/spanomalies.ogg -------------------------------------------------------------------------------- /res/sound/ai/welcome.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ai/welcome.ogg -------------------------------------------------------------------------------- /res/sound/ambience/clown.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ambience/clown.ogg -------------------------------------------------------------------------------- /res/sound/ambience/seag1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ambience/seag1.ogg -------------------------------------------------------------------------------- /res/sound/ambience/seag2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ambience/seag2.ogg -------------------------------------------------------------------------------- /res/sound/ambience/seag3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ambience/seag3.ogg -------------------------------------------------------------------------------- /res/sound/ambience/shore.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/ambience/shore.ogg -------------------------------------------------------------------------------- /res/sound/arcade/boom.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/arcade/boom.ogg -------------------------------------------------------------------------------- /res/sound/arcade/heal.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/arcade/heal.ogg -------------------------------------------------------------------------------- /res/sound/arcade/hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/arcade/hit.ogg -------------------------------------------------------------------------------- /res/sound/arcade/lose.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/arcade/lose.ogg -------------------------------------------------------------------------------- /res/sound/arcade/mana.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/arcade/mana.ogg -------------------------------------------------------------------------------- /res/sound/arcade/steal.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/arcade/steal.ogg -------------------------------------------------------------------------------- /res/sound/arcade/win.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/arcade/win.ogg -------------------------------------------------------------------------------- /res/sound/chatter/owl_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/chatter/owl_1.ogg -------------------------------------------------------------------------------- /res/sound/chatter/owl_10.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/chatter/owl_10.ogg -------------------------------------------------------------------------------- /res/sound/chatter/owl_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/chatter/owl_2.ogg -------------------------------------------------------------------------------- /res/sound/chatter/owl_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/chatter/owl_3.ogg -------------------------------------------------------------------------------- /res/sound/chatter/owl_4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/chatter/owl_4.ogg -------------------------------------------------------------------------------- /res/sound/chatter/owl_5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/chatter/owl_5.ogg -------------------------------------------------------------------------------- /res/sound/chatter/owl_6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/chatter/owl_6.ogg -------------------------------------------------------------------------------- /res/sound/chatter/owl_7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/chatter/owl_7.ogg -------------------------------------------------------------------------------- /res/sound/chatter/owl_8.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/chatter/owl_8.ogg -------------------------------------------------------------------------------- /res/sound/chatter/owl_9.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/chatter/owl_9.ogg -------------------------------------------------------------------------------- /res/sound/effects/alert.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/alert.ogg -------------------------------------------------------------------------------- /res/sound/effects/bamf.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/bamf.ogg -------------------------------------------------------------------------------- /res/sound/effects/bang.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/bang.ogg -------------------------------------------------------------------------------- /res/sound/effects/clang.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/clang.ogg -------------------------------------------------------------------------------- /res/sound/effects/curse1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/curse1.ogg -------------------------------------------------------------------------------- /res/sound/effects/curse2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/curse2.ogg -------------------------------------------------------------------------------- /res/sound/effects/curse3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/curse3.ogg -------------------------------------------------------------------------------- /res/sound/effects/curse4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/curse4.ogg -------------------------------------------------------------------------------- /res/sound/effects/curse5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/curse5.ogg -------------------------------------------------------------------------------- /res/sound/effects/curse6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/curse6.ogg -------------------------------------------------------------------------------- /res/sound/effects/fuse.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/fuse.ogg -------------------------------------------------------------------------------- /res/sound/effects/ghost.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/ghost.ogg -------------------------------------------------------------------------------- /res/sound/effects/ghost2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/ghost2.ogg -------------------------------------------------------------------------------- /res/sound/effects/huuu.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/huuu.ogg -------------------------------------------------------------------------------- /res/sound/effects/magic.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/magic.ogg -------------------------------------------------------------------------------- /res/sound/effects/meow1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/meow1.ogg -------------------------------------------------------------------------------- /res/sound/effects/pop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/pop.ogg -------------------------------------------------------------------------------- /res/sound/effects/pray.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/pray.ogg -------------------------------------------------------------------------------- /res/sound/effects/reee.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/reee.ogg -------------------------------------------------------------------------------- /res/sound/effects/refill.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/refill.ogg -------------------------------------------------------------------------------- /res/sound/effects/slosh.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/slosh.ogg -------------------------------------------------------------------------------- /res/sound/effects/smoke.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/smoke.ogg -------------------------------------------------------------------------------- /res/sound/effects/snap.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/snap.ogg -------------------------------------------------------------------------------- /res/sound/effects/splat.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/splat.ogg -------------------------------------------------------------------------------- /res/sound/effects/spray.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/spray.ogg -------------------------------------------------------------------------------- /res/sound/effects/spray2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/spray2.ogg -------------------------------------------------------------------------------- /res/sound/effects/spray3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/spray3.ogg -------------------------------------------------------------------------------- /res/sound/effects/zzzt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/effects/zzzt.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/ab4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/ab4.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/ab5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/ab5.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/ab6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/ab6.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/an4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/an4.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/an5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/an5.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/an6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/an6.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/bb4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/bb4.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/bb5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/bb5.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/bb6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/bb6.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/bn4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/bn4.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/bn5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/bn5.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/bn6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/bn6.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/cn4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/cn4.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/cn5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/cn5.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/cn6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/cn6.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/cn7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/cn7.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/db4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/db4.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/db5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/db5.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/db6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/db6.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/dn4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/dn4.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/dn5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/dn5.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/dn6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/dn6.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/eb4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/eb4.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/eb5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/eb5.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/eb6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/eb6.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/en4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/en4.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/en5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/en5.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/en6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/en6.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/fn4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/fn4.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/fn5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/fn5.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/fn6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/fn6.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/gb4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/gb4.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/gb5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/gb5.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/gb6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/gb6.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/gn4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/gn4.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/gn5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/gn5.ogg -------------------------------------------------------------------------------- /res/sound/eguitar/gn6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/eguitar/gn6.ogg -------------------------------------------------------------------------------- /res/sound/guitar/ab3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/ab3.ogg -------------------------------------------------------------------------------- /res/sound/guitar/ab4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/ab4.ogg -------------------------------------------------------------------------------- /res/sound/guitar/ab5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/ab5.ogg -------------------------------------------------------------------------------- /res/sound/guitar/ab6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/ab6.ogg -------------------------------------------------------------------------------- /res/sound/guitar/an3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/an3.ogg -------------------------------------------------------------------------------- /res/sound/guitar/an4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/an4.ogg -------------------------------------------------------------------------------- /res/sound/guitar/an5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/an5.ogg -------------------------------------------------------------------------------- /res/sound/guitar/an6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/an6.ogg -------------------------------------------------------------------------------- /res/sound/guitar/bb3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/bb3.ogg -------------------------------------------------------------------------------- /res/sound/guitar/bb4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/bb4.ogg -------------------------------------------------------------------------------- /res/sound/guitar/bb5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/bb5.ogg -------------------------------------------------------------------------------- /res/sound/guitar/bb6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/bb6.ogg -------------------------------------------------------------------------------- /res/sound/guitar/bn3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/bn3.ogg -------------------------------------------------------------------------------- /res/sound/guitar/bn4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/bn4.ogg -------------------------------------------------------------------------------- /res/sound/guitar/bn5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/bn5.ogg -------------------------------------------------------------------------------- /res/sound/guitar/bn6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/bn6.ogg -------------------------------------------------------------------------------- /res/sound/guitar/cn4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/cn4.ogg -------------------------------------------------------------------------------- /res/sound/guitar/cn5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/cn5.ogg -------------------------------------------------------------------------------- /res/sound/guitar/cn6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/cn6.ogg -------------------------------------------------------------------------------- /res/sound/guitar/db4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/db4.ogg -------------------------------------------------------------------------------- /res/sound/guitar/db5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/db5.ogg -------------------------------------------------------------------------------- /res/sound/guitar/db6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/db6.ogg -------------------------------------------------------------------------------- /res/sound/guitar/dn4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/dn4.ogg -------------------------------------------------------------------------------- /res/sound/guitar/dn5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/dn5.ogg -------------------------------------------------------------------------------- /res/sound/guitar/dn6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/dn6.ogg -------------------------------------------------------------------------------- /res/sound/guitar/eb4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/eb4.ogg -------------------------------------------------------------------------------- /res/sound/guitar/eb5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/eb5.ogg -------------------------------------------------------------------------------- /res/sound/guitar/eb6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/eb6.ogg -------------------------------------------------------------------------------- /res/sound/guitar/en3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/en3.ogg -------------------------------------------------------------------------------- /res/sound/guitar/en4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/en4.ogg -------------------------------------------------------------------------------- /res/sound/guitar/en5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/en5.ogg -------------------------------------------------------------------------------- /res/sound/guitar/en6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/en6.ogg -------------------------------------------------------------------------------- /res/sound/guitar/fn3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/fn3.ogg -------------------------------------------------------------------------------- /res/sound/guitar/fn4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/fn4.ogg -------------------------------------------------------------------------------- /res/sound/guitar/fn5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/fn5.ogg -------------------------------------------------------------------------------- /res/sound/guitar/fn6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/fn6.ogg -------------------------------------------------------------------------------- /res/sound/guitar/gb3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/gb3.ogg -------------------------------------------------------------------------------- /res/sound/guitar/gb4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/gb4.ogg -------------------------------------------------------------------------------- /res/sound/guitar/gb5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/gb5.ogg -------------------------------------------------------------------------------- /res/sound/guitar/gb6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/gb6.ogg -------------------------------------------------------------------------------- /res/sound/guitar/gn3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/gn3.ogg -------------------------------------------------------------------------------- /res/sound/guitar/gn4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/gn4.ogg -------------------------------------------------------------------------------- /res/sound/guitar/gn5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/gn5.ogg -------------------------------------------------------------------------------- /res/sound/guitar/gn6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/guitar/gn6.ogg -------------------------------------------------------------------------------- /res/sound/items/airhorn.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/airhorn.ogg -------------------------------------------------------------------------------- /res/sound/items/airhorn2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/airhorn2.ogg -------------------------------------------------------------------------------- /res/sound/items/bikehorn.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/bikehorn.ogg -------------------------------------------------------------------------------- /res/sound/items/carhorn.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/carhorn.ogg -------------------------------------------------------------------------------- /res/sound/items/coinflip.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/coinflip.ogg -------------------------------------------------------------------------------- /res/sound/items/crowbar.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/crowbar.ogg -------------------------------------------------------------------------------- /res/sound/items/drink.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/drink.ogg -------------------------------------------------------------------------------- /res/sound/items/eatfood.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/eatfood.ogg -------------------------------------------------------------------------------- /res/sound/items/gavel.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/gavel.ogg -------------------------------------------------------------------------------- /res/sound/items/jaws_cut.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/jaws_cut.ogg -------------------------------------------------------------------------------- /res/sound/items/jaws_pry.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/jaws_pry.ogg -------------------------------------------------------------------------------- /res/sound/items/pshoom.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/pshoom.ogg -------------------------------------------------------------------------------- /res/sound/items/pshoom_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/pshoom_2.ogg -------------------------------------------------------------------------------- /res/sound/items/ratchet.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/ratchet.ogg -------------------------------------------------------------------------------- /res/sound/items/rped.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/rped.ogg -------------------------------------------------------------------------------- /res/sound/items/sheath.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/sheath.ogg -------------------------------------------------------------------------------- /res/sound/items/timer.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/timer.ogg -------------------------------------------------------------------------------- /res/sound/items/trayhit1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/trayhit1.ogg -------------------------------------------------------------------------------- /res/sound/items/trayhit2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/trayhit2.ogg -------------------------------------------------------------------------------- /res/sound/items/unsheath.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/unsheath.ogg -------------------------------------------------------------------------------- /res/sound/items/weeoo1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/weeoo1.ogg -------------------------------------------------------------------------------- /res/sound/items/welder.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/welder.ogg -------------------------------------------------------------------------------- /res/sound/items/welder2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/welder2.ogg -------------------------------------------------------------------------------- /res/sound/items/zip.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/items/zip.ogg -------------------------------------------------------------------------------- /res/sound/machines/alarm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/machines/alarm.ogg -------------------------------------------------------------------------------- /res/sound/machines/chime.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/machines/chime.ogg -------------------------------------------------------------------------------- /res/sound/machines/click.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/machines/click.ogg -------------------------------------------------------------------------------- /res/sound/machines/ding.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/machines/ding.ogg -------------------------------------------------------------------------------- /res/sound/machines/hiss.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/machines/hiss.ogg -------------------------------------------------------------------------------- /res/sound/machines/ping.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/machines/ping.ogg -------------------------------------------------------------------------------- /res/sound/magic/blind.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/magic/blind.ogg -------------------------------------------------------------------------------- /res/sound/magic/blink.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/magic/blink.ogg -------------------------------------------------------------------------------- /res/sound/magic/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/magic/charge.ogg -------------------------------------------------------------------------------- /res/sound/magic/fireball.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/magic/fireball.ogg -------------------------------------------------------------------------------- /res/sound/magic/knock.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/magic/knock.ogg -------------------------------------------------------------------------------- /res/sound/magic/mandswap.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/magic/mandswap.ogg -------------------------------------------------------------------------------- /res/sound/magic/mm_hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/magic/mm_hit.ogg -------------------------------------------------------------------------------- /res/sound/magic/mutate.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/magic/mutate.ogg -------------------------------------------------------------------------------- /res/sound/magic/repulse.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/magic/repulse.ogg -------------------------------------------------------------------------------- /res/sound/magic/smoke.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/magic/smoke.ogg -------------------------------------------------------------------------------- /res/sound/mecha/imag_enh.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/mecha/imag_enh.ogg -------------------------------------------------------------------------------- /res/sound/mecha/mechstep.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/mecha/mechstep.ogg -------------------------------------------------------------------------------- /res/sound/mecha/mechturn.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/mecha/mechturn.ogg -------------------------------------------------------------------------------- /res/sound/mecha/nominal.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/mecha/nominal.ogg -------------------------------------------------------------------------------- /res/sound/misc/airraid.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/misc/airraid.ogg -------------------------------------------------------------------------------- /res/sound/misc/announce.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/misc/announce.ogg -------------------------------------------------------------------------------- /res/sound/misc/bang.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/misc/bang.ogg -------------------------------------------------------------------------------- /res/sound/misc/bike1.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/misc/bike1.mid -------------------------------------------------------------------------------- /res/sound/misc/bike2.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/misc/bike2.mid -------------------------------------------------------------------------------- /res/sound/misc/bike3.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/misc/bike3.mid -------------------------------------------------------------------------------- /res/sound/misc/bloblarm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/misc/bloblarm.ogg -------------------------------------------------------------------------------- /res/sound/misc/boogie2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/misc/boogie2.ogg -------------------------------------------------------------------------------- /res/sound/misc/disco.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/misc/disco.ogg -------------------------------------------------------------------------------- /res/sound/misc/e1m1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/misc/e1m1.ogg -------------------------------------------------------------------------------- /res/sound/misc/notice1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/misc/notice1.ogg -------------------------------------------------------------------------------- /res/sound/misc/notice2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/misc/notice2.ogg -------------------------------------------------------------------------------- /res/sound/misc/null.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/misc/null.ogg -------------------------------------------------------------------------------- /res/sound/misc/paradox.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/misc/paradox.ogg -------------------------------------------------------------------------------- /res/sound/misc/slip.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/misc/slip.ogg -------------------------------------------------------------------------------- /res/sound/misc/splort.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/misc/splort.ogg -------------------------------------------------------------------------------- /res/sound/misc/superior.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/misc/superior.ogg -------------------------------------------------------------------------------- /res/sound/misc/ultimate.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/misc/ultimate.ogg -------------------------------------------------------------------------------- /res/sound/piano/ab1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/ab1.ogg -------------------------------------------------------------------------------- /res/sound/piano/ab2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/ab2.ogg -------------------------------------------------------------------------------- /res/sound/piano/ab3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/ab3.ogg -------------------------------------------------------------------------------- /res/sound/piano/ab4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/ab4.ogg -------------------------------------------------------------------------------- /res/sound/piano/ab5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/ab5.ogg -------------------------------------------------------------------------------- /res/sound/piano/ab6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/ab6.ogg -------------------------------------------------------------------------------- /res/sound/piano/ab7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/ab7.ogg -------------------------------------------------------------------------------- /res/sound/piano/ab8.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/ab8.ogg -------------------------------------------------------------------------------- /res/sound/piano/an1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/an1.ogg -------------------------------------------------------------------------------- /res/sound/piano/an2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/an2.ogg -------------------------------------------------------------------------------- /res/sound/piano/an3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/an3.ogg -------------------------------------------------------------------------------- /res/sound/piano/an4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/an4.ogg -------------------------------------------------------------------------------- /res/sound/piano/an5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/an5.ogg -------------------------------------------------------------------------------- /res/sound/piano/an6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/an6.ogg -------------------------------------------------------------------------------- /res/sound/piano/an7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/an7.ogg -------------------------------------------------------------------------------- /res/sound/piano/an8.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/an8.ogg -------------------------------------------------------------------------------- /res/sound/piano/bb1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/bb1.ogg -------------------------------------------------------------------------------- /res/sound/piano/bb2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/bb2.ogg -------------------------------------------------------------------------------- /res/sound/piano/bb3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/bb3.ogg -------------------------------------------------------------------------------- /res/sound/piano/bb4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/bb4.ogg -------------------------------------------------------------------------------- /res/sound/piano/bb5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/bb5.ogg -------------------------------------------------------------------------------- /res/sound/piano/bb6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/bb6.ogg -------------------------------------------------------------------------------- /res/sound/piano/bb7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/bb7.ogg -------------------------------------------------------------------------------- /res/sound/piano/bb8.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/bb8.ogg -------------------------------------------------------------------------------- /res/sound/piano/bn1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/bn1.ogg -------------------------------------------------------------------------------- /res/sound/piano/bn2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/bn2.ogg -------------------------------------------------------------------------------- /res/sound/piano/bn3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/bn3.ogg -------------------------------------------------------------------------------- /res/sound/piano/bn4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/bn4.ogg -------------------------------------------------------------------------------- /res/sound/piano/bn5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/bn5.ogg -------------------------------------------------------------------------------- /res/sound/piano/bn6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/bn6.ogg -------------------------------------------------------------------------------- /res/sound/piano/bn7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/bn7.ogg -------------------------------------------------------------------------------- /res/sound/piano/bn8.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/bn8.ogg -------------------------------------------------------------------------------- /res/sound/piano/cn1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/cn1.ogg -------------------------------------------------------------------------------- /res/sound/piano/cn2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/cn2.ogg -------------------------------------------------------------------------------- /res/sound/piano/cn3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/cn3.ogg -------------------------------------------------------------------------------- /res/sound/piano/cn4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/cn4.ogg -------------------------------------------------------------------------------- /res/sound/piano/cn5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/cn5.ogg -------------------------------------------------------------------------------- /res/sound/piano/cn6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/cn6.ogg -------------------------------------------------------------------------------- /res/sound/piano/cn7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/cn7.ogg -------------------------------------------------------------------------------- /res/sound/piano/cn8.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/cn8.ogg -------------------------------------------------------------------------------- /res/sound/piano/cn9.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/cn9.ogg -------------------------------------------------------------------------------- /res/sound/piano/db1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/db1.ogg -------------------------------------------------------------------------------- /res/sound/piano/db2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/db2.ogg -------------------------------------------------------------------------------- /res/sound/piano/db3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/db3.ogg -------------------------------------------------------------------------------- /res/sound/piano/db4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/db4.ogg -------------------------------------------------------------------------------- /res/sound/piano/db5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/db5.ogg -------------------------------------------------------------------------------- /res/sound/piano/db6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/db6.ogg -------------------------------------------------------------------------------- /res/sound/piano/db7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/db7.ogg -------------------------------------------------------------------------------- /res/sound/piano/db8.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/db8.ogg -------------------------------------------------------------------------------- /res/sound/piano/dn1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/dn1.ogg -------------------------------------------------------------------------------- /res/sound/piano/dn2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/dn2.ogg -------------------------------------------------------------------------------- /res/sound/piano/dn3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/dn3.ogg -------------------------------------------------------------------------------- /res/sound/piano/dn4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/dn4.ogg -------------------------------------------------------------------------------- /res/sound/piano/dn5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/dn5.ogg -------------------------------------------------------------------------------- /res/sound/piano/dn6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/dn6.ogg -------------------------------------------------------------------------------- /res/sound/piano/dn7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/dn7.ogg -------------------------------------------------------------------------------- /res/sound/piano/dn8.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/dn8.ogg -------------------------------------------------------------------------------- /res/sound/piano/eb1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/eb1.ogg -------------------------------------------------------------------------------- /res/sound/piano/eb2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/eb2.ogg -------------------------------------------------------------------------------- /res/sound/piano/eb3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/eb3.ogg -------------------------------------------------------------------------------- /res/sound/piano/eb4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/eb4.ogg -------------------------------------------------------------------------------- /res/sound/piano/eb5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/eb5.ogg -------------------------------------------------------------------------------- /res/sound/piano/eb6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/eb6.ogg -------------------------------------------------------------------------------- /res/sound/piano/eb7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/eb7.ogg -------------------------------------------------------------------------------- /res/sound/piano/eb8.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/eb8.ogg -------------------------------------------------------------------------------- /res/sound/piano/en1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/en1.ogg -------------------------------------------------------------------------------- /res/sound/piano/en2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/en2.ogg -------------------------------------------------------------------------------- /res/sound/piano/en3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/en3.ogg -------------------------------------------------------------------------------- /res/sound/piano/en4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/en4.ogg -------------------------------------------------------------------------------- /res/sound/piano/en5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/en5.ogg -------------------------------------------------------------------------------- /res/sound/piano/en6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/en6.ogg -------------------------------------------------------------------------------- /res/sound/piano/en7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/en7.ogg -------------------------------------------------------------------------------- /res/sound/piano/en8.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/en8.ogg -------------------------------------------------------------------------------- /res/sound/piano/fn1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/fn1.ogg -------------------------------------------------------------------------------- /res/sound/piano/fn2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/fn2.ogg -------------------------------------------------------------------------------- /res/sound/piano/fn3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/fn3.ogg -------------------------------------------------------------------------------- /res/sound/piano/fn4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/fn4.ogg -------------------------------------------------------------------------------- /res/sound/piano/fn5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/fn5.ogg -------------------------------------------------------------------------------- /res/sound/piano/fn6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/fn6.ogg -------------------------------------------------------------------------------- /res/sound/piano/fn7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/fn7.ogg -------------------------------------------------------------------------------- /res/sound/piano/fn8.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/fn8.ogg -------------------------------------------------------------------------------- /res/sound/piano/gb1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/gb1.ogg -------------------------------------------------------------------------------- /res/sound/piano/gb2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/gb2.ogg -------------------------------------------------------------------------------- /res/sound/piano/gb3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/gb3.ogg -------------------------------------------------------------------------------- /res/sound/piano/gb4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/gb4.ogg -------------------------------------------------------------------------------- /res/sound/piano/gb5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/gb5.ogg -------------------------------------------------------------------------------- /res/sound/piano/gb6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/gb6.ogg -------------------------------------------------------------------------------- /res/sound/piano/gb7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/gb7.ogg -------------------------------------------------------------------------------- /res/sound/piano/gb8.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/gb8.ogg -------------------------------------------------------------------------------- /res/sound/piano/gn1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/gn1.ogg -------------------------------------------------------------------------------- /res/sound/piano/gn2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/gn2.ogg -------------------------------------------------------------------------------- /res/sound/piano/gn3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/gn3.ogg -------------------------------------------------------------------------------- /res/sound/piano/gn4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/gn4.ogg -------------------------------------------------------------------------------- /res/sound/piano/gn5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/gn5.ogg -------------------------------------------------------------------------------- /res/sound/piano/gn6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/gn6.ogg -------------------------------------------------------------------------------- /res/sound/piano/gn7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/gn7.ogg -------------------------------------------------------------------------------- /res/sound/piano/gn8.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/piano/gn8.ogg -------------------------------------------------------------------------------- /res/sound/violin/ab3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/ab3.ogg -------------------------------------------------------------------------------- /res/sound/violin/ab4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/ab4.ogg -------------------------------------------------------------------------------- /res/sound/violin/ab5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/ab5.ogg -------------------------------------------------------------------------------- /res/sound/violin/ab6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/ab6.ogg -------------------------------------------------------------------------------- /res/sound/violin/an3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/an3.ogg -------------------------------------------------------------------------------- /res/sound/violin/an4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/an4.ogg -------------------------------------------------------------------------------- /res/sound/violin/an5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/an5.ogg -------------------------------------------------------------------------------- /res/sound/violin/an6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/an6.ogg -------------------------------------------------------------------------------- /res/sound/violin/bb3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/bb3.ogg -------------------------------------------------------------------------------- /res/sound/violin/bb4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/bb4.ogg -------------------------------------------------------------------------------- /res/sound/violin/bb5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/bb5.ogg -------------------------------------------------------------------------------- /res/sound/violin/bb6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/bb6.ogg -------------------------------------------------------------------------------- /res/sound/violin/bn3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/bn3.ogg -------------------------------------------------------------------------------- /res/sound/violin/bn4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/bn4.ogg -------------------------------------------------------------------------------- /res/sound/violin/bn5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/bn5.ogg -------------------------------------------------------------------------------- /res/sound/violin/bn6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/bn6.ogg -------------------------------------------------------------------------------- /res/sound/violin/cn4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/cn4.ogg -------------------------------------------------------------------------------- /res/sound/violin/cn5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/cn5.ogg -------------------------------------------------------------------------------- /res/sound/violin/cn6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/cn6.ogg -------------------------------------------------------------------------------- /res/sound/violin/cn7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/cn7.ogg -------------------------------------------------------------------------------- /res/sound/violin/db4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/db4.ogg -------------------------------------------------------------------------------- /res/sound/violin/db5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/db5.ogg -------------------------------------------------------------------------------- /res/sound/violin/db6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/db6.ogg -------------------------------------------------------------------------------- /res/sound/violin/db7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/db7.ogg -------------------------------------------------------------------------------- /res/sound/violin/dn4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/dn4.ogg -------------------------------------------------------------------------------- /res/sound/violin/dn5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/dn5.ogg -------------------------------------------------------------------------------- /res/sound/violin/dn6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/dn6.ogg -------------------------------------------------------------------------------- /res/sound/violin/dn7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/dn7.ogg -------------------------------------------------------------------------------- /res/sound/violin/eb4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/eb4.ogg -------------------------------------------------------------------------------- /res/sound/violin/eb5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/eb5.ogg -------------------------------------------------------------------------------- /res/sound/violin/eb6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/eb6.ogg -------------------------------------------------------------------------------- /res/sound/violin/en4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/en4.ogg -------------------------------------------------------------------------------- /res/sound/violin/en5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/en5.ogg -------------------------------------------------------------------------------- /res/sound/violin/en6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/en6.ogg -------------------------------------------------------------------------------- /res/sound/violin/fn4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/fn4.ogg -------------------------------------------------------------------------------- /res/sound/violin/fn5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/fn5.ogg -------------------------------------------------------------------------------- /res/sound/violin/fn6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/fn6.ogg -------------------------------------------------------------------------------- /res/sound/violin/gb4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/gb4.ogg -------------------------------------------------------------------------------- /res/sound/violin/gb5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/gb5.ogg -------------------------------------------------------------------------------- /res/sound/violin/gb6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/gb6.ogg -------------------------------------------------------------------------------- /res/sound/violin/gn3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/gn3.ogg -------------------------------------------------------------------------------- /res/sound/violin/gn4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/gn4.ogg -------------------------------------------------------------------------------- /res/sound/violin/gn5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/gn5.ogg -------------------------------------------------------------------------------- /res/sound/violin/gn6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/violin/gn6.ogg -------------------------------------------------------------------------------- /res/sound/voice/bcreep.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/bcreep.ogg -------------------------------------------------------------------------------- /res/sound/voice/bfreeze.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/bfreeze.ogg -------------------------------------------------------------------------------- /res/sound/voice/bgod.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/bgod.ogg -------------------------------------------------------------------------------- /res/sound/voice/binsult.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/binsult.ogg -------------------------------------------------------------------------------- /res/sound/voice/bjustice.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/bjustice.ogg -------------------------------------------------------------------------------- /res/sound/voice/bradio.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/bradio.ogg -------------------------------------------------------------------------------- /res/sound/voice/hiss1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/hiss1.ogg -------------------------------------------------------------------------------- /res/sound/voice/hiss2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/hiss2.ogg -------------------------------------------------------------------------------- /res/sound/voice/hiss3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/hiss3.ogg -------------------------------------------------------------------------------- /res/sound/voice/hiss4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/hiss4.ogg -------------------------------------------------------------------------------- /res/sound/voice/hiss5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/hiss5.ogg -------------------------------------------------------------------------------- /res/sound/voice/hiss6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/hiss6.ogg -------------------------------------------------------------------------------- /res/sound/voice/lowHiss1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/lowHiss1.ogg -------------------------------------------------------------------------------- /res/sound/voice/lowHiss2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/lowHiss2.ogg -------------------------------------------------------------------------------- /res/sound/voice/lowHiss3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/lowHiss3.ogg -------------------------------------------------------------------------------- /res/sound/voice/lowHiss4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/lowHiss4.ogg -------------------------------------------------------------------------------- /res/sound/voice/mapple.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/mapple.ogg -------------------------------------------------------------------------------- /res/sound/voice/mcatch.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/mcatch.ogg -------------------------------------------------------------------------------- /res/sound/voice/mcoming.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/mcoming.ogg -------------------------------------------------------------------------------- /res/sound/voice/mflies.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/mflies.ogg -------------------------------------------------------------------------------- /res/sound/voice/mhelp.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/mhelp.ogg -------------------------------------------------------------------------------- /res/sound/voice/minjured.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/minjured.ogg -------------------------------------------------------------------------------- /res/sound/voice/minsult.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/minsult.ogg -------------------------------------------------------------------------------- /res/sound/voice/mlive.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/mlive.ogg -------------------------------------------------------------------------------- /res/sound/voice/mlost.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/mlost.ogg -------------------------------------------------------------------------------- /res/sound/voice/mno.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/mno.ogg -------------------------------------------------------------------------------- /res/sound/voice/mradar.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/mradar.ogg -------------------------------------------------------------------------------- /res/sound/voice/msurgeon.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/voice/msurgeon.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/,.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/,.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/..ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/..ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/a.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/a.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/access.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/access.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/across.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/across.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/adios.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/adios.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/aft.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/aft.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/after.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/after.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/agent.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/agent.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/ai.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/ai.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/alarm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/alarm.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/alert.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/alert.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/alien.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/alien.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/all.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/all.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/alpha.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/alpha.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/am.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/am.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/amigo.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/amigo.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/an.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/an.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/and.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/and.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/any.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/any.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/are.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/are.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/area.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/area.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/arm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/arm.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/armed.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/armed.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/armor.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/armor.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/armory.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/armory.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/array.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/array.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/arrest.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/arrest.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/asimov.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/asimov.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/ass.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/ass.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/at.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/at.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/atomic.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/atomic.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/away.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/away.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/b.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/b.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/back.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/back.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/bad.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/bad.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/bag.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/bag.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/bailey.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/bailey.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/base.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/base.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/bay.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/bay.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/be.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/be.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/been.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/been.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/before.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/before.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/beyond.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/beyond.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/bitch.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/bitch.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/black.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/black.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/blast.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/blast.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/blue.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/blue.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/bottom.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/bottom.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/bravo.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/bravo.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/breach.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/breach.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/break.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/break.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/bridge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/bridge.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/bust.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/bust.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/but.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/but.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/button.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/button.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/bypass.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/bypass.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/c.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/c.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/cable.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/cable.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/call.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/call.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/called.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/called.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/canal.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/canal.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/cap.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/cap.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/cargo.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/cargo.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/center.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/center.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/centi.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/centi.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/check.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/check.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/clear.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/clear.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/close.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/close.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/clown.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/clown.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/code.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/code.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/coded.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/coded.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/come.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/come.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/connor.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/connor.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/coomer.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/coomer.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/core.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/core.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/coward.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/coward.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/crew.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/crew.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/cross.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/cross.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/cunt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/cunt.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/cyborg.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/cyborg.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/d.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/d.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/damage.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/damage.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/danger.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/danger.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/day.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/day.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/deeoo.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/deeoo.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/delta.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/delta.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/denied.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/denied.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/did.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/did.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/die.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/die.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/do.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/do.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/e.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/e.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/ed.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/ed.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/f.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/f.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/for.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/for.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/g.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/g.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/gas.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/gas.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/get.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/get.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/go.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/go.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/got.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/got.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/gun.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/gun.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/h.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/h.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/has.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/has.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/hit.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/hot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/hot.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/i.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/i.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/in.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/in.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/ing.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/ing.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/is.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/is.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/it.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/it.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/j.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/j.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/k.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/k.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/key.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/key.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/kit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/kit.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/l.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/l.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/lab.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/lab.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/law.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/law.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/lie.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/lie.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/m.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/m.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/man.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/man.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/may.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/may.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/me.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/me.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/men.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/men.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/my.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/my.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/n.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/n.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/no.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/no.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/not.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/not.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/now.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/now.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/o.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/o.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/of.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/of.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/ok.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/ok.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/on.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/on.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/one.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/one.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/out.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/out.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/p.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/p.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/pal.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/pal.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/q.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/q.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/r.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/r.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/red.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/red.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/run.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/run.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/s.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/s.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/six.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/six.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/son.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/son.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/sub.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/sub.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/t.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/t.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/ten.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/ten.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/the.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/the.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/to.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/to.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/top.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/top.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/two.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/two.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/u.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/u.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/up.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/up.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/us.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/us.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/usa.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/usa.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/use.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/use.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/v.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/v.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/vox.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/vox.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/w.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/w.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/we.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/we.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/x.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/x.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/y.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/y.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/yes.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/yes.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/you.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/you.ogg -------------------------------------------------------------------------------- /res/sound/vox_fem/z.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/vox_fem/z.ogg -------------------------------------------------------------------------------- /res/sound/weapons/tap.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/res/sound/weapons/tap.ogg -------------------------------------------------------------------------------- /setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/setup.bat -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/setup.sh -------------------------------------------------------------------------------- /strings/names/ai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/strings/names/ai.json -------------------------------------------------------------------------------- /strings/names/carp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/strings/names/carp.json -------------------------------------------------------------------------------- /strings/names/clown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/strings/names/clown.json -------------------------------------------------------------------------------- /strings/names/first.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/strings/names/first.json -------------------------------------------------------------------------------- /strings/names/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/strings/names/golem.json -------------------------------------------------------------------------------- /strings/names/last.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/strings/names/last.json -------------------------------------------------------------------------------- /strings/names/mime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/strings/names/mime.json -------------------------------------------------------------------------------- /strings/names/verbs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/strings/names/verbs.json -------------------------------------------------------------------------------- /strings/sillytips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/strings/sillytips.json -------------------------------------------------------------------------------- /strings/tips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/strings/tips.json -------------------------------------------------------------------------------- /testmap.bsmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluespess/tgstation-remake/HEAD/testmap.bsmap -------------------------------------------------------------------------------- /tools/map-converter/convert.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node %~dp0\index.js %1 4 | 5 | pause 6 | --------------------------------------------------------------------------------