├── .gitattributes ├── src ├── bp │ ├── scripts │ │ ├── features │ │ │ ├── gore │ │ │ │ └── index.ts │ │ │ ├── guns │ │ │ │ └── index.ts │ │ │ ├── mobs │ │ │ │ ├── scp096 │ │ │ │ │ ├── index.ts │ │ │ │ │ └── shared.ts │ │ │ │ ├── scp173 │ │ │ │ │ └── shared.ts │ │ │ │ ├── scp427 │ │ │ │ │ └── index.ts │ │ │ │ ├── scp106 │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── config │ │ │ │ ├── index.ts │ │ │ │ └── config_editor_item.ts │ │ │ ├── input_devices │ │ │ │ ├── keypad │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── the_unknown │ │ │ │ ├── index.ts │ │ │ │ └── unknown_core │ │ │ │ │ └── index.ts │ │ │ ├── doors │ │ │ │ └── index.ts │ │ │ ├── lkdn │ │ │ │ └── index.ts │ │ │ ├── gun_attachment │ │ │ │ └── index.ts │ │ │ ├── fnet │ │ │ │ └── index.ts │ │ │ ├── throwables │ │ │ │ └── index.ts │ │ │ ├── blast_door │ │ │ │ └── index.ts │ │ │ ├── cctv │ │ │ │ └── index.ts │ │ │ ├── item_components │ │ │ │ ├── index.ts │ │ │ │ └── dont_get_durability_damage_on_hit.ts │ │ │ ├── misc │ │ │ │ └── index.ts │ │ │ └── block_components │ │ │ │ └── cannot_be_placed_by_player.ts │ │ ├── logic │ │ │ ├── blocks │ │ │ │ ├── index.ts │ │ │ │ └── door │ │ │ │ │ └── index.ts │ │ │ ├── weapons │ │ │ │ ├── index.ts │ │ │ │ └── guns │ │ │ │ │ └── index.ts │ │ │ ├── config │ │ │ │ └── index.ts │ │ │ ├── advancedItem │ │ │ │ └── index.ts │ │ │ └── ammo │ │ │ │ └── index.ts │ │ ├── old_feature_upgrades │ │ │ └── v1 │ │ │ │ ├── index.ts │ │ │ │ └── blocks │ │ │ │ └── index.ts │ │ └── main.ts │ ├── functions │ │ └── scpdy │ │ │ └── _user │ │ │ ├── d_party.mcfunction │ │ │ └── get_testing_armors.mcfunction │ ├── pack_icon.png │ ├── structures │ │ └── scpdy │ │ │ ├── bunker_1.mcstructure │ │ │ ├── bunker_2.mcstructure │ │ │ ├── bunker_3.mcstructure │ │ │ ├── pve_field_1.mcstructure │ │ │ ├── pvp_field_1.mcstructure │ │ │ ├── pvp_field_2.mcstructure │ │ │ ├── pvp_field_3.mcstructure │ │ │ ├── ruin_sand_1.mcstructure │ │ │ ├── ruin_sand_2.mcstructure │ │ │ ├── ruin_sand_3.mcstructure │ │ │ ├── ruin_forest_1.mcstructure │ │ │ ├── ruin_forest_2.mcstructure │ │ │ ├── ruin_forest_3.mcstructure │ │ │ ├── ruin_grass_1.mcstructure │ │ │ ├── ruin_grass_2.mcstructure │ │ │ ├── ruin_grass_3.mcstructure │ │ │ ├── ruin_snowy_1.mcstructure │ │ │ ├── ruin_snowy_2.mcstructure │ │ │ ├── ruin_snowy_3.mcstructure │ │ │ ├── random_house_1.mcstructure │ │ │ ├── the_unknown_field.mcstructure │ │ │ ├── underground_ruin_1.mcstructure │ │ │ ├── underground_ruin_2.mcstructure │ │ │ └── the_unknown_field_air.mcstructure │ ├── loot_tables │ │ └── scpdy │ │ │ ├── blocks │ │ │ ├── alphanumeric_sign.json │ │ │ └── toilet_paper_holder_empty.json │ │ │ ├── entities │ │ │ └── remove_scp096_paper_bag.json │ │ │ ├── guns │ │ │ └── m17_single.json │ │ │ └── ammo │ │ │ └── few_9mm_ammo.json │ ├── animations │ │ ├── debug.sa.json │ │ ├── blast_door │ │ │ └── blast_door.sa.json │ │ ├── unknown_core │ │ │ └── all.sa.json │ │ ├── player_frag_grenade.sa.json │ │ ├── toilet_rideable.sa.json │ │ ├── scp │ │ │ ├── scp106_trail.sa.json │ │ │ └── scp001_proto_singularity.sa.json │ │ └── auto_frag_grenade.sa.json │ ├── entities │ │ └── instant_despawn_dummy.se.json │ └── features │ │ ├── scpdy_bunker_1_feature.json │ │ ├── scpdy_bunker_2_feature.json │ │ ├── scpdy_bunker_3_feature.json │ │ ├── scpdy_ruin_sand_1_feature.json │ │ ├── scpdy_ruin_sand_2_feature.json │ │ ├── scpdy_ruin_sand_3_feature.json │ │ ├── scpdy_ruin_grass_1_feature.json │ │ ├── scpdy_ruin_grass_2_feature.json │ │ ├── scpdy_ruin_grass_3_feature.json │ │ ├── scpdy_ruin_snowy_1_feature.json │ │ ├── scpdy_ruin_snowy_2_feature.json │ │ ├── scpdy_ruin_snowy_3_feature.json │ │ ├── scpdy_ruin_forest_1_feature.json │ │ ├── scpdy_ruin_forest_2_feature.json │ │ └── scpdy_ruin_forest_3_feature.json └── rp │ ├── pack_icon.png │ ├── textures │ ├── scpdy │ │ ├── empty.png │ │ ├── knife.png │ │ ├── white.png │ │ ├── fp_arms.png │ │ ├── guns │ │ │ ├── m17.png │ │ │ ├── p90.png │ │ │ ├── g36c.png │ │ │ ├── m17_fp.png │ │ │ ├── m17_icon.png │ │ │ ├── m17_mag_icon.png │ │ │ └── legacy │ │ │ │ ├── mp5 │ │ │ │ └── mag.png │ │ │ │ ├── mp5sd │ │ │ │ ├── tex.png │ │ │ │ └── icon.png │ │ │ │ └── t5000 │ │ │ │ ├── mag.png │ │ │ │ ├── tex.png │ │ │ │ ├── icon.png │ │ │ │ └── scope.png │ │ ├── cctv │ │ │ ├── camera.png │ │ │ ├── server.png │ │ │ ├── monitor.png │ │ │ ├── camera_icon.png │ │ │ ├── linker_icon.png │ │ │ ├── server_icon.png │ │ │ ├── tablet_icon.png │ │ │ └── monitor_icon.png │ │ ├── knife_icon.png │ │ ├── mobs │ │ │ ├── f_tro.png │ │ │ ├── f_mtf_epsilon11.png │ │ │ ├── f_researcher_lbb.png │ │ │ ├── f_sentry_turret.png │ │ │ ├── f_researcher_bb607.png │ │ │ ├── f_researcher_lc45.png │ │ │ ├── f_classd_basic_male_1.png │ │ │ ├── f_classd_basic_male_2.png │ │ │ ├── f_classd_basic_male_3.png │ │ │ ├── f_classd_basic_female_1.png │ │ │ ├── f_classd_basic_female_2.png │ │ │ ├── f_classd_basic_female_3.png │ │ │ ├── f_researcher_basic_male_1.png │ │ │ ├── f_researcher_basic_male_2.png │ │ │ └── f_researcher_basic_female_1.png │ │ ├── scp │ │ │ ├── scp005.png │ │ │ ├── scp049.png │ │ │ ├── scp106.png │ │ │ ├── scp5167.png │ │ │ ├── scp427 │ │ │ │ ├── open.png │ │ │ │ ├── closed.png │ │ │ │ ├── scp427_1.png │ │ │ │ ├── scp427_1_flesh_raw.png │ │ │ │ └── scp427_1_flesh_cooked.png │ │ │ ├── labels │ │ │ │ └── scp096.png │ │ │ ├── scp096 │ │ │ │ ├── scp096.png │ │ │ │ ├── face_hider.png │ │ │ │ ├── scp096_dmg_1.png │ │ │ │ ├── scp096_dmg_2.png │ │ │ │ └── scp096_dmg_3.png │ │ │ ├── scp173 │ │ │ │ └── default.png │ │ │ ├── scp001_proto │ │ │ │ ├── normal.png │ │ │ │ ├── damaged.png │ │ │ │ └── singularity.png │ │ │ ├── scp096_1_wand_icon.png │ │ │ └── scp096_paper_bag_icon.png │ │ ├── frag_grenade.png │ │ ├── gore │ │ │ ├── gib_chop.png │ │ │ ├── gib_head.png │ │ │ ├── gib_limb.png │ │ │ ├── blood_stain_1.png │ │ │ ├── blood_stain_2.png │ │ │ ├── gib_head_icon.png │ │ │ └── small_flesh_piece.png │ │ ├── handcuffs_3d.png │ │ ├── items │ │ │ ├── config.png │ │ │ ├── wrench.png │ │ │ ├── ammo │ │ │ │ ├── 50bmg.png │ │ │ │ ├── 556mm.png │ │ │ │ ├── 9mm.png │ │ │ │ ├── 12shell.png │ │ │ │ ├── 762x51.png │ │ │ │ ├── 338magnum.png │ │ │ │ └── packs │ │ │ │ │ ├── pack_9mm.png │ │ │ │ │ ├── pack_50bmg.png │ │ │ │ │ ├── pack_556mm.png │ │ │ │ │ ├── pack_762x51.png │ │ │ │ │ ├── pack_12shell.png │ │ │ │ │ └── pack_338magnum.png │ │ │ ├── handcuffs.png │ │ │ ├── fnet_manager.png │ │ │ ├── entity_damager.png │ │ │ ├── entity_killer.png │ │ │ ├── entity_remover.png │ │ │ ├── faction_changer.png │ │ │ ├── tame_scpf_mob.png │ │ │ ├── toilet_paper_roll.png │ │ │ ├── corpse_perpetuator.png │ │ │ ├── keycards │ │ │ │ ├── keycard_o5.png │ │ │ │ ├── keycard_lvl_0.png │ │ │ │ ├── keycard_lvl_1.png │ │ │ │ ├── keycard_lvl_2.png │ │ │ │ ├── keycard_lvl_3.png │ │ │ │ ├── keycard_lvl_4.png │ │ │ │ ├── keycard_lvl_5.png │ │ │ │ └── unique_keycard.png │ │ │ └── mob_stationary_toggler.png │ │ ├── armors │ │ │ ├── tac_boots.png │ │ │ ├── tro_helmet.png │ │ │ ├── tac_body_armor.png │ │ │ ├── tac_boots_icon.png │ │ │ ├── tac_cbrn_helmet.png │ │ │ ├── tro_helmet_icon.png │ │ │ ├── tac_body_armor_icon.png │ │ │ ├── tac_leg_protector.png │ │ │ ├── tac_cbrn_helmet_icon.png │ │ │ └── tac_leg_protector_icon.png │ │ ├── bullet_standard.png │ │ ├── lkdn │ │ │ ├── lkdn_door.png │ │ │ └── lkdn_panel.png │ │ ├── particles │ │ │ ├── heal.png │ │ │ ├── shine.png │ │ │ ├── bullet_hole.png │ │ │ ├── corrosion.png │ │ │ ├── bullet_trace.png │ │ │ ├── muzzle_flash.png │ │ │ ├── muzzle_smoke.png │ │ │ ├── scp106_trail.png │ │ │ ├── gore │ │ │ │ ├── blood_mist.png │ │ │ │ ├── blood_explosion.png │ │ │ │ └── blood_splash_small.png │ │ │ ├── scp096_leap_smoke.png │ │ │ ├── singularity_energy.png │ │ │ ├── unknown_core │ │ │ │ ├── heal.png │ │ │ │ ├── plasma_ring.png │ │ │ │ ├── sword_magic.png │ │ │ │ ├── thunder_beam.png │ │ │ │ ├── plasma_sparkle.png │ │ │ │ ├── question_spell.png │ │ │ │ ├── meteorite_marker.png │ │ │ │ └── plasma_ultra_ring.png │ │ │ ├── scp096_leap_smoke_old.png │ │ │ ├── bullet_casing_drop_var0.png │ │ │ └── blast_door_preview_point.png │ │ ├── blast_door │ │ │ ├── door_1.png │ │ │ ├── door_2.png │ │ │ ├── door_1_icon.png │ │ │ └── door_2_icon.png │ │ ├── blocks │ │ │ ├── decor │ │ │ │ ├── alarm.png │ │ │ │ ├── bench.png │ │ │ │ ├── radio.png │ │ │ │ ├── sink.png │ │ │ │ ├── trash.png │ │ │ │ ├── vent.png │ │ │ │ ├── landmine.png │ │ │ │ ├── laptop.png │ │ │ │ ├── printer.png │ │ │ │ ├── radiator.png │ │ │ │ ├── signs │ │ │ │ │ ├── a.png │ │ │ │ │ ├── b.png │ │ │ │ │ ├── c.png │ │ │ │ │ ├── d.png │ │ │ │ │ ├── gun.png │ │ │ │ │ ├── stop.png │ │ │ │ │ ├── caution.png │ │ │ │ │ ├── maint.png │ │ │ │ │ ├── no_gun.png │ │ │ │ │ ├── toilet.png │ │ │ │ │ ├── cafeteria.png │ │ │ │ │ ├── toilet_male.png │ │ │ │ │ └── toilet_female.png │ │ │ │ ├── toilet.png │ │ │ │ ├── microscope.png │ │ │ │ ├── panel_fan.png │ │ │ │ ├── razor_wire.png │ │ │ │ ├── steel_beam.png │ │ │ │ ├── thick_pipe.png │ │ │ │ ├── tissue_box.png │ │ │ │ ├── decor_vent_1.png │ │ │ │ ├── decor_vent_2.png │ │ │ │ ├── file_cabinet.png │ │ │ │ ├── floor_grate.png │ │ │ │ ├── hanging_lamp.png │ │ │ │ ├── office_desk.png │ │ │ │ ├── small_light.png │ │ │ │ ├── steel_truss.png │ │ │ │ ├── wall_monitor.png │ │ │ │ ├── wooden_crate.png │ │ │ │ ├── bulletin_board.png │ │ │ │ ├── cardboard_box_1.png │ │ │ │ ├── coffee_machine.png │ │ │ │ ├── office_chairs │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ └── 3.png │ │ │ │ ├── water_dispenser.png │ │ │ │ ├── floor_grate_trap.png │ │ │ │ ├── warehouse_light_1.png │ │ │ │ ├── shelves │ │ │ │ │ ├── shelf_2_toys.png │ │ │ │ │ ├── shelf_1_books.png │ │ │ │ │ ├── shelf_1_empty.png │ │ │ │ │ ├── shelf_1_plant.png │ │ │ │ │ ├── shelf_2_books.png │ │ │ │ │ ├── shelf_2_empty.png │ │ │ │ │ ├── shelf_2_tools.png │ │ │ │ │ └── shelf_1_painting.png │ │ │ │ ├── toilet_paper_holder.png │ │ │ │ ├── connec_tables │ │ │ │ │ ├── table_1.png │ │ │ │ │ └── table_2.png │ │ │ │ └── plushies │ │ │ │ │ ├── scp096_plushie.png │ │ │ │ │ ├── scp106_plushie.png │ │ │ │ │ ├── klampas_plushie.png │ │ │ │ │ ├── scp427_1_plushie.png │ │ │ │ │ └── scp5167_plushie.png │ │ │ ├── misc │ │ │ │ ├── workbench.png │ │ │ │ ├── rb_placeholder.png │ │ │ │ ├── dash_block │ │ │ │ │ ├── side.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── top_active.png │ │ │ │ │ └── top_inactive.png │ │ │ │ ├── old_upgrade_notice.png │ │ │ │ └── alphanumeric_chars │ │ │ │ │ ├── black.png │ │ │ │ │ └── white.png │ │ │ ├── solid │ │ │ │ ├── cushion.png │ │ │ │ ├── duct_block.png │ │ │ │ ├── lead_block.png │ │ │ │ ├── concrete │ │ │ │ │ ├── gray.png │ │ │ │ │ └── black.png │ │ │ │ ├── floor_tiles.png │ │ │ │ ├── generic_floor.png │ │ │ │ ├── lamps │ │ │ │ │ ├── lamp_1.png │ │ │ │ │ └── lamp_2.png │ │ │ │ ├── magnet_block.png │ │ │ │ ├── steel_block.png │ │ │ │ ├── treadplate_up.png │ │ │ │ ├── caution_block_1.png │ │ │ │ ├── caution_block_2.png │ │ │ │ ├── caution_block_3.png │ │ │ │ ├── treadplate_side.png │ │ │ │ ├── facility_wall │ │ │ │ │ ├── top.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── middle.png │ │ │ │ │ ├── blue │ │ │ │ │ │ ├── top.png │ │ │ │ │ │ ├── middle.png │ │ │ │ │ │ ├── bottom_1.png │ │ │ │ │ │ ├── bottom_2.png │ │ │ │ │ │ ├── bottom_3.png │ │ │ │ │ │ └── generic.png │ │ │ │ │ ├── brown │ │ │ │ │ │ ├── top.png │ │ │ │ │ │ └── bottom.png │ │ │ │ │ ├── cyan │ │ │ │ │ │ ├── top.png │ │ │ │ │ │ └── bottom.png │ │ │ │ │ ├── gray │ │ │ │ │ │ ├── top.png │ │ │ │ │ │ └── bottom.png │ │ │ │ │ ├── middle_2.png │ │ │ │ │ ├── mint │ │ │ │ │ │ ├── top.png │ │ │ │ │ │ └── bottom.png │ │ │ │ │ └── orange │ │ │ │ │ │ ├── top.png │ │ │ │ │ │ └── bottom.png │ │ │ │ ├── gray_floor_tiles.png │ │ │ │ ├── heavy_walls │ │ │ │ │ ├── wall_1.png │ │ │ │ │ ├── wall_2.png │ │ │ │ │ ├── wall_1_top.png │ │ │ │ │ ├── wall_2_top.png │ │ │ │ │ ├── wall_1_bottom.png │ │ │ │ │ └── wall_2_bottom.png │ │ │ │ ├── single_floor_tile.png │ │ │ │ ├── black_checker_tiles.png │ │ │ │ ├── exterior_bricks │ │ │ │ │ ├── top.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ └── middle.png │ │ │ │ ├── gray_single_floor_tile.png │ │ │ │ ├── office_ceilings │ │ │ │ │ ├── ceiling_1.png │ │ │ │ │ └── ceiling_2.png │ │ │ │ └── reinforced_panels │ │ │ │ │ ├── panel_1.png │ │ │ │ │ ├── panel_2.png │ │ │ │ │ ├── panel_3.png │ │ │ │ │ └── panel_4.png │ │ │ └── decals │ │ │ │ ├── decal_blood_1.png │ │ │ │ ├── decal_blood_2.png │ │ │ │ ├── decal_smudge_1.png │ │ │ │ ├── decal_smudge_2.png │ │ │ │ ├── decal_smudge_3.png │ │ │ │ └── decal_smudge_4.png │ │ ├── frag_grenade_icon.png │ │ ├── gunatts │ │ │ ├── holosight.png │ │ │ ├── lasersight.png │ │ │ ├── suppressor.png │ │ │ ├── vforegrip.png │ │ │ ├── lasersightp.png │ │ │ └── reddotsight.png │ │ ├── input_devices │ │ │ ├── kr_1.png │ │ │ ├── kr_2.png │ │ │ ├── btn_1.png │ │ │ ├── btn_2.png │ │ │ └── keypad │ │ │ │ ├── on.png │ │ │ │ ├── icon.png │ │ │ │ └── off.png │ │ ├── corrosion_projectile.png │ │ ├── doors │ │ │ ├── easy │ │ │ │ ├── easy_door_1.png │ │ │ │ ├── easy_door_2.png │ │ │ │ ├── easy_door_3.png │ │ │ │ ├── easy_door_1_o5.png │ │ │ │ ├── easy_door_2_o5.png │ │ │ │ ├── easy_door_3_o5.png │ │ │ │ ├── easy_door_1_lvl_0.png │ │ │ │ ├── easy_door_1_lvl_1.png │ │ │ │ ├── easy_door_1_lvl_2.png │ │ │ │ ├── easy_door_1_lvl_3.png │ │ │ │ ├── easy_door_1_lvl_4.png │ │ │ │ ├── easy_door_1_lvl_5.png │ │ │ │ ├── easy_door_2_lvl_0.png │ │ │ │ ├── easy_door_2_lvl_1.png │ │ │ │ ├── easy_door_2_lvl_2.png │ │ │ │ ├── easy_door_2_lvl_3.png │ │ │ │ ├── easy_door_2_lvl_4.png │ │ │ │ ├── easy_door_2_lvl_5.png │ │ │ │ ├── easy_door_3_lvl_0.png │ │ │ │ ├── easy_door_3_lvl_1.png │ │ │ │ ├── easy_door_3_lvl_2.png │ │ │ │ ├── easy_door_3_lvl_3.png │ │ │ │ ├── easy_door_3_lvl_4.png │ │ │ │ └── easy_door_3_lvl_5.png │ │ │ ├── framed │ │ │ │ └── framed_door_1.png │ │ │ ├── sliding │ │ │ │ ├── sliding_door_1.png │ │ │ │ ├── sliding_door_2.png │ │ │ │ ├── sliding_door_3.png │ │ │ │ ├── sliding_door_4.png │ │ │ │ └── sliding_door_5.png │ │ │ ├── dividing │ │ │ │ ├── dividing_door_1.png │ │ │ │ └── dividing_door_2.png │ │ │ └── standard │ │ │ │ ├── standard_door_1.png │ │ │ │ └── standard_door_2.png │ │ ├── the_unknown │ │ │ ├── unknown_dirt.png │ │ │ ├── unknown_golem.png │ │ │ ├── unknown_spider.png │ │ │ ├── unknown_zombie.png │ │ │ ├── unknown_breeze │ │ │ │ ├── _.png │ │ │ │ ├── eyes.png │ │ │ │ └── wind.png │ │ │ └── unknown_core │ │ │ │ ├── plasma.png │ │ │ │ └── unknown_core.png │ │ └── display_contents │ │ │ └── 16_9 │ │ │ ├── 16_9_sample.png │ │ │ ├── 16_9_display_content_1.png │ │ │ ├── 16_9_display_content_2.png │ │ │ ├── 16_9_display_content_3.png │ │ │ ├── 16_9_display_content_4.png │ │ │ └── 16_9_display_content_5.png │ └── flipbook_textures.json │ ├── sounds │ └── scpdy │ │ ├── guns │ │ ├── click.ogg │ │ ├── dryfire.ogg │ │ ├── load_1.ogg │ │ ├── load_2.ogg │ │ ├── load_3.ogg │ │ ├── rattle.ogg │ │ ├── headshot_1.ogg │ │ ├── headshot_2.ogg │ │ ├── headshot_3.ogg │ │ ├── headshot_4.ogg │ │ ├── headshot_5.ogg │ │ ├── hitmarker.ogg │ │ ├── mag_add_1.ogg │ │ ├── mag_remove_1.ogg │ │ ├── strong_fire.ogg │ │ ├── unholster_1.ogg │ │ ├── pistol_cocking.ogg │ │ ├── bullet_hit_block_1.ogg │ │ ├── bullet_hit_block_2.ogg │ │ ├── bullet_hit_block_3.ogg │ │ ├── bullet_hit_block_4.ogg │ │ ├── specific │ │ │ ├── g36_fire.ogg │ │ │ ├── m17_fire.ogg │ │ │ └── p90_fire.ogg │ │ ├── suppressed_fire_1.ogg │ │ ├── suppressed_fire_2.ogg │ │ └── suppressed_fire_3.ogg │ │ ├── misc │ │ ├── alarm.ogg │ │ ├── woosh.ogg │ │ ├── boom_1.ogg │ │ ├── fart_1.ogg │ │ ├── fart_2.ogg │ │ ├── fart_3.ogg │ │ ├── fart_4.ogg │ │ ├── fart_5.ogg │ │ ├── fart_6.ogg │ │ ├── fart_7.ogg │ │ ├── fart_8.ogg │ │ ├── punch_1.ogg │ │ ├── punch_2.ogg │ │ ├── punch_3.ogg │ │ ├── body_fall.ogg │ │ ├── faucet_water.ogg │ │ ├── computer_hit_1.ogg │ │ ├── computer_hit_2.ogg │ │ ├── computer_hit_3.ogg │ │ ├── machine_noise_1.ogg │ │ ├── monster_attack.ogg │ │ ├── small_light_off.ogg │ │ ├── small_light_on.ogg │ │ ├── faucet_water_drip.ogg │ │ ├── toilet_flush_hard.ogg │ │ ├── turret_activation.ogg │ │ ├── bullet_casing_drop_1.ogg │ │ ├── bullet_casing_drop_2.ogg │ │ ├── bullet_casing_drop_3.ogg │ │ ├── bullet_casing_drop_4.ogg │ │ ├── bullet_casing_drop_5.ogg │ │ ├── toilet_flush_normal.ogg │ │ └── fan_rotation_moderate.ogg │ │ ├── gore │ │ ├── drop_1.ogg │ │ ├── drop_2.ogg │ │ ├── drop_3.ogg │ │ ├── explode.ogg │ │ ├── impact.ogg │ │ ├── small_1.ogg │ │ ├── small_2.ogg │ │ └── splash.ogg │ │ ├── scp │ │ ├── scp106 │ │ │ ├── dive.ogg │ │ │ ├── attack.ogg │ │ │ ├── retreat.ogg │ │ │ ├── step_1.ogg │ │ │ ├── step_2.ogg │ │ │ ├── step_3.ogg │ │ │ ├── abduction.ogg │ │ │ ├── ambient_1.ogg │ │ │ ├── ambient_2.ogg │ │ │ ├── ambient_3.ogg │ │ │ ├── ambient_4.ogg │ │ │ ├── emerge_fast.ogg │ │ │ └── emerge_slow.ogg │ │ ├── scp096 │ │ │ ├── death.ogg │ │ │ ├── attack_1.ogg │ │ │ ├── attack_2.ogg │ │ │ ├── ambient_calm_1.ogg │ │ │ ├── ambient_calm_2.ogg │ │ │ ├── ambient_calm_3.ogg │ │ │ ├── ambient_calm_4.ogg │ │ │ ├── ambient_angry_1.ogg │ │ │ ├── ambient_angry_2.ogg │ │ │ ├── ambient_angry_3.ogg │ │ │ ├── ambient_angry_4.ogg │ │ │ ├── ambient_angry_5.ogg │ │ │ └── triggered_scream.ogg │ │ ├── scp173 │ │ │ ├── attack.ogg │ │ │ └── spawn.ogg │ │ ├── scp5167 │ │ │ ├── attack.ogg │ │ │ ├── death.ogg │ │ │ ├── ambient_1.ogg │ │ │ ├── ambient_2.ogg │ │ │ └── ambient_3.ogg │ │ ├── scp427 │ │ │ └── heartbeat.ogg │ │ └── scp001_proto │ │ │ ├── death.ogg │ │ │ ├── hurt_1.ogg │ │ │ ├── hurt_2.ogg │ │ │ ├── ambient_1.ogg │ │ │ ├── ambient_2.ogg │ │ │ ├── jumpscare.ogg │ │ │ └── singularity.ogg │ │ ├── mobs │ │ ├── f_tro │ │ │ ├── angry_1.ogg │ │ │ └── angry_2.ogg │ │ └── f_mtf_epsilon11 │ │ │ ├── angry_1.ogg │ │ │ ├── angry_2.ogg │ │ │ ├── angry_3.ogg │ │ │ ├── angry_4.ogg │ │ │ ├── death.ogg │ │ │ ├── ambient_1.ogg │ │ │ ├── ambient_2.ogg │ │ │ ├── ambient_3.ogg │ │ │ ├── ambient_4.ogg │ │ │ ├── ambient_5.ogg │ │ │ ├── ambient_6.ogg │ │ │ ├── ambient_7.ogg │ │ │ └── ambient_8.ogg │ │ ├── weapons │ │ ├── guns │ │ │ ├── drop.ogg │ │ │ ├── dry.ogg │ │ │ ├── equip_mag.ogg │ │ │ ├── gm6 │ │ │ │ ├── reload.ogg │ │ │ │ ├── shoot_distant.ogg │ │ │ │ └── shoot_nearby.ogg │ │ │ ├── hk21 │ │ │ │ ├── shoot.ogg │ │ │ │ └── reload.ogg │ │ │ ├── m4a1 │ │ │ │ ├── shoot.ogg │ │ │ │ ├── reload.ogg │ │ │ │ └── reload_tac.ogg │ │ │ ├── mp5sd │ │ │ │ ├── shoot.ogg │ │ │ │ ├── ch_pull.ogg │ │ │ │ ├── ch_slap.ogg │ │ │ │ ├── mag_attach.ogg │ │ │ │ └── mag_remove.ogg │ │ │ ├── spas12 │ │ │ │ ├── pump.ogg │ │ │ │ ├── shoot.ogg │ │ │ │ ├── reload_1.ogg │ │ │ │ ├── reload_2.ogg │ │ │ │ └── reload_3.ogg │ │ │ ├── ammo_pack_load.ogg │ │ │ ├── glock17 │ │ │ │ ├── reload.ogg │ │ │ │ ├── shoot.ogg │ │ │ │ └── reload_old.ogg │ │ │ ├── mag_load_ammo_1.ogg │ │ │ ├── mag_load_ammo_2.ogg │ │ │ ├── mag_load_ammo_3.ogg │ │ │ ├── t5000 │ │ │ │ ├── bolt_open.ogg │ │ │ │ ├── bolt_close.ogg │ │ │ │ ├── mag_attach.ogg │ │ │ │ ├── mag_remove.ogg │ │ │ │ ├── shoot_distant.ogg │ │ │ │ └── shoot_nearby.ogg │ │ │ └── trigger_click.ogg │ │ └── frag_grenade │ │ │ ├── pick.ogg │ │ │ ├── pull.ogg │ │ │ ├── hit_1.ogg │ │ │ ├── hit_2.ogg │ │ │ ├── hit_3.ogg │ │ │ └── throw.ogg │ │ ├── footsteps │ │ ├── mtf_step_1.ogg │ │ ├── mtf_step_2.ogg │ │ └── mtf_step_3.ogg │ │ ├── interact │ │ ├── laptop_open.ogg │ │ ├── lever_flip.ogg │ │ ├── pick_item_2.ogg │ │ ├── button_click.ogg │ │ ├── keypad_correct.ogg │ │ ├── laptop_close.ogg │ │ ├── keypad_incorrect.ogg │ │ ├── keycard_reader_deny.ogg │ │ ├── keycard_reader_accept.ogg │ │ └── keypad_incorrect_loud.ogg │ │ ├── door │ │ ├── lockdown_door_open.ogg │ │ ├── standard_door_open.ogg │ │ ├── futuristic_door_open.ogg │ │ ├── lockdown_door_close.ogg │ │ ├── standard_door_close.ogg │ │ ├── classic_door_1_close_1.ogg │ │ ├── classic_door_1_close_2.ogg │ │ ├── classic_door_1_close_3.ogg │ │ ├── classic_door_1_open_1.ogg │ │ ├── classic_door_1_open_2.ogg │ │ ├── classic_door_1_open_3.ogg │ │ ├── classic_door_2_close_1.ogg │ │ ├── classic_door_2_close_2.ogg │ │ ├── classic_door_2_close_3.ogg │ │ ├── classic_door_2_open_1.ogg │ │ ├── classic_door_2_open_2.ogg │ │ ├── classic_door_2_open_3.ogg │ │ ├── classic_door_3_close_1.ogg │ │ ├── classic_door_3_close_2.ogg │ │ ├── classic_door_3_close_3.ogg │ │ ├── classic_door_3_open_1.ogg │ │ ├── classic_door_3_open_2.ogg │ │ ├── classic_door_3_open_3.ogg │ │ ├── futuristic_door_close.ogg │ │ └── standard_door_close_metal.ogg │ │ ├── projectile │ │ ├── ricochet_1.ogg │ │ ├── ricochet_2.ogg │ │ ├── ricochet_3.ogg │ │ └── ricochet_4.ogg │ │ ├── blast_door │ │ ├── classic_open_1.ogg │ │ ├── classic_open_2.ogg │ │ ├── classic_open_3.ogg │ │ ├── classic_close_1.ogg │ │ ├── classic_close_2.ogg │ │ └── classic_close_3.ogg │ │ ├── music │ │ ├── the_unknown_battle_1.ogg │ │ ├── the_unknown_battle_2.ogg │ │ └── the_unknown_battle_3.ogg │ │ └── the_unknown │ │ └── unknown_core │ │ ├── scream_1.ogg │ │ ├── scream_2.ogg │ │ ├── scream_3.ogg │ │ ├── scream_4.ogg │ │ ├── plasma_rapid.ogg │ │ ├── plasma_ultra.ogg │ │ ├── sword_enpower.ogg │ │ ├── sword_woosh.ogg │ │ ├── thunder_beam.ogg │ │ ├── plasma_powerful.ogg │ │ └── sword_magic_fly.ogg │ ├── animations │ ├── blank.animation.json │ ├── keypad.animation.json │ ├── blast_door │ │ └── blast_door.animation.json │ ├── dropped_weapon │ │ └── dropped_m17.animation.json │ ├── knife_item.animation.json │ └── corrosion_projectile.animation.json │ ├── render_controllers │ ├── guns │ │ ├── p90.rc.json │ │ └── g36c.rc.json │ ├── mobs │ │ ├── f_tro.rc.json │ │ └── f_mtf_epsilon11.rc.json │ ├── standard.rc.json │ ├── handcuffs_3d.rc.json │ ├── gunatts │ │ ├── holosight.rc.json │ │ ├── vforegrip.rc.json │ │ └── lasersight.rc.json │ ├── humanoid_lead_locators.rc.json │ ├── scp │ │ ├── scp001_proto.rc.json │ │ └── scp106.rc.json │ ├── fp_arms.rc.json │ └── fp_sniper_scope.rc.json │ └── animation_controllers │ └── cctv │ └── cctv_camera.cac.json ├── pnpm-workspace.yaml ├── .prettierrc ├── .vscode ├── extensions.json └── snippets.code-snippets ├── mcpacker.config.mjs ├── media ├── banner.webp └── logo.webp ├── .gitignore ├── .prettierignore ├── .github └── ISSUE_TEMPLATE │ └── question.md ├── .editorconfig └── tools └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /src/bp/scripts/features/gore/index.ts: -------------------------------------------------------------------------------- 1 | import "./gore"; 2 | -------------------------------------------------------------------------------- /src/bp/scripts/features/guns/index.ts: -------------------------------------------------------------------------------- 1 | import "./m17"; 2 | -------------------------------------------------------------------------------- /src/bp/scripts/logic/blocks/index.ts: -------------------------------------------------------------------------------- 1 | import "./door"; 2 | -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | onlyBuiltDependencies: 2 | - esbuild 3 | -------------------------------------------------------------------------------- /src/bp/scripts/logic/blocks/door/index.ts: -------------------------------------------------------------------------------- 1 | import "./standardDoor"; 2 | -------------------------------------------------------------------------------- /src/bp/scripts/old_feature_upgrades/v1/index.ts: -------------------------------------------------------------------------------- 1 | import "./blocks"; 2 | -------------------------------------------------------------------------------- /src/bp/functions/scpdy/_user/d_party.mcfunction: -------------------------------------------------------------------------------- 1 | scriptevent scpdy:d_party 2 | -------------------------------------------------------------------------------- /src/bp/scripts/features/mobs/scp096/index.ts: -------------------------------------------------------------------------------- 1 | import "./scp096"; 2 | import "./wand"; 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": true, 3 | "printWidth": 100, 4 | "endOfLine": "lf" 5 | } 6 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["blueglassblock.better-json5"] 3 | } 4 | -------------------------------------------------------------------------------- /src/bp/scripts/logic/weapons/index.ts: -------------------------------------------------------------------------------- 1 | // TODO: Upgrade guns 2 | 3 | import "./guns"; 4 | -------------------------------------------------------------------------------- /mcpacker.config.mjs: -------------------------------------------------------------------------------- 1 | import config from "./tools/mcpacker.js"; 2 | 3 | export default config; 4 | -------------------------------------------------------------------------------- /src/bp/functions/scpdy/_user/get_testing_armors.mcfunction: -------------------------------------------------------------------------------- 1 | scriptevent scpdy:get_testing_armors 2 | -------------------------------------------------------------------------------- /src/bp/scripts/features/config/index.ts: -------------------------------------------------------------------------------- 1 | import "./commands"; 2 | import "./config_editor_item"; 3 | -------------------------------------------------------------------------------- /src/bp/scripts/features/input_devices/keypad/index.ts: -------------------------------------------------------------------------------- 1 | import "./keypad"; 2 | import "./placer"; 3 | -------------------------------------------------------------------------------- /src/bp/scripts/features/mobs/scp173/shared.ts: -------------------------------------------------------------------------------- 1 | export const SCP173_ENTITY_TYPE = "lc:scpdy_scp173"; 2 | -------------------------------------------------------------------------------- /src/bp/scripts/features/the_unknown/index.ts: -------------------------------------------------------------------------------- 1 | import "./unknown_core"; 2 | import "./wave_spawner"; 3 | -------------------------------------------------------------------------------- /media/banner.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/media/banner.webp -------------------------------------------------------------------------------- /media/logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/media/logo.webp -------------------------------------------------------------------------------- /src/bp/scripts/features/input_devices/index.ts: -------------------------------------------------------------------------------- 1 | import "./keypad"; 2 | import "./btn"; 3 | import "./kr"; 4 | -------------------------------------------------------------------------------- /src/bp/scripts/logic/weapons/guns/index.ts: -------------------------------------------------------------------------------- 1 | import "./mag"; 2 | import "./MP5-SD"; 3 | import "./T-5000"; 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | dist_*/ 4 | .old/ 5 | .private/ 6 | 7 | .env 8 | *.gif 9 | *.psd 10 | -------------------------------------------------------------------------------- /src/bp/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/pack_icon.png -------------------------------------------------------------------------------- /src/bp/scripts/features/doors/index.ts: -------------------------------------------------------------------------------- 1 | import "./cmd_door"; 2 | import "./easy_door"; 3 | import "./relay_door"; 4 | -------------------------------------------------------------------------------- /src/bp/scripts/features/lkdn/index.ts: -------------------------------------------------------------------------------- 1 | import "./lkdn_alarm"; 2 | import "./lkdn_door"; 3 | import "./lkdn_panel"; 4 | -------------------------------------------------------------------------------- /src/rp/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/pack_icon.png -------------------------------------------------------------------------------- /src/bp/scripts/features/gun_attachment/index.ts: -------------------------------------------------------------------------------- 1 | import "./attachment_support"; 2 | import "./attachment_workbench"; 3 | -------------------------------------------------------------------------------- /src/bp/scripts/features/mobs/scp427/index.ts: -------------------------------------------------------------------------------- 1 | import "./scp427"; 2 | import "./scp427_1_flesh"; 3 | import "./scp427_1"; 4 | -------------------------------------------------------------------------------- /src/bp/scripts/logic/config/index.ts: -------------------------------------------------------------------------------- 1 | // TODO: Upgrade all old scripts and remove old config 2 | 3 | import "./config"; 4 | -------------------------------------------------------------------------------- /src/bp/scripts/features/mobs/scp106/index.ts: -------------------------------------------------------------------------------- 1 | import "./corrosionProjectile"; 2 | import "./scp106"; 3 | import "./trail"; 4 | -------------------------------------------------------------------------------- /src/bp/scripts/features/fnet/index.ts: -------------------------------------------------------------------------------- 1 | import "./fnet"; 2 | import "./fnet_manager_item"; 3 | import "./upgrade_old_fnet_stuff"; 4 | -------------------------------------------------------------------------------- /src/bp/scripts/features/throwables/index.ts: -------------------------------------------------------------------------------- 1 | import "./auto_frag_grenade"; 2 | import "./frag_grenade"; 3 | import "./thrown_head"; 4 | -------------------------------------------------------------------------------- /src/rp/textures/scpdy/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/empty.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/knife.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/white.png -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .github/ 2 | node_modules/ 3 | dist/ 4 | 5 | pnpm-lock.yaml 6 | LICENSE 7 | 8 | *.animation.json 9 | *.geo.json 10 | -------------------------------------------------------------------------------- /src/bp/scripts/features/the_unknown/unknown_core/index.ts: -------------------------------------------------------------------------------- 1 | import "./unknown_core"; 2 | import "./projectiles"; 3 | import "./meteorite"; 4 | -------------------------------------------------------------------------------- /src/bp/scripts/logic/advancedItem/index.ts: -------------------------------------------------------------------------------- 1 | // TODO: Upgrade guns and ammo scripts to get rid of AdvancedItem 2 | 3 | import "./events"; 4 | -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/click.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/click.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/alarm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/alarm.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/woosh.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/woosh.ogg -------------------------------------------------------------------------------- /src/rp/textures/scpdy/fp_arms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/fp_arms.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/guns/m17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/guns/m17.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/guns/p90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/guns/p90.png -------------------------------------------------------------------------------- /src/bp/scripts/features/mobs/scp096/shared.ts: -------------------------------------------------------------------------------- 1 | export const SCP096_ENTITY_TYPE = "lc:scpdy_scp096"; 2 | export const SCP096_1_TAG = "scp096_1"; 3 | -------------------------------------------------------------------------------- /src/bp/scripts/logic/ammo/index.ts: -------------------------------------------------------------------------------- 1 | // TODO: Upgrade ammo scripts 2 | 3 | import "./ammo"; 4 | import "./ammoItem"; 5 | import "./AmmoPack"; 6 | -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/gore/drop_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/gore/drop_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/gore/drop_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/gore/drop_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/gore/drop_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/gore/drop_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/gore/explode.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/gore/explode.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/gore/impact.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/gore/impact.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/gore/small_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/gore/small_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/gore/small_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/gore/small_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/gore/splash.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/gore/splash.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/dryfire.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/dryfire.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/load_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/load_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/load_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/load_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/load_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/load_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/rattle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/rattle.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/boom_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/boom_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/fart_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/fart_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/fart_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/fart_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/fart_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/fart_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/fart_4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/fart_4.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/fart_5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/fart_5.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/fart_6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/fart_6.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/fart_7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/fart_7.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/fart_8.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/fart_8.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/punch_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/punch_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/punch_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/punch_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/punch_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/punch_3.ogg -------------------------------------------------------------------------------- /src/rp/textures/scpdy/cctv/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/cctv/camera.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/cctv/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/cctv/server.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/guns/g36c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/guns/g36c.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/guns/m17_fp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/guns/m17_fp.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/knife_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/knife_icon.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/mobs/f_tro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/mobs/f_tro.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/scp/scp005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/scp/scp005.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/scp/scp049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/scp/scp049.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/scp/scp106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/scp/scp106.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/scp/scp5167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/scp/scp5167.png -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/headshot_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/headshot_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/headshot_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/headshot_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/headshot_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/headshot_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/headshot_4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/headshot_4.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/headshot_5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/headshot_5.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/hitmarker.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/hitmarker.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/mag_add_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/mag_add_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/body_fall.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/body_fall.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp106/dive.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp106/dive.ogg -------------------------------------------------------------------------------- /src/rp/textures/scpdy/cctv/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/cctv/monitor.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/frag_grenade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/frag_grenade.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/gore/gib_chop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/gore/gib_chop.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/gore/gib_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/gore/gib_head.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/gore/gib_limb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/gore/gib_limb.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/guns/m17_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/guns/m17_icon.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/handcuffs_3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/handcuffs_3d.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/config.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/wrench.png -------------------------------------------------------------------------------- /src/bp/scripts/features/blast_door/index.ts: -------------------------------------------------------------------------------- 1 | import "./blast_door"; 2 | import "./dummy_block"; 3 | import "./from_input_device"; 4 | import "./preview"; 5 | -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/mag_remove_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/mag_remove_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/strong_fire.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/strong_fire.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/unholster_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/unholster_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/faucet_water.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/faucet_water.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/mobs/f_tro/angry_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/mobs/f_tro/angry_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/mobs/f_tro/angry_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/mobs/f_tro/angry_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp096/death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp096/death.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp106/attack.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp106/attack.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp106/retreat.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp106/retreat.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp106/step_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp106/step_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp106/step_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp106/step_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp106/step_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp106/step_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp173/attack.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp173/attack.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp173/spawn.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp173/spawn.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp5167/attack.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp5167/attack.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp5167/death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp5167/death.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/drop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/drop.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/dry.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/dry.ogg -------------------------------------------------------------------------------- /src/rp/textures/scpdy/armors/tac_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/armors/tac_boots.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/bullet_standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/bullet_standard.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/cctv/camera_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/cctv/camera_icon.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/cctv/linker_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/cctv/linker_icon.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/cctv/server_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/cctv/server_icon.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/cctv/tablet_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/cctv/tablet_icon.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/ammo/50bmg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/ammo/50bmg.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/ammo/556mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/ammo/556mm.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/ammo/9mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/ammo/9mm.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/handcuffs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/handcuffs.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/lkdn/lkdn_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/lkdn/lkdn_door.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/lkdn/lkdn_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/lkdn/lkdn_panel.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/heal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/heal.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/shine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/shine.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/scp/scp427/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/scp/scp427/open.png -------------------------------------------------------------------------------- /src/bp/structures/scpdy/bunker_1.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/bunker_1.mcstructure -------------------------------------------------------------------------------- /src/bp/structures/scpdy/bunker_2.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/bunker_2.mcstructure -------------------------------------------------------------------------------- /src/bp/structures/scpdy/bunker_3.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/bunker_3.mcstructure -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/footsteps/mtf_step_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/footsteps/mtf_step_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/footsteps/mtf_step_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/footsteps/mtf_step_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/footsteps/mtf_step_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/footsteps/mtf_step_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/pistol_cocking.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/pistol_cocking.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/interact/laptop_open.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/interact/laptop_open.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/interact/lever_flip.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/interact/lever_flip.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/interact/pick_item_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/interact/pick_item_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/computer_hit_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/computer_hit_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/computer_hit_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/computer_hit_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/computer_hit_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/computer_hit_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/machine_noise_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/machine_noise_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/monster_attack.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/monster_attack.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/small_light_off.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/small_light_off.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/small_light_on.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/small_light_on.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp096/attack_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp096/attack_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp096/attack_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp096/attack_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp106/abduction.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp106/abduction.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp106/ambient_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp106/ambient_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp106/ambient_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp106/ambient_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp106/ambient_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp106/ambient_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp106/ambient_4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp106/ambient_4.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp427/heartbeat.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp427/heartbeat.ogg -------------------------------------------------------------------------------- /src/rp/textures/scpdy/armors/tro_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/armors/tro_helmet.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blast_door/door_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blast_door/door_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blast_door/door_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blast_door/door_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/alarm.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/bench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/bench.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/radio.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/sink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/sink.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/trash.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/vent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/vent.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/cctv/monitor_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/cctv/monitor_icon.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/frag_grenade_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/frag_grenade_icon.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/gore/blood_stain_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/gore/blood_stain_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/gore/blood_stain_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/gore/blood_stain_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/gore/gib_head_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/gore/gib_head_icon.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/gunatts/holosight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/gunatts/holosight.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/gunatts/lasersight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/gunatts/lasersight.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/gunatts/suppressor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/gunatts/suppressor.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/gunatts/vforegrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/gunatts/vforegrip.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/guns/m17_mag_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/guns/m17_mag_icon.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/input_devices/kr_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/input_devices/kr_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/input_devices/kr_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/input_devices/kr_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/ammo/12shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/ammo/12shell.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/ammo/762x51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/ammo/762x51.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/fnet_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/fnet_manager.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/scp/labels/scp096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/scp/labels/scp096.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/scp/scp096/scp096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/scp/scp096/scp096.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/scp/scp173/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/scp/scp173/default.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/scp/scp427/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/scp/scp427/closed.png -------------------------------------------------------------------------------- /src/bp/structures/scpdy/pve_field_1.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/pve_field_1.mcstructure -------------------------------------------------------------------------------- /src/bp/structures/scpdy/pvp_field_1.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/pvp_field_1.mcstructure -------------------------------------------------------------------------------- /src/bp/structures/scpdy/pvp_field_2.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/pvp_field_2.mcstructure -------------------------------------------------------------------------------- /src/bp/structures/scpdy/pvp_field_3.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/pvp_field_3.mcstructure -------------------------------------------------------------------------------- /src/bp/structures/scpdy/ruin_sand_1.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/ruin_sand_1.mcstructure -------------------------------------------------------------------------------- /src/bp/structures/scpdy/ruin_sand_2.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/ruin_sand_2.mcstructure -------------------------------------------------------------------------------- /src/bp/structures/scpdy/ruin_sand_3.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/ruin_sand_3.mcstructure -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/lockdown_door_open.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/lockdown_door_open.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/standard_door_open.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/standard_door_open.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/bullet_hit_block_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/bullet_hit_block_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/bullet_hit_block_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/bullet_hit_block_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/bullet_hit_block_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/bullet_hit_block_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/bullet_hit_block_4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/bullet_hit_block_4.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/specific/g36_fire.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/specific/g36_fire.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/specific/m17_fire.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/specific/m17_fire.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/specific/p90_fire.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/specific/p90_fire.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/suppressed_fire_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/suppressed_fire_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/suppressed_fire_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/suppressed_fire_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/guns/suppressed_fire_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/guns/suppressed_fire_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/interact/button_click.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/interact/button_click.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/interact/keypad_correct.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/interact/keypad_correct.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/interact/laptop_close.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/interact/laptop_close.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/faucet_water_drip.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/faucet_water_drip.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/toilet_flush_hard.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/toilet_flush_hard.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/turret_activation.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/turret_activation.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/projectile/ricochet_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/projectile/ricochet_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/projectile/ricochet_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/projectile/ricochet_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/projectile/ricochet_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/projectile/ricochet_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/projectile/ricochet_4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/projectile/ricochet_4.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp001_proto/death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp001_proto/death.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp001_proto/hurt_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp001_proto/hurt_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp001_proto/hurt_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp001_proto/hurt_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp106/emerge_fast.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp106/emerge_fast.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp106/emerge_slow.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp106/emerge_slow.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp5167/ambient_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp5167/ambient_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp5167/ambient_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp5167/ambient_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp5167/ambient_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp5167/ambient_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/equip_mag.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/equip_mag.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/gm6/reload.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/gm6/reload.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/hk21/shoot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/hk21/shoot.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/m4a1/shoot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/m4a1/shoot.ogg -------------------------------------------------------------------------------- /src/rp/textures/scpdy/armors/tac_body_armor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/armors/tac_body_armor.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/armors/tac_boots_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/armors/tac_boots_icon.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/landmine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/landmine.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/laptop.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/printer.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/radiator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/radiator.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/signs/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/signs/a.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/signs/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/signs/b.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/signs/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/signs/c.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/signs/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/signs/d.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/toilet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/toilet.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/misc/workbench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/misc/workbench.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/cushion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/cushion.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/corrosion_projectile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/corrosion_projectile.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/gunatts/lasersightp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/gunatts/lasersightp.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/gunatts/reddotsight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/gunatts/reddotsight.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/guns/legacy/mp5/mag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/guns/legacy/mp5/mag.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/guns/legacy/mp5sd/tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/guns/legacy/mp5sd/tex.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/guns/legacy/t5000/mag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/guns/legacy/t5000/mag.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/guns/legacy/t5000/tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/guns/legacy/t5000/tex.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/input_devices/btn_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/input_devices/btn_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/input_devices/btn_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/input_devices/btn_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/ammo/338magnum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/ammo/338magnum.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/entity_damager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/entity_damager.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/entity_killer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/entity_killer.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/entity_remover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/entity_remover.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/faction_changer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/faction_changer.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/tame_scpf_mob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/tame_scpf_mob.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/mobs/f_mtf_epsilon11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/mobs/f_mtf_epsilon11.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/mobs/f_researcher_lbb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/mobs/f_researcher_lbb.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/mobs/f_sentry_turret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/mobs/f_sentry_turret.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/bullet_hole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/bullet_hole.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/corrosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/corrosion.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/scp/scp096/face_hider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/scp/scp096/face_hider.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/scp/scp427/scp427_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/scp/scp427/scp427_1.png -------------------------------------------------------------------------------- /src/bp/structures/scpdy/ruin_forest_1.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/ruin_forest_1.mcstructure -------------------------------------------------------------------------------- /src/bp/structures/scpdy/ruin_forest_2.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/ruin_forest_2.mcstructure -------------------------------------------------------------------------------- /src/bp/structures/scpdy/ruin_forest_3.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/ruin_forest_3.mcstructure -------------------------------------------------------------------------------- /src/bp/structures/scpdy/ruin_grass_1.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/ruin_grass_1.mcstructure -------------------------------------------------------------------------------- /src/bp/structures/scpdy/ruin_grass_2.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/ruin_grass_2.mcstructure -------------------------------------------------------------------------------- /src/bp/structures/scpdy/ruin_grass_3.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/ruin_grass_3.mcstructure -------------------------------------------------------------------------------- /src/bp/structures/scpdy/ruin_snowy_1.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/ruin_snowy_1.mcstructure -------------------------------------------------------------------------------- /src/bp/structures/scpdy/ruin_snowy_2.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/ruin_snowy_2.mcstructure -------------------------------------------------------------------------------- /src/bp/structures/scpdy/ruin_snowy_3.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/ruin_snowy_3.mcstructure -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/blast_door/classic_open_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/blast_door/classic_open_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/blast_door/classic_open_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/blast_door/classic_open_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/blast_door/classic_open_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/blast_door/classic_open_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/futuristic_door_open.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/futuristic_door_open.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/lockdown_door_close.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/lockdown_door_close.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/standard_door_close.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/standard_door_close.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/interact/keypad_incorrect.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/interact/keypad_incorrect.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/bullet_casing_drop_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/bullet_casing_drop_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/bullet_casing_drop_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/bullet_casing_drop_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/bullet_casing_drop_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/bullet_casing_drop_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/bullet_casing_drop_4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/bullet_casing_drop_4.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/bullet_casing_drop_5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/bullet_casing_drop_5.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/toilet_flush_normal.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/toilet_flush_normal.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp096/ambient_calm_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp096/ambient_calm_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp096/ambient_calm_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp096/ambient_calm_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp096/ambient_calm_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp096/ambient_calm_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp096/ambient_calm_4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp096/ambient_calm_4.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/frag_grenade/pick.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/frag_grenade/pick.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/frag_grenade/pull.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/frag_grenade/pull.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/hk21/reload.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/hk21/reload.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/m4a1/reload.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/m4a1/reload.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/mp5sd/shoot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/mp5sd/shoot.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/spas12/pump.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/spas12/pump.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/spas12/shoot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/spas12/shoot.ogg -------------------------------------------------------------------------------- /src/rp/textures/scpdy/armors/tac_cbrn_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/armors/tac_cbrn_helmet.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/armors/tro_helmet_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/armors/tro_helmet_icon.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blast_door/door_1_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blast_door/door_1_icon.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blast_door/door_2_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blast_door/door_2_icon.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/microscope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/microscope.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/panel_fan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/panel_fan.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/razor_wire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/razor_wire.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/signs/gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/signs/gun.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/signs/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/signs/stop.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/steel_beam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/steel_beam.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/thick_pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/thick_pipe.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/tissue_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/tissue_box.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/duct_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/duct_block.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/lead_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/lead_block.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_3.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/gore/small_flesh_piece.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/gore/small_flesh_piece.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/guns/legacy/mp5sd/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/guns/legacy/mp5sd/icon.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/guns/legacy/t5000/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/guns/legacy/t5000/icon.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/guns/legacy/t5000/scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/guns/legacy/t5000/scope.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/input_devices/keypad/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/input_devices/keypad/on.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/toilet_paper_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/toilet_paper_roll.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/mobs/f_researcher_bb607.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/mobs/f_researcher_bb607.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/mobs/f_researcher_lc45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/mobs/f_researcher_lc45.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/bullet_trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/bullet_trace.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/muzzle_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/muzzle_flash.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/muzzle_smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/muzzle_smoke.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/scp106_trail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/scp106_trail.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/scp/scp001_proto/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/scp/scp001_proto/normal.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/scp/scp096/scp096_dmg_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/scp/scp096/scp096_dmg_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/scp/scp096/scp096_dmg_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/scp/scp096/scp096_dmg_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/scp/scp096/scp096_dmg_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/scp/scp096/scp096_dmg_3.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/scp/scp096_1_wand_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/scp/scp096_1_wand_icon.png -------------------------------------------------------------------------------- /src/bp/structures/scpdy/random_house_1.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/random_house_1.mcstructure -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/blast_door/classic_close_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/blast_door/classic_close_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/blast_door/classic_close_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/blast_door/classic_close_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/blast_door/classic_close_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/blast_door/classic_close_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/classic_door_1_close_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/classic_door_1_close_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/classic_door_1_close_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/classic_door_1_close_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/classic_door_1_close_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/classic_door_1_close_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/classic_door_1_open_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/classic_door_1_open_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/classic_door_1_open_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/classic_door_1_open_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/classic_door_1_open_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/classic_door_1_open_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/classic_door_2_close_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/classic_door_2_close_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/classic_door_2_close_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/classic_door_2_close_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/classic_door_2_close_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/classic_door_2_close_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/classic_door_2_open_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/classic_door_2_open_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/classic_door_2_open_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/classic_door_2_open_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/classic_door_2_open_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/classic_door_2_open_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/classic_door_3_close_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/classic_door_3_close_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/classic_door_3_close_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/classic_door_3_close_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/classic_door_3_close_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/classic_door_3_close_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/classic_door_3_open_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/classic_door_3_open_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/classic_door_3_open_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/classic_door_3_open_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/classic_door_3_open_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/classic_door_3_open_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/futuristic_door_close.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/futuristic_door_close.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/interact/keycard_reader_deny.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/interact/keycard_reader_deny.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/misc/fan_rotation_moderate.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/misc/fan_rotation_moderate.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/angry_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/angry_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/angry_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/angry_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/angry_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/angry_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/angry_4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/angry_4.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/death.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/music/the_unknown_battle_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/music/the_unknown_battle_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/music/the_unknown_battle_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/music/the_unknown_battle_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/music/the_unknown_battle_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/music/the_unknown_battle_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp001_proto/ambient_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp001_proto/ambient_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp001_proto/ambient_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp001_proto/ambient_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp001_proto/jumpscare.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp001_proto/jumpscare.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp001_proto/singularity.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp001_proto/singularity.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp096/ambient_angry_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp096/ambient_angry_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp096/ambient_angry_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp096/ambient_angry_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp096/ambient_angry_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp096/ambient_angry_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp096/ambient_angry_4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp096/ambient_angry_4.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp096/ambient_angry_5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp096/ambient_angry_5.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/scp/scp096/triggered_scream.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/scp/scp096/triggered_scream.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/frag_grenade/hit_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/frag_grenade/hit_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/frag_grenade/hit_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/frag_grenade/hit_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/frag_grenade/hit_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/frag_grenade/hit_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/frag_grenade/throw.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/frag_grenade/throw.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/ammo_pack_load.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/ammo_pack_load.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/glock17/reload.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/glock17/reload.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/glock17/shoot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/glock17/shoot.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/m4a1/reload_tac.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/m4a1/reload_tac.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/mag_load_ammo_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/mag_load_ammo_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/mag_load_ammo_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/mag_load_ammo_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/mag_load_ammo_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/mag_load_ammo_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/mp5sd/ch_pull.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/mp5sd/ch_pull.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/mp5sd/ch_slap.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/mp5sd/ch_slap.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/spas12/reload_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/spas12/reload_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/spas12/reload_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/spas12/reload_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/spas12/reload_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/spas12/reload_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/t5000/bolt_open.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/t5000/bolt_open.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/trigger_click.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/trigger_click.ogg -------------------------------------------------------------------------------- /src/rp/textures/scpdy/armors/tac_body_armor_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/armors/tac_body_armor_icon.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/armors/tac_leg_protector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/armors/tac_leg_protector.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/decor_vent_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/decor_vent_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/decor_vent_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/decor_vent_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/file_cabinet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/file_cabinet.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/floor_grate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/floor_grate.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/hanging_lamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/hanging_lamp.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/office_desk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/office_desk.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/signs/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/signs/caution.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/signs/maint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/signs/maint.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/signs/no_gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/signs/no_gun.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/signs/toilet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/signs/toilet.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/small_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/small_light.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/steel_truss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/steel_truss.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/wall_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/wall_monitor.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/wooden_crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/wooden_crate.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/misc/rb_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/misc/rb_placeholder.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/concrete/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/concrete/gray.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/floor_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/floor_tiles.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/generic_floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/generic_floor.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/lamps/lamp_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/lamps/lamp_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/lamps/lamp_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/lamps/lamp_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/magnet_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/magnet_block.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/steel_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/steel_block.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/treadplate_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/treadplate_up.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_1_o5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_1_o5.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_2_o5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_2_o5.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_3_o5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_3_o5.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/framed/framed_door_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/framed/framed_door_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/input_devices/keypad/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/input_devices/keypad/icon.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/input_devices/keypad/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/input_devices/keypad/off.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/ammo/packs/pack_9mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/ammo/packs/pack_9mm.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/corpse_perpetuator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/corpse_perpetuator.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/keycards/keycard_o5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/keycards/keycard_o5.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/mobs/f_classd_basic_male_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/mobs/f_classd_basic_male_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/mobs/f_classd_basic_male_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/mobs/f_classd_basic_male_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/mobs/f_classd_basic_male_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/mobs/f_classd_basic_male_3.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/gore/blood_mist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/gore/blood_mist.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/scp/scp001_proto/damaged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/scp/scp001_proto/damaged.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/scp/scp096_paper_bag_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/scp/scp096_paper_bag_icon.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/the_unknown/unknown_dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/the_unknown/unknown_dirt.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/the_unknown/unknown_golem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/the_unknown/unknown_golem.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/the_unknown/unknown_spider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/the_unknown/unknown_spider.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/the_unknown/unknown_zombie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/the_unknown/unknown_zombie.png -------------------------------------------------------------------------------- /src/bp/structures/scpdy/the_unknown_field.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/the_unknown_field.mcstructure -------------------------------------------------------------------------------- /src/bp/structures/scpdy/underground_ruin_1.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/underground_ruin_1.mcstructure -------------------------------------------------------------------------------- /src/bp/structures/scpdy/underground_ruin_2.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/underground_ruin_2.mcstructure -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/door/standard_door_close_metal.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/door/standard_door_close_metal.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/interact/keycard_reader_accept.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/interact/keycard_reader_accept.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/interact/keypad_incorrect_loud.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/interact/keypad_incorrect_loud.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/ambient_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/ambient_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/ambient_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/ambient_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/ambient_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/ambient_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/ambient_4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/ambient_4.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/ambient_5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/ambient_5.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/ambient_6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/ambient_6.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/ambient_7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/ambient_7.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/ambient_8.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/mobs/f_mtf_epsilon11/ambient_8.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/gm6/shoot_distant.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/gm6/shoot_distant.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/gm6/shoot_nearby.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/gm6/shoot_nearby.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/mp5sd/mag_attach.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/mp5sd/mag_attach.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/mp5sd/mag_remove.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/mp5sd/mag_remove.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/t5000/bolt_close.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/t5000/bolt_close.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/t5000/mag_attach.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/t5000/mag_attach.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/t5000/mag_remove.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/t5000/mag_remove.ogg -------------------------------------------------------------------------------- /src/rp/textures/scpdy/armors/tac_cbrn_helmet_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/armors/tac_cbrn_helmet_icon.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decals/decal_blood_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decals/decal_blood_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decals/decal_blood_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decals/decal_blood_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decals/decal_smudge_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decals/decal_smudge_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decals/decal_smudge_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decals/decal_smudge_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decals/decal_smudge_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decals/decal_smudge_3.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decals/decal_smudge_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decals/decal_smudge_4.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/bulletin_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/bulletin_board.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/cardboard_box_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/cardboard_box_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/coffee_machine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/coffee_machine.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/office_chairs/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/office_chairs/1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/office_chairs/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/office_chairs/2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/office_chairs/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/office_chairs/3.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/signs/cafeteria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/signs/cafeteria.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/water_dispenser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/water_dispenser.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/misc/dash_block/side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/misc/dash_block/side.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/caution_block_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/caution_block_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/caution_block_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/caution_block_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/caution_block_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/caution_block_3.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/concrete/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/concrete/black.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/treadplate_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/treadplate_side.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_1_lvl_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_1_lvl_0.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_1_lvl_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_1_lvl_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_1_lvl_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_1_lvl_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_1_lvl_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_1_lvl_3.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_1_lvl_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_1_lvl_4.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_1_lvl_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_1_lvl_5.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_2_lvl_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_2_lvl_0.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_2_lvl_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_2_lvl_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_2_lvl_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_2_lvl_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_2_lvl_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_2_lvl_3.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_2_lvl_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_2_lvl_4.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_2_lvl_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_2_lvl_5.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_3_lvl_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_3_lvl_0.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_3_lvl_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_3_lvl_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_3_lvl_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_3_lvl_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_3_lvl_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_3_lvl_3.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_3_lvl_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_3_lvl_4.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/easy/easy_door_3_lvl_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/easy/easy_door_3_lvl_5.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/sliding/sliding_door_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/sliding/sliding_door_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/sliding/sliding_door_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/sliding/sliding_door_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/sliding/sliding_door_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/sliding/sliding_door_3.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/sliding/sliding_door_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/sliding/sliding_door_4.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/sliding/sliding_door_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/sliding/sliding_door_5.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/ammo/packs/pack_50bmg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/ammo/packs/pack_50bmg.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/ammo/packs/pack_556mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/ammo/packs/pack_556mm.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/ammo/packs/pack_762x51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/ammo/packs/pack_762x51.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/keycards/keycard_lvl_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/keycards/keycard_lvl_0.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/keycards/keycard_lvl_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/keycards/keycard_lvl_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/keycards/keycard_lvl_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/keycards/keycard_lvl_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/keycards/keycard_lvl_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/keycards/keycard_lvl_3.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/keycards/keycard_lvl_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/keycards/keycard_lvl_4.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/keycards/keycard_lvl_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/keycards/keycard_lvl_5.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/mob_stationary_toggler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/mob_stationary_toggler.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/mobs/f_classd_basic_female_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/mobs/f_classd_basic_female_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/mobs/f_classd_basic_female_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/mobs/f_classd_basic_female_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/mobs/f_classd_basic_female_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/mobs/f_classd_basic_female_3.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/scp096_leap_smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/scp096_leap_smoke.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/singularity_energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/singularity_energy.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/unknown_core/heal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/unknown_core/heal.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/scp/scp001_proto/singularity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/scp/scp001_proto/singularity.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/the_unknown/unknown_breeze/_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/the_unknown/unknown_breeze/_.png -------------------------------------------------------------------------------- /src/bp/structures/scpdy/the_unknown_field_air.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/bp/structures/scpdy/the_unknown_field_air.mcstructure -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/the_unknown/unknown_core/scream_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/the_unknown/unknown_core/scream_1.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/the_unknown/unknown_core/scream_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/the_unknown/unknown_core/scream_2.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/the_unknown/unknown_core/scream_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/the_unknown/unknown_core/scream_3.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/the_unknown/unknown_core/scream_4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/the_unknown/unknown_core/scream_4.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/glock17/reload_old.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/glock17/reload_old.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/t5000/shoot_distant.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/t5000/shoot_distant.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/weapons/guns/t5000/shoot_nearby.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/weapons/guns/t5000/shoot_nearby.ogg -------------------------------------------------------------------------------- /src/rp/textures/scpdy/armors/tac_leg_protector_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/armors/tac_leg_protector_icon.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/floor_grate_trap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/floor_grate_trap.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/signs/toilet_male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/signs/toilet_male.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/warehouse_light_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/warehouse_light_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/misc/dash_block/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/misc/dash_block/bottom.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/misc/old_upgrade_notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/misc/old_upgrade_notice.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/facility_wall/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/facility_wall/top.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/gray_floor_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/gray_floor_tiles.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/heavy_walls/wall_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/heavy_walls/wall_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/heavy_walls/wall_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/heavy_walls/wall_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/single_floor_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/single_floor_tile.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/dividing/dividing_door_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/dividing/dividing_door_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/dividing/dividing_door_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/dividing/dividing_door_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/standard/standard_door_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/standard/standard_door_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/doors/standard/standard_door_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/doors/standard/standard_door_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/ammo/packs/pack_12shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/ammo/packs/pack_12shell.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/ammo/packs/pack_338magnum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/ammo/packs/pack_338magnum.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/items/keycards/unique_keycard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/items/keycards/unique_keycard.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/mobs/f_researcher_basic_male_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/mobs/f_researcher_basic_male_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/mobs/f_researcher_basic_male_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/mobs/f_researcher_basic_male_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/gore/blood_explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/gore/blood_explosion.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/scp096_leap_smoke_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/scp096_leap_smoke_old.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/scp/scp427/scp427_1_flesh_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/scp/scp427/scp427_1_flesh_raw.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/the_unknown/unknown_breeze/eyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/the_unknown/unknown_breeze/eyes.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/the_unknown/unknown_breeze/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/the_unknown/unknown_breeze/wind.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/the_unknown/unknown_core/plasma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/the_unknown/unknown_core/plasma.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/shelves/shelf_2_toys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/shelves/shelf_2_toys.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/signs/toilet_female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/signs/toilet_female.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/toilet_paper_holder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/toilet_paper_holder.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/misc/dash_block/top_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/misc/dash_block/top_active.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/black_checker_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/black_checker_tiles.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/exterior_bricks/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/exterior_bricks/top.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/facility_wall/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/facility_wall/bottom.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/facility_wall/middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/facility_wall/middle.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/display_contents/16_9/16_9_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/display_contents/16_9/16_9_sample.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/mobs/f_researcher_basic_female_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/mobs/f_researcher_basic_female_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/bullet_casing_drop_var0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/bullet_casing_drop_var0.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/gore/blood_splash_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/gore/blood_splash_small.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/scp/scp427/scp427_1_flesh_cooked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/scp/scp427/scp427_1_flesh_cooked.png -------------------------------------------------------------------------------- /src/bp/scripts/features/mobs/index.ts: -------------------------------------------------------------------------------- 1 | import "./scp001_prototype"; 2 | import "./scp096"; 3 | import "./scp106"; 4 | import "./scp173"; 5 | import "./scp427"; 6 | import "./f_mtf_epsilon11"; 7 | -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/the_unknown/unknown_core/plasma_rapid.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/the_unknown/unknown_core/plasma_rapid.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/the_unknown/unknown_core/plasma_ultra.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/the_unknown/unknown_core/plasma_ultra.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/the_unknown/unknown_core/sword_enpower.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/the_unknown/unknown_core/sword_enpower.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/the_unknown/unknown_core/sword_woosh.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/the_unknown/unknown_core/sword_woosh.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/the_unknown/unknown_core/thunder_beam.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/the_unknown/unknown_core/thunder_beam.ogg -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/connec_tables/table_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/connec_tables/table_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/connec_tables/table_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/connec_tables/table_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/plushies/scp096_plushie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/plushies/scp096_plushie.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/plushies/scp106_plushie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/plushies/scp106_plushie.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/shelves/shelf_1_books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/shelves/shelf_1_books.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/shelves/shelf_1_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/shelves/shelf_1_empty.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/shelves/shelf_1_plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/shelves/shelf_1_plant.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/shelves/shelf_2_books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/shelves/shelf_2_books.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/shelves/shelf_2_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/shelves/shelf_2_empty.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/shelves/shelf_2_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/shelves/shelf_2_tools.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/misc/alphanumeric_chars/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/misc/alphanumeric_chars/black.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/misc/alphanumeric_chars/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/misc/alphanumeric_chars/white.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/misc/dash_block/top_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/misc/dash_block/top_inactive.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/exterior_bricks/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/exterior_bricks/bottom.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/exterior_bricks/middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/exterior_bricks/middle.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/facility_wall/blue/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/facility_wall/blue/top.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/facility_wall/brown/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/facility_wall/brown/top.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/facility_wall/cyan/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/facility_wall/cyan/top.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/facility_wall/gray/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/facility_wall/gray/top.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/facility_wall/middle_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/facility_wall/middle_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/facility_wall/mint/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/facility_wall/mint/top.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/gray_single_floor_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/gray_single_floor_tile.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/heavy_walls/wall_1_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/heavy_walls/wall_1_top.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/heavy_walls/wall_2_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/heavy_walls/wall_2_top.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/blast_door_preview_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/blast_door_preview_point.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/unknown_core/plasma_ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/unknown_core/plasma_ring.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/unknown_core/sword_magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/unknown_core/sword_magic.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/unknown_core/thunder_beam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/unknown_core/thunder_beam.png -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Question 3 | about: Ask a general question 4 | title: 'question: untitled' 5 | labels: question 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/bp/scripts/features/cctv/index.ts: -------------------------------------------------------------------------------- 1 | import "./cctv_linker"; 2 | import "./cctv_tablet"; 3 | import "./cctv_camera"; 4 | import "./cctv_monitor"; 5 | import "./cctv_server"; 6 | import "./tick"; 7 | -------------------------------------------------------------------------------- /src/rp/animations/blank.animation.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "animations": { 4 | "animation.scpdy.blank": { 5 | "loop": false, 6 | "animation_length": 1.0 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/the_unknown/unknown_core/plasma_powerful.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/the_unknown/unknown_core/plasma_powerful.ogg -------------------------------------------------------------------------------- /src/rp/sounds/scpdy/the_unknown/unknown_core/sword_magic_fly.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/sounds/scpdy/the_unknown/unknown_core/sword_magic_fly.ogg -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/plushies/klampas_plushie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/plushies/klampas_plushie.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/plushies/scp427_1_plushie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/plushies/scp427_1_plushie.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/plushies/scp5167_plushie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/plushies/scp5167_plushie.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/decor/shelves/shelf_1_painting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/decor/shelves/shelf_1_painting.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/facility_wall/blue/middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/facility_wall/blue/middle.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/facility_wall/cyan/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/facility_wall/cyan/bottom.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/facility_wall/gray/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/facility_wall/gray/bottom.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/facility_wall/mint/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/facility_wall/mint/bottom.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/facility_wall/orange/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/facility_wall/orange/top.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/heavy_walls/wall_1_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/heavy_walls/wall_1_bottom.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/heavy_walls/wall_2_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/heavy_walls/wall_2_bottom.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/office_ceilings/ceiling_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/office_ceilings/ceiling_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/office_ceilings/ceiling_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/office_ceilings/ceiling_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/reinforced_panels/panel_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/reinforced_panels/panel_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/reinforced_panels/panel_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/reinforced_panels/panel_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/reinforced_panels/panel_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/reinforced_panels/panel_3.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/reinforced_panels/panel_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/reinforced_panels/panel_4.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/unknown_core/plasma_sparkle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/unknown_core/plasma_sparkle.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/unknown_core/question_spell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/unknown_core/question_spell.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/the_unknown/unknown_core/unknown_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/the_unknown/unknown_core/unknown_core.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/facility_wall/blue/bottom_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/facility_wall/blue/bottom_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/facility_wall/blue/bottom_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/facility_wall/blue/bottom_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/facility_wall/blue/bottom_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/facility_wall/blue/bottom_3.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/facility_wall/blue/generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/facility_wall/blue/generic.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/facility_wall/brown/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/facility_wall/brown/bottom.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/blocks/solid/facility_wall/orange/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/blocks/solid/facility_wall/orange/bottom.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/unknown_core/meteorite_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/unknown_core/meteorite_marker.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/particles/unknown_core/plasma_ultra_ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/particles/unknown_core/plasma_ultra_ring.png -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | insert_final_newline = true 6 | end_of_line = lf 7 | charset = utf-8 8 | 9 | [*.md] 10 | indent_style = space 11 | indent_size = 2 12 | -------------------------------------------------------------------------------- /.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- 1 | { 2 | "Import @minecraft/server as `mc`": { 3 | "scope": "javascript,typescript", 4 | "prefix": "mc", 5 | "body": ["import * as mc from \"@minecraft/server\";"], 6 | }, 7 | } 8 | -------------------------------------------------------------------------------- /src/rp/textures/scpdy/display_contents/16_9/16_9_display_content_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/display_contents/16_9/16_9_display_content_1.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/display_contents/16_9/16_9_display_content_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/display_contents/16_9/16_9_display_content_2.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/display_contents/16_9/16_9_display_content_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/display_contents/16_9/16_9_display_content_3.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/display_contents/16_9/16_9_display_content_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/display_contents/16_9/16_9_display_content_4.png -------------------------------------------------------------------------------- /src/rp/textures/scpdy/display_contents/16_9/16_9_display_content_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-studios-mc/scp-dystopia-2.0-attempt/HEAD/src/rp/textures/scpdy/display_contents/16_9/16_9_display_content_5.png -------------------------------------------------------------------------------- /src/bp/scripts/features/item_components/index.ts: -------------------------------------------------------------------------------- 1 | import "./dont_get_durability_damage_on_hit"; 2 | import "./entity_damager"; 3 | import "./entity_killer"; 4 | import "./entity_remover"; 5 | import "./faction_changer"; 6 | -------------------------------------------------------------------------------- /src/bp/scripts/features/misc/index.ts: -------------------------------------------------------------------------------- 1 | import "./d_party_event"; 2 | import "./dropped_weapon"; 3 | import "./mob_bullet"; 4 | import "./rb_anchor"; 5 | import "./set_self_health_event"; 6 | import "./testing_equipment"; 7 | -------------------------------------------------------------------------------- /src/rp/textures/flipbook_textures.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "atlas_tile": "scpdy_dash_block_top_active", 4 | "flipbook_texture": "textures/scpdy/blocks/misc/dash_block/top_active", 5 | "ticks_per_frame": 3 6 | } 7 | ] 8 | -------------------------------------------------------------------------------- /src/bp/loot_tables/scpdy/blocks/alphanumeric_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "pools": [ 3 | { 4 | "rolls": 1, 5 | "entries": [ 6 | { 7 | "type": "item", 8 | "name": "lc:scpdy_alphanumeric_sign_placer" 9 | } 10 | ] 11 | } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /src/bp/loot_tables/scpdy/entities/remove_scp096_paper_bag.json: -------------------------------------------------------------------------------- 1 | { 2 | "pools": [ 3 | { 4 | "rolls": 1, 5 | "entries": [ 6 | { 7 | "type": "item", 8 | "name": "lc:scpdy_scp096_paper_bag" 9 | } 10 | ] 11 | } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /tools/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.base.json", 3 | "compilerOptions": { 4 | "lib": ["es2023"], 5 | "types": ["node"], 6 | "module": "nodenext", 7 | "moduleResolution": "nodenext", 8 | "allowJs": true, 9 | "checkJs": true 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/bp/scripts/main.ts: -------------------------------------------------------------------------------- 1 | // Import legacy modules 2 | import "./logic/advancedItem"; 3 | import "./logic/ammo"; 4 | import "./logic/blocks"; 5 | import "./logic/config"; 6 | import "./logic/weapons"; 7 | 8 | import "./features"; 9 | 10 | import "./old_feature_upgrades/v1"; 11 | -------------------------------------------------------------------------------- /src/bp/animations/debug.sa.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "animations": { 4 | "animation.scpdy.bp.debug.send_msg_loop": { 5 | "animation_length": 0.5, 6 | "loop": true, 7 | "timeline": { 8 | "0.01": ["/say Debugging"] 9 | } 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/rp/animations/keypad.animation.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "animations": { 4 | "animation.scpdy_keypad.general": { 5 | "loop": true, 6 | "bones": { 7 | "root": { 8 | "rotation": [0, "v.rotation_y", 0] 9 | } 10 | } 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /src/rp/animations/blast_door/blast_door.animation.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "animations": { 4 | "animation.scpdy_blast_door.rotation": { 5 | "loop": true, 6 | "bones": { 7 | "root": { 8 | "rotation": [0, "v.y_rot", 0] 9 | } 10 | } 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /src/rp/render_controllers/guns/p90.rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "render_controllers": { 4 | "controller.render.scpdy.gun.p90.tp": { 5 | "geometry": "Geometry.p90_tp", 6 | "materials": [{ "*": "Material.p90_tp" }], 7 | "textures": ["Texture.p90_tp"] 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/rp/render_controllers/mobs/f_tro.rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "render_controllers": { 4 | "controller.render.scpdy.f_tro": { 5 | "geometry": "Geometry.default", 6 | "materials": [{ "*": "Material.default" }], 7 | "textures": ["Texture.default"] 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/rp/render_controllers/guns/g36c.rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "render_controllers": { 4 | "controller.render.scpdy.gun.g36c.tp": { 5 | "geometry": "Geometry.g36c_tp", 6 | "materials": [{ "*": "Material.g36c_tp" }], 7 | "textures": ["Texture.g36c_tp"] 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/rp/render_controllers/standard.rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "render_controllers": { 4 | "controller.render.scpdy.standard": { 5 | "geometry": "Geometry.default", 6 | "materials": [{ "*": "Material.default" }], 7 | "textures": ["Texture.default"] 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/bp/animations/blast_door/blast_door.sa.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "animations": { 4 | "animation.scpdy.bp.blast_door.lockdown": { 5 | "animation_length": 4.0, 6 | "loop": true, 7 | "timeline": { 8 | "0.5": ["/scriptevent blast_door:lockdown"] 9 | } 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/bp/animations/unknown_core/all.sa.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "animations": { 4 | "animation.scpdy.bp.unknown_core.script_update": { 5 | "animation_length": 0.25, 6 | "loop": true, 7 | "timeline": { 8 | "0.2": ["@s unknown_core:script_update"] 9 | } 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/rp/render_controllers/handcuffs_3d.rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "render_controllers": { 4 | "controller.render.scpdy.handcuffs_3d": { 5 | "geometry": "Geometry.handcuffs", 6 | "materials": [{ "*": "Material.handcuffs" }], 7 | "textures": ["Texture.handcuffs"] 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/bp/animations/player_frag_grenade.sa.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "animations": { 4 | "animation.scpdy.bp.player_frag_grenade.countdown": { 5 | "animation_length": 0.1, 6 | "loop": true, 7 | "timeline": { 8 | "0.0": ["@s player_frag_grenade:countdown"] 9 | } 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/bp/animations/toilet_rideable.sa.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "animations": { 4 | "animation.scpdy.bp.toilet_rideable.script_update": { 5 | "animation_length": 0.2, 6 | "loop": true, 7 | "timeline": { 8 | "0.1": ["@s toilet_rideable:update_script"] 9 | } 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/rp/render_controllers/mobs/f_mtf_epsilon11.rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "render_controllers": { 4 | "controller.render.scpdy.f_mtf_epsilon11": { 5 | "geometry": "Geometry.default", 6 | "materials": [{ "*": "Material.default" }], 7 | "textures": ["Texture.default"] 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/bp/animations/scp/scp106_trail.sa.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "animations": { 4 | "animation.scpdy.bp.scp106_trail.script_update": { 5 | "animation_length": 0.3, 6 | "loop": true, 7 | "timeline": { 8 | "0.15": ["/scriptevent scpdy_scp106_trail:update"] 9 | } 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/bp/animations/auto_frag_grenade.sa.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "animations": { 4 | "animation.scpdy.bp.auto_frag_grenade.script_update": { 5 | "animation_length": 0.2, 6 | "loop": true, 7 | "timeline": { 8 | "0.1": ["/scriptevent scpdy_auto_frag_grenade:update"] 9 | } 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/rp/animations/dropped_weapon/dropped_m17.animation.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "animations": { 4 | "animation.scpdy.dropped_m17.general": { 5 | "loop": true, 6 | "bones": { 7 | "gun": { 8 | "rotation": ["-90+(v.yaw ?? 0)", 0, 90], 9 | "position": [5, -11.325, 1] 10 | } 11 | } 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /src/rp/animations/knife_item.animation.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "animations": { 4 | "animation.scpdy_knife.fp_general": { 5 | "loop": true, 6 | "bones": { 7 | "knife": { 8 | "rotation": [-56.23967, 41.1514, -93.02264], 9 | "position": [3.06809, 1.4575, 1.58316] 10 | } 11 | } 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /src/rp/render_controllers/gunatts/holosight.rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "render_controllers": { 4 | "controller.render.scpdy.gunatt.holosight": { 5 | "geometry": "Geometry.gunatt_holosight", 6 | "materials": [{ "*": "Material.gunatt_holosight" }], 7 | "textures": ["Texture.gunatt_holosight"] 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/rp/render_controllers/gunatts/vforegrip.rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "render_controllers": { 4 | "controller.render.scpdy.gunatt.vforegrip": { 5 | "geometry": "Geometry.gunatt_vforegrip", 6 | "materials": [{ "*": "Material.gunatt_vforegrip" }], 7 | "textures": ["Texture.gunatt_vforegrip"] 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/rp/render_controllers/humanoid_lead_locators.rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "render_controllers": { 4 | "controller.render.scpdy.humanoid_lead_locators": { 5 | "geometry": "Geometry.humanoid_lead_locators", 6 | "materials": [{ "*": "Material.default" }], 7 | "textures": ["Texture.default"] 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/rp/render_controllers/scp/scp001_proto.rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "render_controllers": { 4 | "controller.render.scpdy.scp001_proto": { 5 | "geometry": "Geometry.default", 6 | "materials": [{ "*": "Material.default" }], 7 | "textures": ["v.is_damaged ? Texture.damaged : Texture.normal"] 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/bp/animations/scp/scp001_proto_singularity.sa.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "animations": { 4 | "animation.scpdy.bp.scp001_proto_singularity.inhale": { 5 | "animation_length": 0.2, 6 | "loop": true, 7 | "timeline": { 8 | "0.1": ["/scriptevent scpdy:scp001_proto_singularity_inhale"] 9 | } 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/bp/loot_tables/scpdy/guns/m17_single.json: -------------------------------------------------------------------------------- 1 | { 2 | "pools": [ 3 | { 4 | "rolls": 1, 5 | "entries": [ 6 | { 7 | "type": "item", 8 | "name": "lc:scpdy_gun_m17", 9 | "functions": [ 10 | { 11 | "function": "set_count", 12 | "count": 1 13 | } 14 | ] 15 | } 16 | ] 17 | } 18 | ] 19 | } 20 | -------------------------------------------------------------------------------- /src/rp/render_controllers/fp_arms.rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "render_controllers": { 4 | "controller.render.scpdy.attachable.fp_arms": { 5 | "geometry": "Geometry.fp_arms", 6 | "materials": [ 7 | { 8 | "*": "Material.fp_arms" 9 | } 10 | ], 11 | "textures": ["Texture.fp_arms"] 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/rp/render_controllers/gunatts/lasersight.rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "render_controllers": { 4 | "controller.render.scpdy.gunatt.lasersight": { 5 | "geometry": "Geometry.gunatt_lasersight", 6 | "materials": [{ "*": "Material.gunatt_lasersight" }], 7 | "textures": ["Texture.gunatt_lasersight"] 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/bp/loot_tables/scpdy/ammo/few_9mm_ammo.json: -------------------------------------------------------------------------------- 1 | { 2 | "pools": [ 3 | { 4 | "rolls": 1, 5 | "entries": [ 6 | { 7 | "type": "item", 8 | "name": "lc:scpdy_ammo_9mm", 9 | "functions": [ 10 | { 11 | "function": "set_count", 12 | "count": 5 13 | } 14 | ] 15 | } 16 | ] 17 | } 18 | ] 19 | } 20 | -------------------------------------------------------------------------------- /src/bp/scripts/features/block_components/cannot_be_placed_by_player.ts: -------------------------------------------------------------------------------- 1 | import * as mc from "@minecraft/server"; 2 | 3 | mc.system.beforeEvents.startup.subscribe((event) => { 4 | event.blockComponentRegistry.registerCustomComponent("scpdy:cannot_be_placed_by_player", { 5 | beforeOnPlayerPlace(arg) { 6 | arg.cancel = true; 7 | }, 8 | }); 9 | }); 10 | -------------------------------------------------------------------------------- /src/bp/scripts/old_feature_upgrades/v1/blocks/index.ts: -------------------------------------------------------------------------------- 1 | import "./upgrade_v1_boolean_door"; 2 | import "./upgrade_v1_button"; 3 | import "./upgrade_v1_command_door"; 4 | import "./upgrade_v1_keycard_reader"; 5 | import "./upgrade_v1_lockdown_alarm"; 6 | import "./upgrade_v1_lockdown_door"; 7 | import "./upgrade_v1_lockdown_panel"; 8 | import "./upgrade_v1_mech_door"; 9 | -------------------------------------------------------------------------------- /src/rp/animations/corrosion_projectile.animation.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "animations": { 4 | "animation.scpdy_corrosion_projectile.trail": { 5 | "loop": true, 6 | "animation_length": 0.5, 7 | "particle_effects": { 8 | "0.0": { 9 | "effect": "trail", 10 | "locator": "locator" 11 | } 12 | } 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /src/rp/animation_controllers/cctv/cctv_camera.cac.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.10.0", 3 | "animation_controllers": { 4 | "controller.animation.scpdy_cctv_camera": { 5 | "initial_state": "default", 6 | "states": { 7 | "default": { 8 | "animations": ["head_rotation", { "active": "v.is_active" }] 9 | } 10 | } 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/bp/loot_tables/scpdy/blocks/toilet_paper_holder_empty.json: -------------------------------------------------------------------------------- 1 | { 2 | "pools": [ 3 | { 4 | "rolls": 1, 5 | "entries": [ 6 | { 7 | "type": "item", 8 | "name": "minecraft:iron_ingot", 9 | "functions": [ 10 | { 11 | "function": "set_count", 12 | "count": 2 13 | } 14 | ] 15 | } 16 | ] 17 | } 18 | ] 19 | } 20 | -------------------------------------------------------------------------------- /src/bp/entities/instant_despawn_dummy.se.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.21.90", 3 | "minecraft:entity": { 4 | "description": { 5 | "identifier": "lc:scpdy_instant_despawn_dummy", 6 | "is_spawnable": false, 7 | "is_summonable": false, 8 | "is_experimental": false 9 | }, 10 | "components": { 11 | "minecraft:instant_despawn": {} 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/bp/scripts/features/config/config_editor_item.ts: -------------------------------------------------------------------------------- 1 | import { system } from "@minecraft/server"; 2 | import { showConfigEditorForm } from "./config"; 3 | 4 | system.beforeEvents.startup.subscribe((e) => { 5 | e.itemComponentRegistry.registerCustomComponent("scpdy:config_editor_item", { 6 | onUse(arg) { 7 | showConfigEditorForm(arg.source); 8 | }, 9 | }); 10 | }); 11 | -------------------------------------------------------------------------------- /src/bp/scripts/features/item_components/dont_get_durability_damage_on_hit.ts: -------------------------------------------------------------------------------- 1 | import * as mc from "@minecraft/server"; 2 | 3 | mc.system.beforeEvents.startup.subscribe((event) => { 4 | event.itemComponentRegistry.registerCustomComponent("scpdy:dont_get_durability_damage_on_hit", { 5 | onBeforeDurabilityDamage(arg) { 6 | arg.durabilityDamage = 0; 7 | }, 8 | }); 9 | }); 10 | -------------------------------------------------------------------------------- /src/bp/features/scpdy_bunker_1_feature.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.13.0", 3 | "minecraft:structure_template_feature": { 4 | "description": { 5 | "identifier": "lc:scpdy_bunker_1_feature" 6 | }, 7 | "structure_name": "scpdy:bunker_1", 8 | "adjustment_radius": 4, 9 | "facing_direction": "north", 10 | "constraints": { 11 | "grounded": {} 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/bp/features/scpdy_bunker_2_feature.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.13.0", 3 | "minecraft:structure_template_feature": { 4 | "description": { 5 | "identifier": "lc:scpdy_bunker_2_feature" 6 | }, 7 | "structure_name": "scpdy:bunker_2", 8 | "adjustment_radius": 4, 9 | "facing_direction": "north", 10 | "constraints": { 11 | "grounded": {} 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/bp/features/scpdy_bunker_3_feature.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.13.0", 3 | "minecraft:structure_template_feature": { 4 | "description": { 5 | "identifier": "lc:scpdy_bunker_3_feature" 6 | }, 7 | "structure_name": "scpdy:bunker_3", 8 | "adjustment_radius": 4, 9 | "facing_direction": "north", 10 | "constraints": { 11 | "grounded": {} 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/rp/render_controllers/fp_sniper_scope.rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "render_controllers": { 4 | "controller.render.scpdy.attachable.fp_sniper_scope": { 5 | "geometry": "Geometry.fp_sniper_scope", 6 | "materials": [ 7 | { 8 | "*": "Material.fp_sniper_scope" 9 | } 10 | ], 11 | "textures": ["Texture.fp_sniper_scope"] 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/bp/features/scpdy_ruin_sand_1_feature.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.13.0", 3 | "minecraft:structure_template_feature": { 4 | "description": { 5 | "identifier": "lc:scpdy_ruin_sand_1_feature" 6 | }, 7 | "structure_name": "scpdy:ruin_sand_1", 8 | "adjustment_radius": 4, 9 | "facing_direction": "random", 10 | "constraints": { 11 | "grounded": {} 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/bp/features/scpdy_ruin_sand_2_feature.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.13.0", 3 | "minecraft:structure_template_feature": { 4 | "description": { 5 | "identifier": "lc:scpdy_ruin_sand_2_feature" 6 | }, 7 | "structure_name": "scpdy:ruin_sand_2", 8 | "adjustment_radius": 4, 9 | "facing_direction": "random", 10 | "constraints": { 11 | "grounded": {} 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/bp/features/scpdy_ruin_sand_3_feature.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.13.0", 3 | "minecraft:structure_template_feature": { 4 | "description": { 5 | "identifier": "lc:scpdy_ruin_sand_3_feature" 6 | }, 7 | "structure_name": "scpdy:ruin_sand_3", 8 | "adjustment_radius": 4, 9 | "facing_direction": "random", 10 | "constraints": { 11 | "grounded": {} 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/bp/features/scpdy_ruin_grass_1_feature.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.13.0", 3 | "minecraft:structure_template_feature": { 4 | "description": { 5 | "identifier": "lc:scpdy_ruin_grass_1_feature" 6 | }, 7 | "structure_name": "scpdy:ruin_grass_1", 8 | "adjustment_radius": 4, 9 | "facing_direction": "random", 10 | "constraints": { 11 | "grounded": {} 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/bp/features/scpdy_ruin_grass_2_feature.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.13.0", 3 | "minecraft:structure_template_feature": { 4 | "description": { 5 | "identifier": "lc:scpdy_ruin_grass_2_feature" 6 | }, 7 | "structure_name": "scpdy:ruin_grass_2", 8 | "adjustment_radius": 4, 9 | "facing_direction": "random", 10 | "constraints": { 11 | "grounded": {} 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/bp/features/scpdy_ruin_grass_3_feature.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.13.0", 3 | "minecraft:structure_template_feature": { 4 | "description": { 5 | "identifier": "lc:scpdy_ruin_grass_3_feature" 6 | }, 7 | "structure_name": "scpdy:ruin_grass_3", 8 | "adjustment_radius": 4, 9 | "facing_direction": "random", 10 | "constraints": { 11 | "grounded": {} 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/bp/features/scpdy_ruin_snowy_1_feature.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.13.0", 3 | "minecraft:structure_template_feature": { 4 | "description": { 5 | "identifier": "lc:scpdy_ruin_snowy_1_feature" 6 | }, 7 | "structure_name": "scpdy:ruin_snowy_1", 8 | "adjustment_radius": 4, 9 | "facing_direction": "random", 10 | "constraints": { 11 | "grounded": {} 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/bp/features/scpdy_ruin_snowy_2_feature.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.13.0", 3 | "minecraft:structure_template_feature": { 4 | "description": { 5 | "identifier": "lc:scpdy_ruin_snowy_2_feature" 6 | }, 7 | "structure_name": "scpdy:ruin_snowy_2", 8 | "adjustment_radius": 4, 9 | "facing_direction": "random", 10 | "constraints": { 11 | "grounded": {} 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/bp/features/scpdy_ruin_snowy_3_feature.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.13.0", 3 | "minecraft:structure_template_feature": { 4 | "description": { 5 | "identifier": "lc:scpdy_ruin_snowy_3_feature" 6 | }, 7 | "structure_name": "scpdy:ruin_snowy_3", 8 | "adjustment_radius": 4, 9 | "facing_direction": "random", 10 | "constraints": { 11 | "grounded": {} 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/bp/features/scpdy_ruin_forest_1_feature.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.13.0", 3 | "minecraft:structure_template_feature": { 4 | "description": { 5 | "identifier": "lc:scpdy_ruin_forest_1_feature" 6 | }, 7 | "structure_name": "scpdy:ruin_forest_1", 8 | "adjustment_radius": 4, 9 | "facing_direction": "random", 10 | "constraints": { 11 | "grounded": {} 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/bp/features/scpdy_ruin_forest_2_feature.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.13.0", 3 | "minecraft:structure_template_feature": { 4 | "description": { 5 | "identifier": "lc:scpdy_ruin_forest_2_feature" 6 | }, 7 | "structure_name": "scpdy:ruin_forest_2", 8 | "adjustment_radius": 4, 9 | "facing_direction": "random", 10 | "constraints": { 11 | "grounded": {} 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/bp/features/scpdy_ruin_forest_3_feature.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.13.0", 3 | "minecraft:structure_template_feature": { 4 | "description": { 5 | "identifier": "lc:scpdy_ruin_forest_3_feature" 6 | }, 7 | "structure_name": "scpdy:ruin_forest_3", 8 | "adjustment_radius": 4, 9 | "facing_direction": "random", 10 | "constraints": { 11 | "grounded": {} 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/rp/render_controllers/scp/scp106.rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "render_controllers": { 4 | "controller.render.scpdy.scp106": { 5 | "geometry": "Geometry.default", 6 | "materials": [{ "*": "Material.default" }], 7 | "textures": ["Texture.default"], 8 | "is_hurt_color": { 9 | "r": 1.0, 10 | "g": 0.0, 11 | "b": 0.0, 12 | "a": 0.4 13 | } 14 | } 15 | } 16 | } 17 | --------------------------------------------------------------------------------