From ceb7595e38e8c82f80e6b2946619a49d4062c0e7 Mon Sep 17 00:00:00 2001 From: BIGZi0348 Date: Mon, 10 Mar 2025 22:05:42 +0300 Subject: [PATCH 01/22] =?UTF-8?q?=D0=B7=D0=B0=D0=BF=D0=BB=D0=B0=D1=82?= =?UTF-8?q?=D0=BA=D0=B0=20=D0=B4=D0=BB=D1=8F=20=D0=9E=D0=91=D0=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Content.Server/_White/ERTRecruitment/ERTRecruitmentRule.cs | 2 +- .../_White/GhostRecruitment/GhostRecruitmentSystem.cs | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Content.Server/_White/ERTRecruitment/ERTRecruitmentRule.cs b/Content.Server/_White/ERTRecruitment/ERTRecruitmentRule.cs index 03fa050b42..83ab47e691 100644 --- a/Content.Server/_White/ERTRecruitment/ERTRecruitmentRule.cs +++ b/Content.Server/_White/ERTRecruitment/ERTRecruitmentRule.cs @@ -137,7 +137,7 @@ public sealed class ERTRecruitmentRule : StationEventSystem /// name of recruitment. + /// Minimal playtime to be eligible for recruitment. /// is success? - public bool EndRecruitment(string recruitmentName) + public bool EndRecruitment(string recruitmentName, TimeSpan? overallPlaytime) { var spawners = GetEventSpawners(recruitmentName).ToList(); @@ -88,6 +89,9 @@ public sealed class GhostRecruitmentSystem : EntitySystem if (!TryComp(uid, out var actorComponent)) continue; + if (overallPlaytime != null && _playTimeTracking.GetOverallPlaytime(actorComponent.PlayerSession) < overallPlaytime) + continue; + // if there are too many recruited, then just skip if (count >= spawners.Count || count >= maxCount) continue; From dc2067d215cd2caf4eb34bb87e5698debcdc8251 Mon Sep 17 00:00:00 2001 From: BIGZi0348 Date: Mon, 10 Mar 2025 22:10:41 +0300 Subject: [PATCH 02/22] =?UTF-8?q?=D0=93=D0=B0=D1=80=D0=BD=D0=B8=D1=82?= =?UTF-8?q?=D1=83=D1=80=D0=B0=20=D0=B4=D0=BB=D1=8F=20=D0=B1=D0=B5=D0=B6?= =?UTF-8?q?=D0=B5=D0=BD=D1=86=D0=B5=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../entities/clothing/ears/headsets.ftl | 8 +++ Resources/Locale/ru-RU/_white/radio/radio.ftl | 10 +++ .../Entities/Mobs/Player/humanoid.yml | 3 + .../Roles/Jobs/Fun/misc_startinggear.yml | 22 +++--- .../Entities/Clothing/Ears/headsets.yml | 59 ++++++++++++++++ .../Objects/Devices/encryption_keys.yml | 67 +++++++++++++++++++ 6 files changed, 158 insertions(+), 11 deletions(-) create mode 100644 Resources/Locale/ru-RU/_white/prototypes/entities/clothing/ears/headsets.ftl create mode 100644 Resources/Locale/ru-RU/_white/radio/radio.ftl create mode 100644 Resources/Prototypes/_White/Entities/Clothing/Ears/headsets.yml create mode 100644 Resources/Prototypes/_White/Entities/Objects/Devices/encryption_keys.yml diff --git a/Resources/Locale/ru-RU/_white/prototypes/entities/clothing/ears/headsets.ftl b/Resources/Locale/ru-RU/_white/prototypes/entities/clothing/ears/headsets.ftl new file mode 100644 index 0000000000..15527f40fa --- /dev/null +++ b/Resources/Locale/ru-RU/_white/prototypes/entities/clothing/ears/headsets.ftl @@ -0,0 +1,8 @@ +ent-ClothingHeadsetAltCommandAnotherSector = { ent-ClothingHeadsetAltCommand } + .desc = { ent-ClothingHeadsetAltCommand.desc } +ent-ClothingHeadsetCMOAnotherSector = { ent-ClothingHeadsetCMO } + .desc = { ent-ClothingHeadsetCMO.desc } +ent-ClothingHeadsetRDAnotherSector = { ent-ClothingHeadsetRD } + .desc = { ent-ClothingHeadsetRD.desc } +ent-ClothingHeadsetCargoAnotherSector = { ent-ClothingHeadsetCargo } + .desc = { ent-ClothingHeadsetCargo.desc } diff --git a/Resources/Locale/ru-RU/_white/radio/radio.ftl b/Resources/Locale/ru-RU/_white/radio/radio.ftl new file mode 100644 index 0000000000..d717050b37 --- /dev/null +++ b/Resources/Locale/ru-RU/_white/radio/radio.ftl @@ -0,0 +1,10 @@ +ent-EncryptionKeyStationMasterAnotherSector = { ent-EncryptionKeyStationMaster } + .desc = { ent-EncryptionKeyStationMaster.desc } К сожалению, коды шифрования в этом секторе другие. +ent-EncryptionKeyMedicalAnotherSector = { ent-EncryptionKeyMedical } + .desc = { ent-EncryptionKeyMedical.desc } К сожалению, коды шифрования в этом секторе другие. +ent-EncryptionKeyCommandAnotherSector = { ent-EncryptionKeyCommand } + .desc = { ent-EncryptionKeyCommand.desc } К сожалению, коды шифрования в этом секторе другие. +ent-EncryptionKeyScienceAnotherSector = { ent-EncryptionKeyScience } + .desc = { ent-EncryptionKeyScience.desc } К сожалению, коды шифрования в этом секторе другие. +ent-EncryptionKeyCargoAnotherSector = { ent-EncryptionKeyCargo } + .desc = { ent-EncryptionKeyCargo.desc } К сожалению, коды шифрования в этом секторе другие. diff --git a/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml b/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml index 1ddebceb4f..20883af760 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml @@ -814,6 +814,7 @@ settings: DisasterVictimCaptain - type: randomHumanoidSettings + parent: Nanotrasen # WD id: DisasterVictimResearchDirector randomizeName: false components: @@ -832,6 +833,7 @@ - names_last - type: randomHumanoidSettings + parent: Nanotrasen # WD id: DisasterVictimCMO randomizeName: false components: @@ -850,6 +852,7 @@ - names_last - type: randomHumanoidSettings + parent: Nanotrasen # WD id: DisasterVictimCaptain randomizeName: false components: diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml index a13d0e6a58..967f131e8e 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml @@ -318,7 +318,7 @@ shoes: ClothingShoesClownBanana jumpsuit: ClothingUniformJumpsuitClownBanana mask: ClothingMaskClownBanana - ears: ClothingHeadsetService + ears: ClothingHeadsetGrey # WD pocket1: BikeHorn pocket2: ClownRecorder @@ -330,7 +330,7 @@ shoes: ClothingShoesClown id: ClownPDA back: ClothingBackpackClown - ears: ClothingHeadsetService + ears: ClothingHeadsetGrey # WD mask: ClothingMaskClown pocket1: BikeHorn pocket2: ClownRecorder @@ -344,7 +344,7 @@ head: ClothingHeadHatCargosoft id: CargoPDA back: ClothingBackpackCargo - ears: ClothingHeadsetCargo + ears: ClothingHeadsetCargoAnotherSector # WD pocket1: AppraisalTool - type: startingGear @@ -352,7 +352,7 @@ equipment: jumpsuit: ClothingUniformJumpsuitCargo shoes: ClothingShoesBootsWinterCargo - head: ClothingHeadHatCargosoft + head: ClothingHeadHatCargosoftAnotherSector # WD id: CargoPDA back: ClothingBackpackDuffelCargo ears: ClothingHeadsetCargo @@ -367,7 +367,7 @@ shoes: ClothingShoesColorWhite id: ChefPDA back: ClothingBackpackSatchel - ears: ClothingHeadsetService + # ears: ClothingHeadsetService # WD belt: ClothingBeltChef #CMO Disaster Victim @@ -380,7 +380,7 @@ neck: ClothingCloakCmo id: CMOPDA back: ClothingBackpackMedical - ears: ClothingHeadsetCMO + ears: ClothingHeadsetCMOAnotherSector # WD belt: ClothingBeltMedical outerClothing: ClothingOuterCoatLabCmo @@ -393,7 +393,7 @@ neck: ClothingNeckMantleCMO id: CMOPDA back: ClothingBackpackSatchelMedical - ears: ClothingHeadsetCMO + ears: ClothingHeadsetCMOAnotherSector # WD belt: ClothingBeltMedical outerClothing: ClothingOuterCoatLabCmo @@ -409,7 +409,7 @@ neck: ClothingNeckCloakCap id: CaptainPDA back: ClothingBackpackCaptain - ears: ClothingHeadsetAltCommand + ears: ClothingHeadsetAltCommandAnotherSector # WD outerClothing: ClothingOuterArmorCaptainCarapace - type: startingGear @@ -423,7 +423,7 @@ neck: ClothingNeckMantleCap id: CaptainPDA back: ClothingBackpackSatchelCaptain - ears: ClothingHeadsetAltCommand + ears: ClothingHeadsetAltCommandAnotherSector # WD outerClothing: ClothingOuterArmorCaptainCarapace #RD Disaster Victim @@ -436,7 +436,7 @@ neck: ClothingNeckCloakRd id: RnDPDA back: ClothingBackpackScience - ears: ClothingHeadsetRD + ears: ClothingHeadsetRDAnotherSector # WD outerClothing: ClothingOuterCoatRD - type: startingGear @@ -448,5 +448,5 @@ neck: ClothingNeckMantleRD id: RnDPDA back: ClothingBackpackSatchelScience - ears: ClothingHeadsetRD + ears: ClothingHeadsetRDAnotherSector # WD outerClothing: ClothingOuterCoatRD diff --git a/Resources/Prototypes/_White/Entities/Clothing/Ears/headsets.yml b/Resources/Prototypes/_White/Entities/Clothing/Ears/headsets.yml new file mode 100644 index 0000000000..3ca7e87343 --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Clothing/Ears/headsets.yml @@ -0,0 +1,59 @@ +- type: entity + parent: ClothingHeadsetAlt + id: ClothingHeadsetAltCommandAnotherSector + name: command over-ear headset + suffix: Another Sector + components: + - type: ContainerFill + containers: + key_slots: + - EncryptionKeyStationMasterAnotherSector + - type: Sprite + sprite: Clothing/Ears/Headsets/command.rsi + - type: Clothing + sprite: Clothing/Ears/Headsets/command.rsi + +- type: entity + parent: ClothingHeadsetMedical + id: ClothingHeadsetCMOAnotherSector + name: cmo headset + description: A headset used by the CMO. + suffix: Another Sector + components: + - type: ContainerFill + containers: + key_slots: + - EncryptionKeyMedicalAnotherSector + - EncryptionKeyCommandAnotherSector + - EncryptionKeyCommon + +- type: entity + parent: ClothingHeadsetScience + id: ClothingHeadsetRDAnotherSector + name: rd headset + description: Lamarr used to love chewing on this... + suffix: Another Sector + components: + - type: ContainerFill + containers: + key_slots: + - EncryptionKeyScienceAnotherSector + - EncryptionKeyCommandAnotherSector + - EncryptionKeyCommon + +- type: entity + parent: ClothingHeadset + id: ClothingHeadsetCargoAnotherSector + name: cargo headset + description: A headset used by supply employees. + suffix: Another Sector + components: + - type: ContainerFill + containers: + key_slots: + - EncryptionKeyCargoAnotherSector + - EncryptionKeyCommon + - type: Sprite + sprite: Clothing/Ears/Headsets/cargo.rsi + - type: Clothing + sprite: Clothing/Ears/Headsets/cargo.rsi diff --git a/Resources/Prototypes/_White/Entities/Objects/Devices/encryption_keys.yml b/Resources/Prototypes/_White/Entities/Objects/Devices/encryption_keys.yml new file mode 100644 index 0000000000..ac056ecfda --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Objects/Devices/encryption_keys.yml @@ -0,0 +1,67 @@ +- type: entity + parent: EncryptionKey + id: EncryptionKeyStationMasterAnotherSector + name: station master encryption key + description: An encryption key used by station's bosses. Unfortunately, the encryption codes in this sector are different. + suffix: Another Sector + components: + - type: EncryptionKey + channels: + - Common + defaultChannel: Common + - type: Sprite + layers: + - state: crypt_gold + - state: cap_label + +- type: entity + parent: EncryptionKey + id: EncryptionKeyMedicalAnotherSector + name: medical encryption key + description: An encryption key used by those who save lives. Unfortunately, the encryption codes in this sector are different. + suffix: Another Sector + components: + - type: EncryptionKey + - type: Sprite + layers: + - state: crypt_gray + - state: med_label + +- type: entity + parent: EncryptionKey + id: EncryptionKeyCommandAnotherSector + name: command encryption key + description: An encryption key used by crew's bosses. Unfortunately, the encryption codes in this sector are different. + suffix: Another Sector + components: + - type: EncryptionKey + - type: Sprite + layers: + - state: crypt_silver + - state: com_label + +- type: entity + parent: EncryptionKey + id: EncryptionKeyScienceAnotherSector + name: science encryption key + description: An encryption key used by scientists. Maybe it is plasmaproof? Unfortunately, the encryption codes in this sector are different. + suffix: Another Sector + components: + - type: EncryptionKey + - type: Sprite + layers: + - state: crypt_gray + - state: sci_label + +- type: entity + parent: EncryptionKey + id: EncryptionKeyCargoAnotherSector + name: cargo encryption key + description: An encryption key used by supply employees. Unfortunately, the encryption codes in this sector are different. + suffix: Another Sector + components: + - type: EncryptionKey + - type: Sprite + layers: + - state: crypt_gray + - state: cargo_label From 0bbcb3ccf5a81b2859bba0092cd400f883c54449 Mon Sep 17 00:00:00 2001 From: BIGZi0348 Date: Mon, 10 Mar 2025 22:46:08 +0300 Subject: [PATCH 03/22] =?UTF-8?q?=D0=9F=D1=80=D0=B8=D1=87=D0=B8=D0=BD?= =?UTF-8?q?=D0=B0=20=D0=B4=D0=BB=D1=8F=20=D0=B1=D0=B5=D0=B6=D0=B5=D0=BD?= =?UTF-8?q?=D1=86=D0=B5=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../entities/objects/misc/space_cash.ftl | 6 ++++ .../Roles/Jobs/Fun/misc_startinggear.yml | 12 +++---- .../Entities/Clothing/Back/backpacks.yml | 31 +++++++++++++++++++ .../_White/Entities/Clothing/Back/satchel.yml | 31 +++++++++++++++++++ 4 files changed, 74 insertions(+), 6 deletions(-) create mode 100644 Resources/Prototypes/_White/Entities/Clothing/Back/backpacks.yml create mode 100644 Resources/Prototypes/_White/Entities/Clothing/Back/satchel.yml diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/space_cash.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/space_cash.ftl index 272755b58a..f3380b4bf8 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/space_cash.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/space_cash.ftl @@ -15,3 +15,9 @@ ent-SpaceCash1000 = кредиты ent-SpaceCash1000000 = кредиты .suffix = 1000000 .desc = { ent-SpaceCash.desc } +ent-SpaceCash20000 = кредиты + .suffix = 20000 + .desc = { ent-SpaceCash.desc } +ent-SpaceCash30000 = кредиты + .suffix = 30000 + .desc = { ent-SpaceCash.desc } diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml index 967f131e8e..aeaefb8ce9 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml @@ -379,7 +379,7 @@ head: ClothingHeadMirror neck: ClothingCloakCmo id: CMOPDA - back: ClothingBackpackMedical + back: ClothingBackpackMedicalAnotherSector # WD ears: ClothingHeadsetCMOAnotherSector # WD belt: ClothingBeltMedical outerClothing: ClothingOuterCoatLabCmo @@ -392,7 +392,7 @@ head: ClothingHeadHatBeretCmo neck: ClothingNeckMantleCMO id: CMOPDA - back: ClothingBackpackSatchelMedical + back: ClothingBackpackSatchelMedicalAnotherSector # WD ears: ClothingHeadsetCMOAnotherSector # WD belt: ClothingBeltMedical outerClothing: ClothingOuterCoatLabCmo @@ -408,7 +408,7 @@ head: ClothingHeadHatCaptain neck: ClothingNeckCloakCap id: CaptainPDA - back: ClothingBackpackCaptain + back: ClothingBackpackCaptainAnotherSector # WD ears: ClothingHeadsetAltCommandAnotherSector # WD outerClothing: ClothingOuterArmorCaptainCarapace @@ -422,7 +422,7 @@ head: ClothingHeadHatCapcap neck: ClothingNeckMantleCap id: CaptainPDA - back: ClothingBackpackSatchelCaptain + back: ClothingBackpackSatchelCaptainAnotherSector # WD ears: ClothingHeadsetAltCommandAnotherSector # WD outerClothing: ClothingOuterArmorCaptainCarapace @@ -435,7 +435,7 @@ head: ClothingHeadHatBeretRND neck: ClothingNeckCloakRd id: RnDPDA - back: ClothingBackpackScience + back: ClothingBackpackScienceAnotherSector # WD ears: ClothingHeadsetRDAnotherSector # WD outerClothing: ClothingOuterCoatRD @@ -447,6 +447,6 @@ head: ClothingHeadHatBeretRND neck: ClothingNeckMantleRD id: RnDPDA - back: ClothingBackpackSatchelScience + back: ClothingBackpackSatchelScienceAnotherSector # WD ears: ClothingHeadsetRDAnotherSector # WD outerClothing: ClothingOuterCoatRD diff --git a/Resources/Prototypes/_White/Entities/Clothing/Back/backpacks.yml b/Resources/Prototypes/_White/Entities/Clothing/Back/backpacks.yml new file mode 100644 index 0000000000..74ad7da4fb --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Clothing/Back/backpacks.yml @@ -0,0 +1,31 @@ +- type: entity + noSpawn: true + parent: ClothingBackpackMedical + id: ClothingBackpackMedicalAnotherSector + components: + - type: StorageFill + contents: + - id: OmnizineChemistryBottle + - id: OmnizineChemistryBottle + - id: OmnizineChemistryBottle + +- type: entity + noSpawn: true + parent: ClothingBackpackCaptain + id: ClothingBackpackCaptainAnotherSector + components: + - type: StorageFill + contents: + - id: SpaceCash30000 + +- type: entity + noSpawn: true + parent: ClothingBackpackScience + id: ClothingBackpackScienceAnotherSector + components: + - type: StorageFill + contents: + - id: ResearchDisk10000 + - id: ResearchDisk10000 + - id: ResearchDisk10000 + - id: ResearchDisk10000 diff --git a/Resources/Prototypes/_White/Entities/Clothing/Back/satchel.yml b/Resources/Prototypes/_White/Entities/Clothing/Back/satchel.yml new file mode 100644 index 0000000000..68688ab23b --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Clothing/Back/satchel.yml @@ -0,0 +1,31 @@ +- type: entity + noSpawn: true + parent: ClothingBackpackSatchelMedical + id: ClothingBackpackSatchelMedicalAnotherSector + components: + - type: StorageFill + contents: + - id: OmnizineChemistryBottle + - id: OmnizineChemistryBottle + - id: OmnizineChemistryBottle + +- type: entity + noSpawn: true + parent: ClothingBackpackSatchelCaptain + id: ClothingBackpackSatchelCaptainAnotherSector + components: + - type: StorageFill + contents: + - id: SpaceCash30000 + +- type: entity + noSpawn: true + parent: ClothingBackpackSatchelScience + id: ClothingBackpackSatchelScienceAnotherSector + components: + - type: StorageFill + contents: + - id: ResearchDisk10000 + - id: ResearchDisk10000 + - id: ResearchDisk10000 + - id: ResearchDisk10000 From 0465a83f90c9fd39f670aa024556a85f0cbea6af Mon Sep 17 00:00:00 2001 From: BIGZi0348 Date: Wed, 12 Mar 2025 21:08:49 +0300 Subject: [PATCH 04/22] =?UTF-8?q?=D0=9F=D0=94=D0=90=20=D0=B4=D0=BB=D1=8F?= =?UTF-8?q?=20=D0=B1=D0=B5=D0=B6=D0=B5=D0=BD=D1=86=D0=B5=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../entities/clothing/ears/headsets.ftl | 2 + .../entities/clothing/back/backpacks.ftl | 6 + .../entities/clothing/back/satchel.ftl | 6 + .../entities/objects/devices/pda.ftl | 8 + .../objects/misc/identification_cards.ftl | 8 + .../ShuttleEvent/White/lost_cargo.yml | 1411 +++++++++++++++++ .../Roles/Jobs/Fun/misc_startinggear.yml | 32 +- .../Prototypes/Roles/play_time_trackers.yml | 12 + .../Shuttles/shuttle_incoming_event.yml | 2 +- .../Entities/Clothing/Ears/headsets.yml | 29 +- .../_White/Entities/Objects/Devices/pda.yml | 41 + .../Objects/Misc/identification_cards.yml | 31 + .../_White/Roles/Jobs/another_sector.yml | 34 + 13 files changed, 1588 insertions(+), 34 deletions(-) create mode 100644 Resources/Maps/Shuttles/ShuttleEvent/White/lost_cargo.yml create mode 100644 Resources/Prototypes/_White/Entities/Objects/Devices/pda.yml create mode 100644 Resources/Prototypes/_White/Entities/Objects/Misc/identification_cards.yml create mode 100644 Resources/Prototypes/_White/Roles/Jobs/another_sector.yml diff --git a/Resources/Locale/ru-RU/_white/prototypes/entities/clothing/ears/headsets.ftl b/Resources/Locale/ru-RU/_white/prototypes/entities/clothing/ears/headsets.ftl index 15527f40fa..a3f245f5e0 100644 --- a/Resources/Locale/ru-RU/_white/prototypes/entities/clothing/ears/headsets.ftl +++ b/Resources/Locale/ru-RU/_white/prototypes/entities/clothing/ears/headsets.ftl @@ -6,3 +6,5 @@ ent-ClothingHeadsetRDAnotherSector = { ent-ClothingHeadsetRD } .desc = { ent-ClothingHeadsetRD.desc } ent-ClothingHeadsetCargoAnotherSector = { ent-ClothingHeadsetCargo } .desc = { ent-ClothingHeadsetCargo.desc } +ent-ClothingHeadsetServiceContractor = { ent-ClothingHeadsetService } + .desc = { ent-ClothingHeadsetService.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/back/backpacks.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/back/backpacks.ftl index e42f4bcdcd..4ff30835a4 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/back/backpacks.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/back/backpacks.ftl @@ -41,3 +41,9 @@ ent-ClothingBackpackCluwne = проклятое Хихиканье Фон Хон .suffix = Неснимаемое ent-ClothingBackpackDeathSquadFilled = рюкзак отряда смерти .desc = Содержит набор самых опасных агентов Центкома. +ent-ClothingBackpackMedicalAnotherSector = { ent-ClothingBackpackMedical } + .desc = { ent-ClothingBackpackMedical.desc } +ent-ClothingBackpackCaptainAnotherSector = { ent-ClothingBackpackCaptain } + .desc = { ent-ClothingBackpackCaptain.desc } +ent-ClothingBackpackScienceAnotherSector = { ent-ClothingBackpackScience } + .desc = { ent-ClothingBackpackScience.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/back/satchel.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/back/satchel.ftl index 23724d4750..561ec4f2fd 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/back/satchel.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/back/satchel.ftl @@ -26,3 +26,9 @@ ent-ClothingBackpackSatchelVirology = сумка вирусолога .desc = Сумка из гипоаллергенных волокон. Он разработан для того, чтобы помочь предотвратить распространение болезни. Пахнет обезьяной. ent-ClothingBeltStorageWaistbag = кожаная поясная сумка .desc = Кожаная поясная сумка, предназначенная для переноски мелких предметов. +ent-ClothingBackpackSatchelMedicalAnotherSector = { ent-ClothingBackpackSatchelMedical } + .desc = { ent-ClothingBackpackSatchelMedical.desc } +ent-ClothingBackpackSatchelCaptainAnotherSector = { ent-ClothingBackpackSatchelCaptain } + .desc = { ent-ClothingBackpackSatchelCaptain.desc } +ent-ClothingBackpackSatchelScienceAnotherSector = { ent-ClothingBackpackSatchelScience } + .desc = { ent-ClothingBackpackSatchelScience.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl index a0db22cb5e..7730957d9f 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl @@ -93,3 +93,11 @@ ent-MaidPDA = ПДА прислуги .desc = Сияет от собственной чистоты. ent-BomzhPDA = убитый ПДА .desc = Жизнь прошла, и все что остаётся делать - это двигаться вперед. +ent-CargoPDAAnotherSector = { ent-CargoPDA } + .desc = { ent-CargoPDA.desc } +ent-CMOPDAAnotherSector = { ent-CMOPDA } + .desc = { ent-CMOPDA.desc } +ent-CaptainPDAAnotherSector = { ent-CaptainPDA } + .desc = { ent-CaptainPDA.desc } +ent-RnDPDAAnotherSector = { ent-RnDPDA } + .desc = { ent-RnDPDA.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl index 64eb33bbf9..a8af3647b4 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl @@ -98,3 +98,11 @@ ent-MaidIDCard = ID карта прислуги .desc = { ent-IDCardStandard.desc } ent-BomzhIDCard = грязная ID карта .desc = Старая и грязная карта дожившая до нашего времени. +ent-CargoIDCardAnotherSector = { ent-CargoIDCard } + .desc = { ent-ent-CargoIDCard.desc } +ent-CMOIDCardAnotherSector = { ent-CMOIDCard } + .desc = { ent-CMOIDCard.desc } +ent-CaptainIDCardAnotherSector = { ent-CaptainIDCard } + .desc = { ent-CaptainIDCard.desc } +ent-RDIDCardAnotherSector = { ent-RDIDCard } + .desc = { ent-RDIDCard.desc } diff --git a/Resources/Maps/Shuttles/ShuttleEvent/White/lost_cargo.yml b/Resources/Maps/Shuttles/ShuttleEvent/White/lost_cargo.yml new file mode 100644 index 0000000000..ef6a71266a --- /dev/null +++ b/Resources/Maps/Shuttles/ShuttleEvent/White/lost_cargo.yml @@ -0,0 +1,1411 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 54: FloorGreenCircuit + 85: FloorShuttleWhite + 89: FloorSteel + 104: FloorTechMaint + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Cargo shuttle + - type: Transform + pos: 2.2710133,-2.4148211 + parent: invalid + - type: MapGrid + chunks: + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAVQAAAAAANgAAAAAAVQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: WQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: CargoShuttle + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 0: -5,5 + 1: -4,5 + 2: -1,5 + 3: -1,-1 + 4: -2,-1 + 5: -4,-1 + 6: -1,2 + 7: -4,2 + 8: -5,2 + - node: + color: '#9FED5896' + id: CheckerNESW + decals: + 9: -3,-1 + 10: -3,0 + 11: -3,1 + 12: -3,2 + 13: -3,3 + 14: -3,4 + 15: -3,5 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerNe + decals: + 29: -1,5 + 30: -2,6 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerNw + decals: + 19: -5,5 + 20: -4,6 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerSe + decals: + 21: -1,-1 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerSw + decals: + 22: -5,-1 + - node: + color: '#9FED5896' + id: MiniTileWhiteInnerNe + decals: + 33: -2,5 + - node: + color: '#9FED5896' + id: MiniTileWhiteInnerNw + decals: + 32: -4,5 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineE + decals: + 26: -1,0 + 27: -1,2 + 28: -1,4 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineN + decals: + 31: -3,6 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineS + decals: + 23: -4,-1 + 24: -3,-1 + 25: -2,-1 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineW + decals: + 16: -5,0 + 17: -5,2 + 18: -5,4 + - node: + color: '#9FED5896' + id: WarnLineE + decals: + 36: -1,1 + 37: -1,3 + - node: + color: '#9FED5896' + id: WarnLineS + decals: + 34: -5,1 + 35: -5,3 + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,0: + 0: 51400 + -2,1: + 0: 16520 + -2,-1: + 0: 32832 + -1,0: + 0: 65535 + -1,1: + 0: 30719 + -2,2: + 0: 128 + -1,-1: + 0: 63346 + -1,2: + 0: 130 + 0,0: + 0: 4112 + 0,1: + 0: 4096 + -2,-2: + 0: 32768 + -1,-2: + 0: 32768 + 0,-1: + 0: 16 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay +- proto: AirCanister + entities: + - uid: 2 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - uid: 4 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 +- proto: APCHyperCapacity + entities: + - uid: 7 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 8 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 +- proto: BlastDoor + entities: + - uid: 12 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 135 + - uid: 13 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 134 + - uid: 14 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 136 + - uid: 15 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 133 +- proto: BoxMRE + entities: + - uid: 93 + components: + - type: Transform + pos: -1.3692467,7.6214685 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 16 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 +- proto: CableHV + entities: + - uid: 50 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 +- proto: CableMV + entities: + - uid: 53 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 66 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 67 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 70 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 80 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 +- proto: ConveyorBelt + entities: + - uid: 81 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 151 + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 151 + - uid: 83 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 151 + - uid: 84 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 149 + - uid: 85 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 149 + - uid: 86 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 149 + - uid: 87 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 150 + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 152 + - uid: 89 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 152 + - uid: 90 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 152 + - uid: 91 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 150 + - uid: 92 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 150 +- proto: CrateFilledSpawner + entities: + - uid: 95 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 +- proto: DrinkBeerBottleFull + entities: + - uid: 99 + components: + - type: Transform + pos: -3.2915764,7.812316 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: -3.4715438,7.654894 + parent: 1 +- proto: GasPipeBend + entities: + - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 +- proto: GasPipeStraight + entities: + - uid: 102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + - uid: 104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 +- proto: GasPort + entities: + - uid: 105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 +- proto: GasVentPump + entities: + - uid: 106 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 +- proto: GeneratorBasic15kW + entities: + - uid: 107 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 108 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 +- proto: Grille + entities: + - uid: 109 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 114 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 +- proto: LostCargoTechnicianSpawner + entities: + - uid: 69 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 116 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: RandomPosterAny + entities: + - uid: 124 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 +- proto: RandomSpawner100 + entities: + - uid: 188 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 +- proto: SalvageLootSpawner + entities: + - uid: 115 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 94 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 128 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 +- proto: SignalButton + entities: + - uid: 133 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 15: + - Pressed: Toggle + - uid: 134 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 13: + - Pressed: Toggle + - uid: 135 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 12: + - Pressed: Toggle + - uid: 136 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 14: + - Pressed: Toggle +- proto: SMESBasic + entities: + - uid: 137 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 138 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 +- proto: Thruster + entities: + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 1 +- proto: TwoWayLever + entities: + - uid: 149 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 86: + - Left: Forward + - Right: Reverse + - Middle: Off + 85: + - Left: Forward + - Right: Reverse + - Middle: Off + 84: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 150 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 91: + - Left: Forward + - Right: Reverse + - Middle: Off + 87: + - Left: Forward + - Right: Reverse + - Middle: Off + 92: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 151 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 81: + - Left: Forward + - Right: Reverse + - Middle: Off + 82: + - Left: Forward + - Right: Reverse + - Middle: Off + 83: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 152 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 90: + - Left: Forward + - Right: Reverse + - Middle: Off + 89: + - Left: Forward + - Right: Reverse + - Middle: Off + 88: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: WallShuttle + entities: + - uid: 153 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 +- proto: Windoor + entities: + - uid: 184 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 185 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 +... diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml index aeaefb8ce9..3c457a3bdb 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml @@ -313,12 +313,12 @@ - type: startingGear id: BananaClown equipment: - id: ClownPDA + id: ClownPDA # TODO back: ClothingBackpackClown shoes: ClothingShoesClownBanana jumpsuit: ClothingUniformJumpsuitClownBanana mask: ClothingMaskClownBanana - ears: ClothingHeadsetGrey # WD + ears: ClothingHeadsetServiceContractor # WD pocket1: BikeHorn pocket2: ClownRecorder @@ -328,9 +328,9 @@ equipment: jumpsuit: ClothingUniformJumpsuitClown shoes: ClothingShoesClown - id: ClownPDA + id: ClownPDA # TODO back: ClothingBackpackClown - ears: ClothingHeadsetGrey # WD + ears: ClothingHeadsetServiceContractor # WD mask: ClothingMaskClown pocket1: BikeHorn pocket2: ClownRecorder @@ -342,7 +342,7 @@ jumpsuit: ClothingUniformJumpsuitCargo shoes: ClothingShoesColorBlack head: ClothingHeadHatCargosoft - id: CargoPDA + id: CargoPDAAnotherSector # WD back: ClothingBackpackCargo ears: ClothingHeadsetCargoAnotherSector # WD pocket1: AppraisalTool @@ -352,10 +352,10 @@ equipment: jumpsuit: ClothingUniformJumpsuitCargo shoes: ClothingShoesBootsWinterCargo - head: ClothingHeadHatCargosoftAnotherSector # WD - id: CargoPDA + head: ClothingHeadHatCargosoft + id: CargoPDAAnotherSector # WD back: ClothingBackpackDuffelCargo - ears: ClothingHeadsetCargo + ears: ClothingHeadsetCargoAnotherSector # WD pocket1: AppraisalTool outerClothing: ClothingOuterWinterCargo @@ -365,9 +365,9 @@ equipment: jumpsuit: ClothingUniformJumpsuitChef shoes: ClothingShoesColorWhite - id: ChefPDA + id: ChefPDA # TODO back: ClothingBackpackSatchel - # ears: ClothingHeadsetService # WD + ears: ClothingHeadsetServiceContractor # WD belt: ClothingBeltChef #CMO Disaster Victim @@ -378,7 +378,7 @@ shoes: ClothingShoesColorBrown head: ClothingHeadMirror neck: ClothingCloakCmo - id: CMOPDA + id: CMOPDAAnotherSector # WD back: ClothingBackpackMedicalAnotherSector # WD ears: ClothingHeadsetCMOAnotherSector # WD belt: ClothingBeltMedical @@ -391,7 +391,7 @@ shoes: ClothingShoesColorBrown head: ClothingHeadHatBeretCmo neck: ClothingNeckMantleCMO - id: CMOPDA + id: CMOPDAAnotherSector # WD back: ClothingBackpackSatchelMedicalAnotherSector # WD ears: ClothingHeadsetCMOAnotherSector # WD belt: ClothingBeltMedical @@ -407,7 +407,7 @@ gloves: ClothingHandsGlovesCaptain head: ClothingHeadHatCaptain neck: ClothingNeckCloakCap - id: CaptainPDA + id: CaptainPDAAnotherSector # WD back: ClothingBackpackCaptainAnotherSector # WD ears: ClothingHeadsetAltCommandAnotherSector # WD outerClothing: ClothingOuterArmorCaptainCarapace @@ -421,7 +421,7 @@ gloves: ClothingHandsGlovesCaptain head: ClothingHeadHatCapcap neck: ClothingNeckMantleCap - id: CaptainPDA + id: CaptainPDAAnotherSector # WD back: ClothingBackpackSatchelCaptainAnotherSector # WD ears: ClothingHeadsetAltCommandAnotherSector # WD outerClothing: ClothingOuterArmorCaptainCarapace @@ -434,7 +434,7 @@ shoes: ClothingShoesColorBrown head: ClothingHeadHatBeretRND neck: ClothingNeckCloakRd - id: RnDPDA + id: RnDPDAAnotherSector # WD back: ClothingBackpackScienceAnotherSector # WD ears: ClothingHeadsetRDAnotherSector # WD outerClothing: ClothingOuterCoatRD @@ -446,7 +446,7 @@ shoes: ClothingShoesColorBrown head: ClothingHeadHatBeretRND neck: ClothingNeckMantleRD - id: RnDPDA + id: RnDPDAAnotherSector # WD back: ClothingBackpackSatchelScienceAnotherSector # WD ears: ClothingHeadsetRDAnotherSector # WD outerClothing: ClothingOuterCoatRD diff --git a/Resources/Prototypes/Roles/play_time_trackers.yml b/Resources/Prototypes/Roles/play_time_trackers.yml index 88c8e1c02c..159905dd3e 100644 --- a/Resources/Prototypes/Roles/play_time_trackers.yml +++ b/Resources/Prototypes/Roles/play_time_trackers.yml @@ -169,3 +169,15 @@ - type: playTimeTracker id: JobMaid + +- type: playTimeTracker + id: JobCargoTechnicianAnotherSector + +- type: playTimeTracker + id: JobChiefMedicalOfficerAnotherSector + +- type: playTimeTracker + id: JobCaptainAnotherSector + +- type: playTimeTracker + id: JobResearchDirectorAnotherSector diff --git a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml index f3abb6796f..1ca2f23dcc 100644 --- a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml +++ b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml @@ -5,7 +5,7 @@ - type: preloadedGrid id: ShuttleCargoLost - path: /Maps/Shuttles/ShuttleEvent/lost_cargo.yml + path: /Maps/Shuttles/ShuttleEvent/White/lost_cargo.yml copies: 1 # WD from 2 to 1 - type: preloadedGrid diff --git a/Resources/Prototypes/_White/Entities/Clothing/Ears/headsets.yml b/Resources/Prototypes/_White/Entities/Clothing/Ears/headsets.yml index 3ca7e87343..1960c25d24 100644 --- a/Resources/Prototypes/_White/Entities/Clothing/Ears/headsets.yml +++ b/Resources/Prototypes/_White/Entities/Clothing/Ears/headsets.yml @@ -1,23 +1,16 @@ - type: entity - parent: ClothingHeadsetAlt + parent: ClothingHeadsetAltCommand id: ClothingHeadsetAltCommandAnotherSector - name: command over-ear headset suffix: Another Sector components: - type: ContainerFill containers: key_slots: - EncryptionKeyStationMasterAnotherSector - - type: Sprite - sprite: Clothing/Ears/Headsets/command.rsi - - type: Clothing - sprite: Clothing/Ears/Headsets/command.rsi - type: entity parent: ClothingHeadsetMedical id: ClothingHeadsetCMOAnotherSector - name: cmo headset - description: A headset used by the CMO. suffix: Another Sector components: - type: ContainerFill @@ -30,8 +23,6 @@ - type: entity parent: ClothingHeadsetScience id: ClothingHeadsetRDAnotherSector - name: rd headset - description: Lamarr used to love chewing on this... suffix: Another Sector components: - type: ContainerFill @@ -42,10 +33,8 @@ - EncryptionKeyCommon - type: entity - parent: ClothingHeadset + parent: ClothingHeadsetCargo id: ClothingHeadsetCargoAnotherSector - name: cargo headset - description: A headset used by supply employees. suffix: Another Sector components: - type: ContainerFill @@ -53,7 +42,13 @@ key_slots: - EncryptionKeyCargoAnotherSector - EncryptionKeyCommon - - type: Sprite - sprite: Clothing/Ears/Headsets/cargo.rsi - - type: Clothing - sprite: Clothing/Ears/Headsets/cargo.rsi + +- type: entity + parent: ClothingHeadsetService + id: ClothingHeadsetServiceContractor + noSpawn: true + components: + - type: ContainerFill + containers: + key_slots: + - EncryptionKeyCommon diff --git a/Resources/Prototypes/_White/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/_White/Entities/Objects/Devices/pda.yml new file mode 100644 index 0000000000..d5662268b9 --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Objects/Devices/pda.yml @@ -0,0 +1,41 @@ +- type: entity + parent: CargoPDA + id: CargoPDAAnotherSector + noSpawn: true + components: + - type: Pda + id: CargoIDCardAnotherSector + state: pda-cargo + +- type: entity + parent: CMOPDA + id: CMOPDAAnotherSector + noSpawn: true + components: + - type: Pda + id: CMOIDCardAnotherSector + state: pda-cmo + +- type: entity + parent: CaptainPDA + id: CaptainPDAAnotherSector + noSpawn: true + components: + - type: Pda + id: CaptainIDCardAnotherSector + state: pda-captain + penSlot: + startingItem: PenCap + priority: -1 + whitelist: + tags: + - Write + +- type: entity + parent: RnDPDA + id: RnDPDAAnotherSector + noSpawn: true + components: + - type: Pda + id: RDIDCardAnotherSector + state: pda-rd diff --git a/Resources/Prototypes/_White/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/_White/Entities/Objects/Misc/identification_cards.yml new file mode 100644 index 0000000000..d47c352fd7 --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Objects/Misc/identification_cards.yml @@ -0,0 +1,31 @@ +- type: entity + parent: CargoIDCard + id: CargoIDCardAnotherSector + noSpawn: true + components: + - type: PresetIdCard + job: CargoTechnicianAnotherSector + +- type: entity + parent: CMOIDCard + id: CMOIDCardAnotherSector + noSpawn: true + components: + - type: PresetIdCard + job: ChiefMedicalOfficerAnotherSector + +- type: entity + parent: CaptainIDCard + id: CaptainIDCardAnotherSector + noSpawn: true + components: + - type: PresetIdCard + job: CaptainAnotherSector + +- type: entity + parent: RDIDCard + id: RDIDCardAnotherSector + noSpawn: true + components: + - type: PresetIdCard + job: ResearchDirectorAnotherSector diff --git a/Resources/Prototypes/_White/Roles/Jobs/another_sector.yml b/Resources/Prototypes/_White/Roles/Jobs/another_sector.yml new file mode 100644 index 0000000000..377c1d2363 --- /dev/null +++ b/Resources/Prototypes/_White/Roles/Jobs/another_sector.yml @@ -0,0 +1,34 @@ +- type: job + id: CargoTechnicianAnotherSector + name: job-name-cargotech + description: job-description-cargotech + playTimeTracker: JobCargoTechnicianAnotherSector + icon: "JobIconCargoTechnician" + supervisors: job-supervisors-qm + +- type: job + id: ChiefMedicalOfficerAnotherSector + name: job-name-cmo + description: job-description-cmo + playTimeTracker: JobChiefMedicalOfficerAnotherSector + icon: "JobIconChiefMedicalOfficer" + supervisors: job-supervisors-captain + +- type: job + id: CaptainAnotherSector + name: job-name-captain + description: job-description-captain + playTimeTracker: JobCaptainAnotherSector + icon: "JobIconCaptain" + supervisors: job-supervisors-centcom + special: + - !type:AddImplantSpecial + implants: [ MindShieldImplant ] + +- type: job + id: ResearchDirectorAnotherSector + name: job-name-rd + description: job-description-rd + playTimeTracker: JobResearchDirectorAnotherSector + icon: "JobIconResearchDirector" + supervisors: job-supervisors-captain From 670917881ba3ef3f4e36f7bcb25059afb8c445d2 Mon Sep 17 00:00:00 2001 From: BIGZi0348 Date: Wed, 12 Mar 2025 22:39:49 +0300 Subject: [PATCH 05/22] =?UTF-8?q?=D0=9D=D0=B0=D1=81=D1=82=D0=B5=D0=BD?= =?UTF-8?q?=D0=BD=D0=B0=D1=8F=20=D0=BA=D0=BE=D0=BD=D1=81=D0=BE=D0=BB=D1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Structures/Machines/deepspacecom.yml | 76 ++++++- .../Machines/wall_consoles.rsi/comm_layer.png | Bin 0 -> 2321 bytes .../Machines/wall_consoles.rsi/meta.json | 213 +++++++++--------- 3 files changed, 185 insertions(+), 104 deletions(-) create mode 100644 Resources/Textures/White/Structures/Machines/wall_consoles.rsi/comm_layer.png diff --git a/Resources/Prototypes/_White/Structures/Machines/deepspacecom.yml b/Resources/Prototypes/_White/Structures/Machines/deepspacecom.yml index 269a2ec66b..df156293b9 100644 --- a/Resources/Prototypes/_White/Structures/Machines/deepspacecom.yml +++ b/Resources/Prototypes/_White/Structures/Machines/deepspacecom.yml @@ -19,8 +19,8 @@ supportedChannels: - DeepSpace - Common - - type: TTS # check tts work - id: Sentrybot + - type: TTS + voicePrototypeId: Sentrybot - type: Speech speechVerb: Robotic - type: Sprite # replace sprites in future @@ -60,3 +60,75 @@ state: cpu_command - type: ComputerBoard prototype: ComputerDeepSpaceCom + +- type: entity + parent: BaseWallConsole + id: DeepSpaceComWallMount + name: настенная консоль дальней связи + description: Дальняя космическая связь обеспечивает быстрый обмен сообщениями почти на любом расстоянии. Корпорация слышит! + components: + - type: Sprite + sprite: White/Structures/Machines/wall_consoles.rsi + layers: + - map: [ "computerLayerBody" ] + state: comp_wall_0 + - map: [ "computerLayerScreen" ] + state: comm_layer + - type: Appearance + - type: GenericVisualizer + visuals: + enum.ComputerVisuals.Powered: + computerLayerScreen: + True: { visible: true, shader: unshaded } + False: { visible: false } + computerLayerKeys: + True: { visible: true, shader: unshaded } + False: { visible: true } + - type: ApcPowerReceiver + - type: Electrified + enabled: false + usesApcPower: true + - type: RadioMicrophone + powerRequired: true + unobstructedRequired: true + listenRange: 2 + toggleOnInteract: false + - type: RadioSpeaker + toggleOnInteract: false + - type: DeepSpaceCom + supportedChannels: + - DeepSpace + - Common + - type: TTS + voicePrototypeId: Sentrybot + - type: Speech + speechVerb: Robotic + - type: ActivatableUI + key: enum.DeepSpaceComUiKey.Key + - type: UserInterface + interfaces: + enum.DeepSpaceComUiKey.Key: + type: DeepSpaceComBoundUI + - type: Computer + board: DeepSpaceComComputerWallMountCircuitboard + - type: PointLight + radius: 1.5 + energy: 1.6 + color: "#3c5eb5" + - type: Damageable + damageContainer: StructuralInorganic + damageModifierSet: StrongMetallic + +- type: entity + parent: BaseComputerCircuitboard + id: DeepSpaceComComputerWallMountCircuitboard + name: плата настенной консоли заказа грузов + description: Плата для создания настенной консоли заказа грузов. + components: + - type: Sprite + state: cpu_command + - type: ComputerBoard + prototype: DeepSpaceComWallMount + - type: Tag + tags: + - WallMountConsoleElectronics diff --git a/Resources/Textures/White/Structures/Machines/wall_consoles.rsi/comm_layer.png b/Resources/Textures/White/Structures/Machines/wall_consoles.rsi/comm_layer.png new file mode 100644 index 0000000000000000000000000000000000000000..dbe357b8b8b69907deea0f4f99eddf85407fe625 GIT binary patch literal 2321 zcmb_eYitx%6uy;E5G{?OvZ9T{5D)^h^WNPVS)g=_ZD30+s}vha@6O!aopyI;n3;CB zNE!+R1bgudR8pWXyyy0DzL}sz4pS&%q}#x)@(S=xSesZx0()ODq5$8RwiuV9R?h z07eN~sNSv*E|3*H;fAUnM(%XNz}5iFoSinH(u`~(jG|i7PyW8|07+=7pIj^knV?aD zVp`R56D?X^6H=BpE0Rjio<+<|%NQVmY)GUN@uVfE{bUAL#$)F(O%fRsyV*~cI}VBZ zU@cLhn~0FyETu3EOL*}}@Nhm!nn7?3$J305=0u8PWQLVRk;ok+c4w*)xh^m-=M2yM zWX!e=nWj^zlsm<{bu&t{k|fa#M{^v7EhwukX~Q&?v?k>d0?1NK&9F5+NjQiwthd;H z5>w5_kT43cNh_BpoH05L4VrZ`PD~j?RVmmREoMC9TvcckM+ua)Eo{pcY>k+1>sCy^ z19ai_5C=H7!C=A1uv`*}f(y&8Y{g;Z5;Cl{6>2jOU56~a#Z*vbE2cTgiN=sCOayJ+ z4C#72U#Z$WWr7pkEHQPlmQ?kWHSM+qC;)BbCvnw8is30n3URE=Ffu1jXLvlwng(@M zi?j_jWw{W?$-GBqnIWcFGb*&n3)L+3^_` z!Ju57v}~AEP<6mh;+WlwncFj6GS!$T-|Py`_^;;8wS=R8U|j?cn{v~t}t7e;fVxHjv- zNzbI6M!^t7c9eys@9sY%U%5(i__XC%EJDi)e29!q%A>fl_mn<;C-N3-y*qUQD}raj5UU~*p(IrZQ!tDx>`}wK zfP9L8B-}1pPD80@TZQ$>ypV5|2ce$BR$?$2Mfkf;lMf!u{dLWqgBjBI|6ec}k!BS} z|5tpOcej1{^Ge3si8Cy0WO!283Q-d0$;2Doq^^x;0VrBs9VidQI+VW$2WKCuDqb++ z^2(0l?M2Lqv91_10Sq^tvF3>Z-@7+2?zuMk%Yj`-z5I&PsSR(>IBxfDYXnBa4Q_Pb zy3Pxr3A}n{Ap;uEZ`wEhm1TRn&g}eUbI0y&Uw~5w2X>rW-7$Y(CoKCxFD@-DU0e1- zE8`s3_rA{VzI^t`K<{TGE7zr)ODe~1-*hvu1H@N~{ovSBb>nIewf8m^)%OoBy$HrP zr@FpAaYcUatDec-JvReAptN}7k?KbexLTR(-N!!vqw&I(z+M-(RbJWp*SM~cqo4Hj zzh85C4srOOic1Szd;a|OapXQ(1g5Kf4b8PGcZ_ zHhFhVeC9}c{%dc>_J0db{q}tSfs^p+V`JxyXzVUyPBaRj_{X9VCHZOJC;+;@+u8Zn Tg_l-2KP}ajHGxm&Hm>>?In53W literal 0 HcmV?d00001 diff --git a/Resources/Textures/White/Structures/Machines/wall_consoles.rsi/meta.json b/Resources/Textures/White/Structures/Machines/wall_consoles.rsi/meta.json index a1c534889a..06daab01e5 100644 --- a/Resources/Textures/White/Structures/Machines/wall_consoles.rsi/meta.json +++ b/Resources/Textures/White/Structures/Machines/wall_consoles.rsi/meta.json @@ -1,104 +1,113 @@ { - "version": 1, - "license": "CC0-1.0", - "copyright": "Made by Valentyi for WhiteDream", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "comp_wall_0" + "version": 1, + "license": "CC0-1.0", + "copyright": "Made by Valentyi for WhiteDream", + "size": { + "x": 32, + "y": 32 }, - { - "name": "comp_wall_broken" - }, - { - "name": "comp_wall_frame_2" - }, - { - "name": "comp_wall_frame_1_2" - }, - { - "name": "comp_wall_frame_1" - }, - { - "name": "comp_wall_frame_0_1" - }, - { - "name": "comp_wall_frame_0" - }, - { - "name": "miner_layer", - "delays": [ - [ - 2.0, - 2.0 - ] - ] - }, - { - "name": "scanner_layer", - "delays": [ - [ - 2.0, - 2.0 - ] - ] - }, - { - "name": "energy_layer", - "delays": [ - [ - 2.0, - 2.0 - ] - ] - }, - { - "name": "no_board_layer", - "delays": [ - [ - 2.0, - 2.0 - ] - ] - }, - { - "name": "request_layer", - "delays": [ - [ - 2.0, - 2.0 - ] - ] - }, - { - "name": "service_layer", - "delays": [ - [ - 2.0, - 2.0 - ] - ] - }, - { - "name": "research_layer", - "delays": [ - [ - 2.0, - 2.0 - ] - ] - }, - { - "name": "artifact_layer", - "delays": [ - [ - 2.0, - 2.0 - ] - ] - } - ] -} + "states": [ + { + "name": "comp_wall_0" + }, + { + "name": "comp_wall_broken" + }, + { + "name": "comp_wall_frame_2" + }, + { + "name": "comp_wall_frame_1_2" + }, + { + "name": "comp_wall_frame_1" + }, + { + "name": "comp_wall_frame_0_1" + }, + { + "name": "comp_wall_frame_0" + }, + { + "name": "miner_layer", + "delays": [ + [ + 2.0, + 2.0 + ] + ] + }, + { + "name": "scanner_layer", + "delays": [ + [ + 2.0, + 2.0 + ] + ] + }, + { + "name": "energy_layer", + "delays": [ + [ + 2.0, + 2.0 + ] + ] + }, + { + "name": "no_board_layer", + "delays": [ + [ + 2.0, + 2.0 + ] + ] + }, + { + "name": "request_layer", + "delays": [ + [ + 2.0, + 2.0 + ] + ] + }, + { + "name": "service_layer", + "delays": [ + [ + 2.0, + 2.0 + ] + ] + }, + { + "name": "research_layer", + "delays": [ + [ + 2.0, + 2.0 + ] + ] + }, + { + "name": "artifact_layer", + "delays": [ + [ + 2.0, + 2.0 + ] + ] + }, + { + "name": "comm_layer", + "delays": [ + [ + 0.1, + 0.1 + ] + ] + } + ] +} \ No newline at end of file From a877f1e3c675b69325637d021ff2ae2ae9dc5df2 Mon Sep 17 00:00:00 2001 From: BIGZi0348 Date: Wed, 12 Mar 2025 23:34:42 +0300 Subject: [PATCH 06/22] =?UTF-8?q?=D0=A8=D0=B0=D1=82=D1=82=D0=BB=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Shuttles/ShuttleEvent}/lost_cargo.yml | 53 +- .../ShuttleEvent/traveling_china_cuisine.yml | 1990 +++++++++++++++++ Resources/Prototypes/GameRules/events.yml | 5 +- .../Shuttles/shuttle_incoming_event.yml | 4 +- 4 files changed, 2036 insertions(+), 16 deletions(-) rename Resources/Maps/{Shuttles/ShuttleEvent/White => White/Shuttles/ShuttleEvent}/lost_cargo.yml (98%) create mode 100644 Resources/Maps/White/Shuttles/ShuttleEvent/traveling_china_cuisine.yml diff --git a/Resources/Maps/Shuttles/ShuttleEvent/White/lost_cargo.yml b/Resources/Maps/White/Shuttles/ShuttleEvent/lost_cargo.yml similarity index 98% rename from Resources/Maps/Shuttles/ShuttleEvent/White/lost_cargo.yml rename to Resources/Maps/White/Shuttles/ShuttleEvent/lost_cargo.yml index ef6a71266a..bd7256d761 100644 --- a/Resources/Maps/Shuttles/ShuttleEvent/White/lost_cargo.yml +++ b/Resources/Maps/White/Shuttles/ShuttleEvent/lost_cargo.yml @@ -17,7 +17,7 @@ entities: name: Cargo shuttle - type: Transform pos: 2.2710133,-2.4148211 - parent: invalid + parent: 140 - type: MapGrid chunks: -1,0: @@ -193,6 +193,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: OccluderTree - type: Shuttle @@ -202,6 +210,19 @@ entities: - type: GravityShake shakeTimes: 10 - type: GasTileOverlay + - uid: 140 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap - proto: AirCanister entities: - uid: 2 @@ -209,6 +230,8 @@ entities: - type: Transform pos: -3.5,-1.5 parent: 1 + - type: PolymorphableCanister + currentPrototype: AirCanister - proto: AirlockGlassShuttle entities: - uid: 3 @@ -303,7 +326,7 @@ entities: - uid: 93 components: - type: Transform - pos: -1.3692467,7.6214685 + pos: -3.7203684,7.754469 parent: 1 - proto: CableApcExtension entities: @@ -635,6 +658,14 @@ entities: rot: 3.141592653589793 rad pos: -2.5,7.5 parent: 1 +- proto: ComputerDeepSpaceCom + entities: + - uid: 194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 - proto: ComputerShuttle entities: - uid: 80 @@ -879,12 +910,6 @@ entities: parent: 1 - proto: LostCargoTechnicianSpawner entities: - - uid: 69 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 1 - uid: 187 components: - type: Transform @@ -946,6 +971,13 @@ entities: parent: 1 - type: ApcPowerReceiver powerLoad: 0 +- proto: RandomCash + entities: + - uid: 195 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 - proto: RandomPosterAny entities: - uid: 124 @@ -1101,11 +1133,6 @@ entities: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 140 - components: - - type: Transform - pos: -1.5,7.5 - parent: 1 - proto: Thruster entities: - uid: 141 diff --git a/Resources/Maps/White/Shuttles/ShuttleEvent/traveling_china_cuisine.yml b/Resources/Maps/White/Shuttles/ShuttleEvent/traveling_china_cuisine.yml new file mode 100644 index 0000000000..405eea8dd9 --- /dev/null +++ b/Resources/Maps/White/Shuttles/ShuttleEvent/traveling_china_cuisine.yml @@ -0,0 +1,1990 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 14: FloorBar + 40: FloorDirt + 44: FloorFreezer + 50: FloorGrassLight + 76: FloorRGlass + 85: FloorShuttleWhite + 96: FloorSteelDirty + 98: FloorSteelLime + 106: FloorTechMaint3 + 112: FloorWhiteMini + 117: FloorWhitePlastic + 119: FloorWoodTile + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: SRV "Salami-Salami" + - type: Transform + pos: -0.5104167,-0.5 + parent: 71 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: YgAAAAAAYgAAAAAAYgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAMgAAAAAAMgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAATAAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAdwAAAAAAdwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAATAAAAAAALAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAATAAAAAAALAAAAAAAcAAAAAAAagAAAAAAKAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAATAAAAAAALAAAAAAAcAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAATAAAAAAALAAAAAAAcAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAAAdQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 3: -2,-7 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 2: -3,-7 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 0: -2,-7 + 1: -3,-7 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 1 + 1: 6 + 2: 128 + 0,-1: + 1: 29303 + -1,0: + 2: 129 + -1,-1: + 1: 28686 + 2: 272 + -1,-2: + 2: 28 + 1: 65024 + -1,-3: + 2: 49152 + 0,-3: + 2: 61440 + 0,-2: + 1: 32624 + 2: 8 + 1,-3: + 2: 4096 + 1,-2: + 2: 65 + 1: 12544 + 3: 512 + 1,-1: + 1: 3 + 2: 320 + uniqueMixes: + - volume: 2500 + temperature: 293.14978 + moles: + - 21.813705 + - 82.06108 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: NavMap + - uid: 71 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree +- proto: AirlockShuttle + entities: + - uid: 2 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 4 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 5 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 +- proto: BarSignMaidCafe + entities: + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 +- proto: BlastDoor + entities: + - uid: 8 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 161 +- proto: Bucket + entities: + - uid: 9 + components: + - type: Transform + pos: 0.32937366,-3.3336349 + parent: 1 +- proto: ButchCleaver + entities: + - uid: 11 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableApcExtension + entities: + - uid: 41 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 +- proto: CableHV + entities: + - uid: 65 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 +- proto: CableMV + entities: + - uid: 67 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 +- proto: ClothingHeadHatCasa + entities: + - uid: 72 + components: + - type: Transform + parent: 74 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterDameDane + entities: + - uid: 79 + components: + - type: Transform + parent: 74 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterDogi + entities: + - uid: 73 + components: + - type: Transform + parent: 74 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitBasic + entities: + - uid: 90 + components: + - type: Transform + parent: 74 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesDameDane + entities: + - uid: 75 + components: + - type: Transform + parent: 74 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitDameDane + entities: + - uid: 76 + components: + - type: Transform + parent: 74 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitFamilyGuy + entities: + - uid: 83 + components: + - type: Transform + pos: 4.1954827,-4.679846 + parent: 1 +- proto: ClothingUniformJumpsuitKimono + entities: + - uid: 77 + components: + - type: Transform + parent: 74 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComputerDeepSpaceCom + entities: + - uid: 232 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 84 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 +- proto: CrateFreezer + entities: + - uid: 10 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14783 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12 + - 26 + - 31 + - 39 + - 27 + - 36 + - 28 + - 35 + - 23 + - 34 + - 21 + - 30 + - 22 + - 14 + - 40 + - 20 + - 18 + - 17 + - 19 + - 15 + - 16 + - 38 + - 32 + - 33 + - 37 + - 25 + - 13 + - 24 + - 29 + - 11 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: DrinkCanPack + entities: + - uid: 85 + components: + - type: Transform + pos: 2.4942255,-4.6459746 + parent: 1 +- proto: DrinkGlass + entities: + - uid: 86 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.9675496,-6.258177 + parent: 1 + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.9050496,-6.383177 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.8425496,-6.086302 + parent: 1 +- proto: EggySeeds + entities: + - uid: 89 + components: + - type: Transform + pos: 4.8663497,-4.2508607 + parent: 1 +- proto: ExtendedEmergencyOxygenTankFilled + entities: + - uid: 78 + components: + - type: Transform + parent: 74 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FaxMachineBase + entities: + - uid: 126 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - type: FaxMachine + name: Шаттл Бистро +- proto: FolderSpawner + entities: + - uid: 188 + components: + - type: Transform + pos: 2.6700735,-0.7461357 + parent: 1 +- proto: FoodBowlBig + entities: + - uid: 12 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBreadMoldySlice + entities: + - uid: 91 + components: + - type: Transform + pos: 4.5392327,-5.695471 + parent: 1 +- proto: FoodBreadTofu + entities: + - uid: 92 + components: + - type: Transform + pos: -0.56204444,-5.412466 + parent: 1 +- proto: FoodButter + entities: + - uid: 14 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodEgg + entities: + - uid: 15 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 20 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMealSashimi + entities: + - uid: 93 + components: + - type: Transform + pos: 2.532601,-3.619526 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 2.5117679,-3.192443 + parent: 1 +- proto: FoodMeat + entities: + - uid: 21 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatBear + entities: + - uid: 23 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatBearCooked + entities: + - uid: 25 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatClown + entities: + - uid: 26 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatCorgi + entities: + - uid: 27 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatDragon + entities: + - uid: 96 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 97 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 98 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatFish + entities: + - uid: 112 + components: + - type: Transform + pos: 2.3519397,-4.0480876 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 2.5602732,-4.4543376 + parent: 1 +- proto: FoodMeatGoliath + entities: + - uid: 28 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 29 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatHuman + entities: + - uid: 30 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatLizard + entities: + - uid: 31 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatPlant + entities: + - uid: 32 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatRat + entities: + - uid: 33 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatRouny + entities: + - uid: 34 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 35 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatSnake + entities: + - uid: 36 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 37 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatSpider + entities: + - uid: 38 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodNoodlesButter + entities: + - uid: 99 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 100 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodNoodlesChowmein + entities: + - uid: 101 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodNoodlesMeatball + entities: + - uid: 102 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodRiceBoiled + entities: + - uid: 103 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 104 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 105 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 114 + components: + - type: Transform + pos: 4.2319775,-4.0944357 + parent: 1 +- proto: FoodRiceEgg + entities: + - uid: 106 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 107 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodRiceGumbo + entities: + - uid: 108 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodRicePork + entities: + - uid: 109 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 110 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodRicePudding + entities: + - uid: 111 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodTofu + entities: + - uid: 115 + components: + - type: Transform + pos: -2.4682944,-0.4437158 + parent: 1 +- proto: GeneratorWallmountAPU + entities: + - uid: 116 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - type: PowerSupplier + supplyRampRate: 1000 + supplyRampTolerance: 1000 + supplyRate: 16000 +- proto: GravityGeneratorMini + entities: + - uid: 117 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 +- proto: Grille + entities: + - uid: 118 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 +- proto: GrowingPot + entities: + - uid: 187 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 +- proto: HospitalCurtains + entities: + - uid: 124 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 +- proto: HospitalCurtainsOpen + entities: + - uid: 125 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: HydroponicsToolClippers + entities: + - uid: 127 + components: + - type: Transform + pos: 4.6706424,-4.7269287 + parent: 1 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.0306153,-4.877862 + parent: 1 +- proto: KitchenElectricGrill + entities: + - uid: 129 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 +- proto: KitchenKnife + entities: + - uid: 80 + components: + - type: Transform + parent: 74 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: KitchenMicrowave + entities: + - uid: 130 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 +- proto: KitchenReagentGrinder + entities: + - uid: 131 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 +- proto: LockerFreezerBase + entities: + - uid: 95 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - type: PointLight + color: '#D56C6CFF' + enabled: True + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14798 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 110 + - 109 + - 103 + - 104 + - 105 + - 96 + - 98 + - 97 + - 99 + - 101 + - 100 + - 106 + - 102 + - 108 + - 107 + - 111 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSteel + entities: + - uid: 74 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - type: PointLight + color: '#D56C6CFF' + enabled: True + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14703 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 147 + - 82 + - 90 + - 185 + - 75 + - 79 + - 72 + - 77 + - 81 + - 78 + - 73 + - 76 + - 80 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: MaterialSheetMeat + entities: + - uid: 39 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Mattress + entities: + - uid: 132 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 +- proto: NitrogenTankFilled + entities: + - uid: 81 + components: + - type: Transform + parent: 74 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: NoticeBoard + entities: + - uid: 133 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 +- proto: Pen + entities: + - uid: 82 + components: + - type: Transform + parent: 74 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PlushieVox + entities: + - uid: 134 + components: + - type: Transform + pos: -0.5571752,-4.2839594 + parent: 1 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PosterLegitFruitBowl + entities: + - uid: 135 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: PottedPlantRandom + entities: + - uid: 136 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 +- proto: RagItem + entities: + - uid: 144 + components: + - type: Transform + pos: -0.47175223,-3.4022202 + parent: 1 +- proto: RandomSpawner100 + entities: + - uid: 145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 +- proto: ReagentContainerFlour + entities: + - uid: 40 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RiceSeeds + entities: + - uid: 146 + components: + - type: Transform + pos: 4.716352,-4.1569357 + parent: 1 +- proto: RubberStampTrader + entities: + - uid: 147 + components: + - type: Transform + parent: 74 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Shovel + entities: + - uid: 148 + components: + - type: Transform + pos: 5.0644813,-4.460167 + parent: 1 +- proto: ShuttersWindowOpen + entities: + - uid: 149 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 160 + - uid: 150 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 160 + - uid: 151 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 160 + - uid: 152 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 160 +- proto: ShuttleWindow + entities: + - uid: 153 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 +- proto: SignalButton + entities: + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 150: + - Pressed: Toggle + 149: + - Pressed: Toggle + 151: + - Pressed: Toggle + 152: + - Pressed: Toggle + - uid: 161 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 8: + - Pressed: Toggle +- proto: SignDoors + entities: + - uid: 162 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 +- proto: SinkStemlessWater + entities: + - uid: 163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 +- proto: SodaDispenser + entities: + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1 +- proto: StoolBar + entities: + - uid: 165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 168 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 +- proto: Table + entities: + - uid: 169 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 + - uid: 171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 +- proto: TableGlass + entities: + - uid: 172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 +- proto: TableStone + entities: + - uid: 175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 +- proto: TableWood + entities: + - uid: 178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 +- proto: Thruster + entities: + - uid: 179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 1 + - uid: 183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 1 + - uid: 184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 +- proto: ToolboxMechanicalFilled + entities: + - uid: 185 + components: + - type: Transform + parent: 74 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TravelingChefSpawner + entities: + - uid: 186 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 189 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + - uid: 198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - uid: 199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 1 + - uid: 201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 + - uid: 215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 1 + - uid: 221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 + - uid: 231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 1 +... diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 3772e8286f..f35e85bd9f 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -384,7 +384,7 @@ - id: MobGiantSpiderAngry prob: 0.05 -- type: entity +- type: entity # WD id: BorerSpawn parent: BaseGameRule noSpawn: true @@ -432,6 +432,7 @@ minimumPlayers: 30 weight: 2 duration: 1 + maxOccurrences: 1 # WD - type: ZombieRule - type: AntagSelection definitions: @@ -466,6 +467,7 @@ weight: 5.5 minimumPlayers: 20 duration: 1 + maxOccurrences: 2 # WD - type: LoadMapRule preloadedGrid: ShuttleStriker - type: NukeopsRule @@ -500,6 +502,7 @@ weight: 8 minimumPlayers: 15 reoccurrenceDelay: 30 + maxOccurrences: 2 # WD startAnnouncement: station-event-communication-interception startAudio: path: /Audio/Announcements/intercept.ogg diff --git a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml index 1ca2f23dcc..e3babd4ea1 100644 --- a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml +++ b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml @@ -5,12 +5,12 @@ - type: preloadedGrid id: ShuttleCargoLost - path: /Maps/Shuttles/ShuttleEvent/White/lost_cargo.yml + path: /Maps/White/Shuttles/ShuttleEvent/lost_cargo.yml copies: 1 # WD from 2 to 1 - type: preloadedGrid id: TravelingCuisine - path: /Maps/Shuttles/ShuttleEvent/traveling_china_cuisine.yml + path: /Maps/White/Shuttles/ShuttleEvent/traveling_china_cuisine.yml copies: 1 # WD from 2 to 1 - type: preloadedGrid From 2cfcf72f7745d533d9b140034573a23246a71f8d Mon Sep 17 00:00:00 2001 From: BIGZi0348 Date: Thu, 13 Mar 2025 23:25:26 +0300 Subject: [PATCH 07/22] =?UTF-8?q?=D0=95=D1=89=D1=91=20=D1=88=D0=B0=D1=82?= =?UTF-8?q?=D1=82=D0=BB=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../StationCargoShuttleComponent.cs | 2 +- .../White/Shuttles/ShuttleEvent/honki.yml | 2922 +++++++++++++++++ .../Shuttles/ShuttleEvent/lost_cargo.yml | 40 +- .../White/Shuttles/ShuttleEvent/striker.yml | 2404 ++++++++++++++ .../Shuttles/ShuttleEvent/syndie_evacpod.yml | 1325 ++++++++ .../ShuttleEvent/traveling_china_cuisine.yml | 58 +- Resources/Maps/White/Shuttles/cargo.yml | 1274 +++++++ Resources/Maps/White/Shuttles/mining.yml | 1483 +++++++++ Resources/Maps/White/Shuttles/wizard.yml | 36 +- .../Prototypes/Entities/Stations/base.yml | 4 +- .../Shuttles/shuttle_incoming_event.yml | 6 +- 11 files changed, 9513 insertions(+), 41 deletions(-) create mode 100644 Resources/Maps/White/Shuttles/ShuttleEvent/honki.yml create mode 100644 Resources/Maps/White/Shuttles/ShuttleEvent/striker.yml create mode 100644 Resources/Maps/White/Shuttles/ShuttleEvent/syndie_evacpod.yml create mode 100644 Resources/Maps/White/Shuttles/cargo.yml create mode 100644 Resources/Maps/White/Shuttles/mining.yml diff --git a/Content.Server/Shuttles/Components/StationCargoShuttleComponent.cs b/Content.Server/Shuttles/Components/StationCargoShuttleComponent.cs index 6ee890a7e9..0c29a0f5da 100644 --- a/Content.Server/Shuttles/Components/StationCargoShuttleComponent.cs +++ b/Content.Server/Shuttles/Components/StationCargoShuttleComponent.cs @@ -15,5 +15,5 @@ public sealed partial class StationCargoShuttleComponent : Component // YAML is filled out so mappers don't have to read here. [DataField(required: true)] - public ResPath Path = new("/Maps/Shuttles/cargo.yml"); + public ResPath Path = new("/Maps/White/Shuttles/cargo.yml"); // WD } diff --git a/Resources/Maps/White/Shuttles/ShuttleEvent/honki.yml b/Resources/Maps/White/Shuttles/ShuttleEvent/honki.yml new file mode 100644 index 0000000000..0ab84eacd2 --- /dev/null +++ b/Resources/Maps/White/Shuttles/ShuttleEvent/honki.yml @@ -0,0 +1,2922 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 20: FloorCarpetClown + 25: FloorClown + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Honkomother + - type: Transform + pos: 1.212189,-1.7551664 + parent: 313 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: GQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAAAGQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAGQAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerNe + decals: + 21: 5,-5 + 39: -4,-1 + 40: 6,-1 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerNw + decals: + 20: -5,-5 + 41: -6,-1 + 42: 4,-1 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerSe + decals: + 0: 2,-3 + 23: 5,-7 + 35: -4,-3 + 36: 6,-3 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerSw + decals: + 1: -2,-3 + 33: -5,-7 + 37: -6,-3 + 38: 4,-3 + - node: + color: '#EFB34196' + id: MiniTileWhiteInnerNe + decals: + 57: -2,0 + - node: + color: '#EFB34196' + id: MiniTileWhiteInnerNw + decals: + 56: 2,0 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineE + decals: + 2: 2,-2 + 3: 2,-1 + 4: 2,0 + 5: 2,1 + 22: 5,-6 + 47: -4,-2 + 48: 6,-2 + 55: -2,1 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineN + decals: + 13: 0,-5 + 14: 4,-5 + 15: -1,-5 + 16: 1,-5 + 17: 3,-5 + 18: -3,-5 + 19: -4,-5 + 49: -5,-1 + 50: 5,-1 + 51: -1,0 + 52: 0,0 + 53: 1,0 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineS + decals: + 10: -1,-3 + 11: 0,-3 + 12: 1,-3 + 24: 4,-7 + 25: 3,-7 + 26: 2,-7 + 27: 1,-7 + 28: 0,-7 + 29: -1,-7 + 30: -2,-7 + 31: -3,-7 + 32: -4,-7 + 43: -5,-3 + 44: 5,-3 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineW + decals: + 6: -2,-2 + 7: -2,-1 + 8: -2,0 + 9: -2,1 + 34: -5,-6 + 45: 4,-2 + 46: -6,-2 + 54: 2,1 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 887 + 1: 18432 + 0,-1: + 0: 30576 + -1,0: + 0: 2252 + 1: 16912 + 1,0: + 1: 56 + 1,-1: + 2: 4112 + 0: 10016 + 3: 16448 + 0,-2: + 0: 48051 + -1,-2: + 0: 48056 + -1,-1: + 3: 16 + 0: 56768 + 0,-3: + 1: 32768 + 1,-3: + 1: 12288 + 1,-2: + 0: 13104 + 1: 34820 + -2,0: + 1: 130 + -2,-1: + 0: 52800 + 3: 128 + -2,-2: + 1: 8708 + 0: 34944 + -2,-3: + 1: 32768 + -1,-3: + 1: 12288 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - uid: 313 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree +- proto: AirCanister + entities: + - uid: 2 + components: + - type: Transform + anchored: True + pos: -1.5,-2.5 + parent: 1 + - type: Physics + bodyType: Static + - type: PolymorphableCanister + currentPrototype: AirCanister + - uid: 3 + components: + - type: Transform + anchored: True + pos: 2.5,-2.5 + parent: 1 + - type: Physics + bodyType: Static + - type: PolymorphableCanister + currentPrototype: AirCanister +- proto: AirlockShuttle + entities: + - uid: 4 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 +- proto: AltarBananium + entities: + - uid: 374 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 5 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 +- proto: BananaPhoneInstrument + entities: + - uid: 7 + components: + - type: Transform + pos: 2.268822,0.6392218 + parent: 1 +- proto: BananiumDoor + entities: + - uid: 8 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 12 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 +- proto: BarricadeBlock + entities: + - uid: 372 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 +- proto: Bed + entities: + - uid: 13 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 +- proto: BedsheetSpawner + entities: + - uid: 17 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 +- proto: BikeHornImplanter + entities: + - uid: 22 + components: + - type: Transform + parent: 21 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27 + components: + - type: Transform + parent: 26 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BorgModuleClowning + entities: + - uid: 379 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableApcExtension + entities: + - uid: 31 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 +- proto: CableHV + entities: + - uid: 82 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 +- proto: CableMV + entities: + - uid: 86 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 92 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 +- proto: CigaretteBanana + entities: + - uid: 94 + components: + - type: Transform + parent: 93 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 95 + components: + - type: Transform + parent: 93 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 96 + components: + - type: Transform + parent: 93 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitClown + entities: + - uid: 97 + components: + - type: Transform + parent: 93 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 100 + components: + - type: Transform + parent: 99 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 104 + components: + - type: Transform + parent: 103 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterClown + entities: + - uid: 105 + components: + - type: Transform + parent: 103 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClownRecorder + entities: + - uid: 107 + components: + - type: Transform + pos: 2.6453638,0.42502415 + parent: 1 +- proto: ClownTroupeSpawner + entities: + - uid: 108 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 +- proto: CluwneHorn + entities: + - uid: 23 + components: + - type: Transform + parent: 21 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28 + components: + - type: Transform + parent: 26 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComfyChair + entities: + - uid: 111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 113 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: CrateCargoGambling + entities: + - uid: 114 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 +- proto: CratePirate + entities: + - uid: 21 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 261 + - 22 + - 23 + - 25 + - 24 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 26 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 30 + - 28 + - 27 + - 315 + - 29 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 115 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 379 + - 116 + - 117 + - 118 + - 119 + - 120 + - 126 + - 121 + - 122 + - 123 + - 124 + - 125 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 127 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 137 + - 136 + - 138 + - 135 + - 134 + - 133 + - 132 + - 131 + - 130 + - 129 + - 380 + - 128 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrayonRainbow + entities: + - uid: 382 + components: + - type: Transform + pos: -1.2894332,-0.29621565 + parent: 1 +- proto: DeepSpaceComWallMount + entities: + - uid: 384 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 +- proto: DehydratedSpaceCarp + entities: + - uid: 24 + components: + - type: Transform + parent: 21 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} + - uid: 29 + components: + - type: Transform + parent: 26 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: DeviceQuantumSpinInverter + entities: + - uid: 25 + components: + - type: Transform + parent: 21 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 30 + components: + - type: Transform + parent: 26 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: EmergencyFunnyOxygenTankFilled + entities: + - uid: 98 + components: + - type: Transform + parent: 93 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 101 + components: + - type: Transform + parent: 99 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 106 + components: + - type: Transform + parent: 103 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FaxMachineBase + entities: + - uid: 383 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 +- proto: FloorBananiumEntity + entities: + - uid: 139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 +- proto: FoodBanana + entities: + - uid: 116 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 117 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 118 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 119 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 128 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 129 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 130 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 131 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBurgerClown + entities: + - uid: 144 + components: + - type: Transform + pos: 2.7644207,0.14128423 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 2.2753637,0.14128423 + parent: 1 +- proto: FoodCakeClown + entities: + - uid: 146 + components: + - type: Transform + pos: 2.4229474,-0.24963892 + parent: 1 +- proto: FoodMeatClown + entities: + - uid: 147 + components: + - type: Transform + pos: 3.4782665,-4.592343 + parent: 1 +- proto: FoodPieBananaCream + entities: + - uid: 120 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 121 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 122 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 123 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 124 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 125 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 132 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 133 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 134 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 135 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 136 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 137 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GasPassiveVent + entities: + - uid: 148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 +- proto: GasPipeBend + entities: + - uid: 150 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 +- proto: GasPipeFourway + entities: + - uid: 154 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: GasPipeStraight + entities: + - uid: 161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - uid: 171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + - uid: 190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - uid: 192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - uid: 193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + - uid: 198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + - uid: 199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 +- proto: GasPipeTJunction + entities: + - uid: 201 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 +- proto: GasPort + entities: + - uid: 203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 +- proto: GasVentPump + entities: + - uid: 205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 +- proto: GasVentScrubber + entities: + - uid: 211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + - uid: 212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + - uid: 214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + - uid: 215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 +- proto: GeneratorWallmountAPU + entities: + - uid: 219 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 +- proto: GoldenBikeHorn + entities: + - uid: 222 + components: + - type: Transform + pos: 6.4591703,-1.2964956 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 223 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 +- proto: Grille + entities: + - uid: 224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + - uid: 225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 + - uid: 229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + - uid: 230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + - uid: 231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 1 + - uid: 232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + - uid: 233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 1 + - uid: 234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + - uid: 235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 1 + - uid: 236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + - uid: 237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-6.5 + parent: 1 + - uid: 238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1 + - uid: 239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + - uid: 240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 243 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + - uid: 248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - uid: 251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + - uid: 254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-4.5 + parent: 1 + - uid: 256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 1 + - uid: 257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 1 + - uid: 258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 259 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 +- proto: LampBanana + entities: + - uid: 260 + components: + - type: Transform + pos: 2.532099,1.060484 + parent: 1 +- proto: LauncherCreamPie + entities: + - uid: 126 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 138 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PaperBin10 + entities: + - uid: 385 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 +- proto: PlasmaWindow + entities: + - uid: 262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - uid: 263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - uid: 264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 1 + - uid: 269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + - uid: 270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + - uid: 271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + - uid: 272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 1 + - uid: 273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 1 + - uid: 274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + - uid: 275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-6.5 + parent: 1 + - uid: 276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + - uid: 277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + - uid: 278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 +- proto: PlasmaWindowDiagonal + entities: + - uid: 281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + - uid: 286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - uid: 287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - uid: 288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 1 + - uid: 292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-4.5 + parent: 1 + - uid: 293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 1 + - uid: 294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 +- proto: PoweredlightLED + entities: + - uid: 297 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 +- proto: PoweredlightOrange + entities: + - uid: 301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 +- proto: PoweredlightPink + entities: + - uid: 302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 1 + - uid: 303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 1 + - uid: 304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - uid: 307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 1 +- proto: RailingCorner + entities: + - uid: 308 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 +- proto: RailingCornerSmall + entities: + - uid: 310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + - uid: 311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 +- proto: RubberStampClown + entities: + - uid: 102 + components: + - type: Transform + parent: 99 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 381 + components: + - type: Transform + pos: -1.6230972,-0.35871565 + parent: 1 +- proto: SpawnClownSpider + entities: + - uid: 312 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 +- proto: SpiderWebClown + entities: + - uid: 376 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 +- proto: StatueBananiumClown + entities: + - uid: 375 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 316 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 +- proto: SuitStorageBase + entities: + - uid: 93 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - type: Lock + locked: False + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 95 + - 96 + - 98 + - 94 + - 97 + - uid: 99 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - type: Lock + locked: False + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 101 + - 100 + - 102 + - uid: 103 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - type: Lock + locked: False + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 106 + - 105 + - 104 +- proto: TablePlasmaGlass + entities: + - uid: 317 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: Thruster + entities: + - uid: 321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 1 + - uid: 322 + components: + - type: Transform + rot: -3.141592653589793 rad + pos: -2.5,-8.5 + parent: 1 + - uid: 323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 1 + - uid: 324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 1 + - uid: 325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-8.5 + parent: 1 + - uid: 326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 +- proto: ToolboxMechanicalFilled + entities: + - uid: 261 + components: + - type: Transform + parent: 21 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 315 + components: + - type: Transform + parent: 26 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 329 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 +- proto: WallClown + entities: + - uid: 330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 1 + - uid: 331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - uid: 332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 + - uid: 333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + - uid: 334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + - uid: 335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + - uid: 336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + - uid: 337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 1 + - uid: 338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 1 + - uid: 339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 1 + - uid: 340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + - uid: 341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + - uid: 342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 1 + - uid: 343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 + - uid: 344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - uid: 345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - uid: 353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + - uid: 354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 + - uid: 357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + - uid: 358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - uid: 360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - uid: 361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + - uid: 370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 +- proto: WhoopieCushion + entities: + - uid: 380 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage +... diff --git a/Resources/Maps/White/Shuttles/ShuttleEvent/lost_cargo.yml b/Resources/Maps/White/Shuttles/ShuttleEvent/lost_cargo.yml index bd7256d761..908831cebc 100644 --- a/Resources/Maps/White/Shuttles/ShuttleEvent/lost_cargo.yml +++ b/Resources/Maps/White/Shuttles/ShuttleEvent/lost_cargo.yml @@ -326,7 +326,7 @@ entities: - uid: 93 components: - type: Transform - pos: -3.7203684,7.754469 + pos: -1.366688,7.6937246 parent: 1 - proto: CableApcExtension entities: @@ -604,6 +604,12 @@ entities: - type: Transform pos: -0.5,-0.5 parent: 1 + - uid: 69 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 - uid: 71 components: - type: Transform @@ -644,14 +650,14 @@ entities: - type: Transform pos: -0.5,5.5 parent: 1 -- proto: ChairPilotSeat - entities: - - uid: 70 + - uid: 139 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,2.5 + rot: 1.5707963267948966 rad + pos: -1.5,2.5 parent: 1 +- proto: ChairPilotSeat + entities: - uid: 79 components: - type: Transform @@ -663,8 +669,8 @@ entities: - uid: 194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,7.5 + rot: 1.5707963267948966 rad + pos: -3.5,7.5 parent: 1 - proto: ComputerShuttle entities: @@ -810,12 +816,12 @@ entities: - uid: 99 components: - type: Transform - pos: -3.2915764,7.812316 + pos: -1.616936,7.547891 parent: 1 - uid: 100 components: - type: Transform - pos: -3.4715438,7.654894 + pos: -1.53352,7.422891 parent: 1 - proto: GasPipeBend entities: @@ -973,10 +979,10 @@ entities: powerLoad: 0 - proto: RandomCash entities: - - uid: 195 + - uid: 126 components: - type: Transform - pos: -3.5,7.5 + pos: -1.5,7.5 parent: 1 - proto: RandomPosterAny entities: @@ -1122,16 +1128,10 @@ entities: parent: 1 - proto: TableReinforced entities: - - uid: 126 + - uid: 70 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,2.5 - parent: 1 - - uid: 139 - components: - - type: Transform - pos: -3.5,7.5 + pos: -1.5,7.5 parent: 1 - proto: Thruster entities: diff --git a/Resources/Maps/White/Shuttles/ShuttleEvent/striker.yml b/Resources/Maps/White/Shuttles/ShuttleEvent/striker.yml new file mode 100644 index 0000000000..f9be6853d1 --- /dev/null +++ b/Resources/Maps/White/Shuttles/ShuttleEvent/striker.yml @@ -0,0 +1,2404 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 29: FloorDark + 84: FloorShuttleRed + 104: FloorTechMaint + 105: FloorTechMaint2 + 118: FloorWood + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 3 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 325 + components: + - type: MetaData + - type: Transform + pos: 0.5638949,0.47865233 + parent: 3 + - type: MapGrid + chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAADdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAHQAAAAABHQAAAAABHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAB + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: VAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: Shuttle + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 11: 1,-1 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 5: -3,-1 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 4: 1,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 3: -3,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 0: -1,-3 + 1: -2,-3 + 2: 0,-3 + - node: + color: '#7F1C1FFF' + id: BrickTileWhiteCornerNe + decals: + 13: 1,-1 + - node: + color: '#7F1C1FFF' + id: BrickTileWhiteCornerNw + decals: + 12: -3,-1 + - node: + color: '#7F1C1FFF' + id: BrickTileWhiteCornerSe + decals: + 9: 1,-3 + - node: + color: '#7F1C1FFF' + id: BrickTileWhiteCornerSw + decals: + 10: -3,-3 + - node: + color: '#7F1C1FFF' + id: BrickTileWhiteLineS + decals: + 6: -2,-3 + 7: -1,-3 + 8: 0,-3 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 23: 2,-2 + 24: -4,-2 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 14: 1,-2 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 16: -3,-2 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 15: -1,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 17: -1,-5 + 18: 0,-5 + 19: -2,-5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 20: -2,-6 + 21: -1,-6 + 22: 0,-6 + - type: GridAtmosphere + version: 2 + data: + tiles: + -1,-1: + 0: 65535 + 0,-1: + 0: 65535 + -2,-1: + 0: 52424 + -1,-3: + 0: 65280 + -1,-2: + 0: 65535 + 0,-3: + 0: 30464 + 0,-2: + 0: 30583 + -2,0: + 0: 8 + -1,0: + 0: 3839 + 0,0: + 0: 895 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: GravityShake + shakeTimes: 10 + - type: SpreaderGrid + - type: GridPathfinding + - type: NukeOpsShuttle +- proto: AirCanister + entities: + - uid: 91 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 325 + - type: PolymorphableCanister + currentPrototype: AirCanister +- proto: AirlockExternalShuttleSyndicateLocked + entities: + - uid: 142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 325 +- proto: AirlockSyndicateLocked + entities: + - uid: 20 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 325 + - uid: 88 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 325 +- proto: APCBasic + entities: + - uid: 107 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 325 + - type: PowerNetworkBattery + loadingNetworkDemand: 15107 + currentReceiving: 15106.935 + currentSupply: 15107 + supplyRampPosition: 0.064453125 +- proto: AtmosDeviceFanTiny + entities: + - uid: 6 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 325 +- proto: Bed + entities: + - uid: 76 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 325 +- proto: BedsheetSyndie + entities: + - uid: 164 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 325 +- proto: BlastDoorOpen + entities: + - uid: 190 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 325 + - type: ContainerContainer + containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 331 + - type: DeviceLinkSink + links: + - 170 + - uid: 191 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 325 + - type: ContainerContainer + containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 332 + - type: DeviceLinkSink + links: + - 170 + - uid: 192 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 325 + - type: ContainerContainer + containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 333 + - type: DeviceLinkSink + links: + - 170 + - uid: 193 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 325 + - type: ContainerContainer + containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 334 + - type: DeviceLinkSink + links: + - 170 + - uid: 196 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 325 + - type: ContainerContainer + containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 337 + - type: DeviceLinkSink + links: + - 170 + - uid: 199 + components: + - type: Transform + pos: -1.5,2.5 + parent: 325 + - type: ContainerContainer + containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 340 + - type: DeviceLinkSink + links: + - 170 + - uid: 200 + components: + - type: Transform + pos: -0.5,2.5 + parent: 325 + - type: ContainerContainer + containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 341 + - type: DeviceLinkSink + links: + - 170 + - uid: 201 + components: + - type: Transform + pos: 0.5,2.5 + parent: 325 + - type: ContainerContainer + containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 342 + - type: DeviceLinkSink + links: + - 170 +- proto: BoxMRE + entities: + - uid: 320 + components: + - type: Transform + pos: 0.70504504,-7.29326 + parent: 325 +- proto: CableApcExtension + entities: + - uid: 120 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 325 + - uid: 121 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 325 + - uid: 122 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 325 + - uid: 123 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 325 + - uid: 124 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 325 + - uid: 125 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 325 + - uid: 126 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 325 + - uid: 127 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 325 + - uid: 128 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 325 + - uid: 129 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 325 + - uid: 130 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 325 + - uid: 131 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 325 + - uid: 132 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 325 + - uid: 133 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 325 + - uid: 134 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 325 + - uid: 135 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 325 + - uid: 136 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 325 + - uid: 137 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 325 + - uid: 138 + components: + - type: Transform + pos: -0.5,0.5 + parent: 325 + - uid: 139 + components: + - type: Transform + pos: -0.5,1.5 + parent: 325 + - uid: 140 + components: + - type: Transform + pos: -0.5,2.5 + parent: 325 + - uid: 141 + components: + - type: Transform + pos: -1.5,1.5 + parent: 325 + - uid: 143 + components: + - type: Transform + pos: 0.5,1.5 + parent: 325 + - uid: 145 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 325 + - uid: 146 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 325 + - uid: 147 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 325 + - uid: 148 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 325 + - uid: 149 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 325 + - uid: 150 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 325 + - uid: 151 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 325 + - uid: 152 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 325 + - uid: 153 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 325 + - uid: 154 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 325 + - uid: 155 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 325 + - uid: 156 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 325 + - uid: 157 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 325 + - uid: 158 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 325 +- proto: CableHV + entities: + - uid: 111 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 325 + - uid: 112 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 325 + - uid: 113 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 325 + - uid: 114 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 325 + - uid: 115 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 325 + - uid: 116 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 325 +- proto: CableHVStack1 + entities: + - uid: 235 + components: + - type: Transform + parent: 41 + - type: Stack + count: 10 + - type: RCDAmmo + charges: 2 + - type: Physics + canCollide: False + - uid: 239 + components: + - type: Transform + parent: 56 + - type: Stack + count: 10 + - type: RCDAmmo + charges: 2 + - type: Physics + canCollide: False +- proto: CableMV + entities: + - uid: 117 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 325 + - uid: 118 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 325 + - uid: 119 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 325 +- proto: CapacitorStockPart + entities: + - uid: 233 + components: + - type: Transform + parent: 41 + - type: Physics + canCollide: False + - uid: 234 + components: + - type: Transform + parent: 41 + - type: Physics + canCollide: False + - uid: 237 + components: + - type: Transform + parent: 56 + - type: Physics + canCollide: False + - uid: 238 + components: + - type: Transform + parent: 56 + - type: Physics + canCollide: False + - uid: 241 + components: + - type: Transform + parent: 58 + - type: Physics + canCollide: False + - uid: 242 + components: + - type: Transform + parent: 58 + - type: Physics + canCollide: False + - uid: 243 + components: + - type: Transform + parent: 58 + - type: Physics + canCollide: False + - uid: 254 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - uid: 261 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 268 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - uid: 275 + components: + - type: Transform + parent: 98 + - type: Physics + canCollide: False + - uid: 282 + components: + - type: Transform + parent: 99 + - type: Physics + canCollide: False + - uid: 289 + components: + - type: Transform + parent: 100 + - type: Physics + canCollide: False + - uid: 296 + components: + - type: Transform + parent: 101 + - type: Physics + canCollide: False + - uid: 303 + components: + - type: Transform + parent: 102 + - type: Physics + canCollide: False +- proto: Carpet + entities: + - uid: 74 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 325 + - uid: 89 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 325 +- proto: Catwalk + entities: + - uid: 159 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 325 + - uid: 160 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 325 + - uid: 161 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 325 +- proto: ChairOfficeDark + entities: + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 325 +- proto: ChairPilotSeat + entities: + - uid: 78 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 325 +- proto: ComputerIFFSyndicate + entities: + - uid: 40 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 325 +- proto: ComputerShuttleSyndie + entities: + - uid: 64 + components: + - type: Transform + pos: -0.5,1.5 + parent: 325 + - type: ContainerContainer + containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 245 + disk_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CyberPen + entities: + - uid: 77 + components: + - type: Transform + pos: -1.1813428,-5.15565 + parent: 325 +- proto: DeepSpaceComWallMount + entities: + - uid: 5 + components: + - type: Transform + pos: -1.5,1.5 + parent: 325 +- proto: DoorElectronics + entities: + - uid: 331 + components: + - type: Transform + parent: 190 + - type: Physics + canCollide: False + - uid: 332 + components: + - type: Transform + parent: 191 + - type: Physics + canCollide: False + - uid: 333 + components: + - type: Transform + parent: 192 + - type: Physics + canCollide: False + - uid: 334 + components: + - type: Transform + parent: 193 + - type: Physics + canCollide: False + - uid: 337 + components: + - type: Transform + parent: 196 + - type: Physics + canCollide: False + - uid: 340 + components: + - type: Transform + parent: 199 + - type: Physics + canCollide: False + - uid: 341 + components: + - type: Transform + parent: 200 + - type: Physics + canCollide: False + - uid: 342 + components: + - type: Transform + parent: 201 + - type: Physics + canCollide: False + - uid: 346 + components: + - type: Transform + parent: 206 + - type: Physics + canCollide: False +- proto: DresserFilled + entities: + - uid: 85 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 325 +- proto: DrinkNukieCan + entities: + - uid: 144 + components: + - type: Transform + pos: -2.6964839,-2.109029 + parent: 325 +- proto: FaxMachineSyndie + entities: + - uid: 46 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 325 + - type: FaxMachine + name: Striker +- proto: filingCabinetRandom + entities: + - uid: 75 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 325 +- proto: Firelock + entities: + - uid: 224 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 325 + - type: ContainerContainer + containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 350 + - type: DeviceNetwork + address: 44a24659 + receiveFrequency: 1621 + - uid: 225 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 325 + - type: ContainerContainer + containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 351 + - type: DeviceNetwork + address: 6fdb75cf + receiveFrequency: 1621 +- proto: FirelockElectronics + entities: + - uid: 350 + components: + - type: Transform + parent: 224 + - type: Physics + canCollide: False + - uid: 351 + components: + - type: Transform + parent: 225 + - type: Physics + canCollide: False +- proto: FoodBoxDonut + entities: + - uid: 87 + components: + - type: Transform + pos: -2.470145,-2.3953476 + parent: 325 +- proto: GasPipeFourway + entities: + - uid: 216 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 325 +- proto: GasPipeStraight + entities: + - uid: 211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 325 + - uid: 213 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 325 + - uid: 214 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 325 + - uid: 215 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 325 + - uid: 217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 325 +- proto: GasPipeTJunction + entities: + - uid: 210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 325 + - uid: 212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 325 +- proto: GasPort + entities: + - uid: 59 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 325 +- proto: GasVentPump + entities: + - uid: 218 + components: + - type: Transform + pos: -0.5,0.5 + parent: 325 + - type: DeviceNetwork + address: Vnt-5f41a0ae + transmitFrequency: 1621 + receiveFrequency: 1621 + - uid: 219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 325 + - type: DeviceNetwork + address: Vnt-129c27d2 + transmitFrequency: 1621 + receiveFrequency: 1621 + - uid: 220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 325 + - type: DeviceNetwork + address: Vnt-11c4609d + transmitFrequency: 1621 + receiveFrequency: 1621 + - uid: 221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 325 + - type: DeviceNetwork + address: Vnt-6859729f + transmitFrequency: 1621 + receiveFrequency: 1621 + - uid: 222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 325 + - type: DeviceNetwork + address: Vnt-19d24c7f + transmitFrequency: 1621 + receiveFrequency: 1621 +- proto: GeneratorBasic15kW + entities: + - uid: 41 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 325 + - type: PowerSupplier + supplyRampPosition: 7552.5303 + - type: ContainerContainer + containers: + machine_board: !type:Container + ents: + - 232 + machine_parts: !type:Container + ents: + - 233 + - 234 + - 235 + - uid: 56 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 325 + - type: PowerSupplier + supplyRampPosition: 7552.5303 + - type: ContainerContainer + containers: + machine_board: !type:Container + ents: + - 236 + machine_parts: !type:Container + ents: + - 237 + - 238 + - 239 +- proto: GravityGeneratorMini + entities: + - uid: 57 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 325 +- proto: Grille + entities: + - uid: 1 + components: + - type: Transform + pos: -0.5,2.5 + parent: 325 + - uid: 2 + components: + - type: Transform + pos: -1.5,2.5 + parent: 325 + - uid: 4 + components: + - type: Transform + pos: 0.5,2.5 + parent: 325 + - uid: 21 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 325 + - uid: 50 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 325 + - uid: 51 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 325 + - uid: 52 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 325 + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 325 +- proto: GrilleDiagonal + entities: + - uid: 18 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 325 + - uid: 169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 325 +- proto: Gyroscope + entities: + - uid: 58 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 325 + - type: ContainerContainer + containers: + machine_board: !type:Container + showEnts: False + occludes: True + ents: + - 240 + machine_parts: !type:Container + showEnts: False + occludes: True + ents: + - 241 + - 242 + - 243 + - 244 +- proto: GyroscopeMachineCircuitboard + entities: + - uid: 240 + components: + - type: Transform + parent: 58 + - type: Physics + canCollide: False +- proto: MedkitCombatFilled + entities: + - uid: 19 + components: + - type: Transform + pos: 1.48298,-0.3211529 + parent: 325 +- proto: MicroManipulatorStockPart + entities: + - uid: 250 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - uid: 251 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - uid: 252 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - uid: 253 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - uid: 257 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 258 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 259 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 260 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 264 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - uid: 265 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - uid: 266 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - uid: 267 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - uid: 271 + components: + - type: Transform + parent: 98 + - type: Physics + canCollide: False + - uid: 272 + components: + - type: Transform + parent: 98 + - type: Physics + canCollide: False + - uid: 273 + components: + - type: Transform + parent: 98 + - type: Physics + canCollide: False + - uid: 274 + components: + - type: Transform + parent: 98 + - type: Physics + canCollide: False + - uid: 278 + components: + - type: Transform + parent: 99 + - type: Physics + canCollide: False + - uid: 279 + components: + - type: Transform + parent: 99 + - type: Physics + canCollide: False + - uid: 280 + components: + - type: Transform + parent: 99 + - type: Physics + canCollide: False + - uid: 281 + components: + - type: Transform + parent: 99 + - type: Physics + canCollide: False + - uid: 285 + components: + - type: Transform + parent: 100 + - type: Physics + canCollide: False + - uid: 286 + components: + - type: Transform + parent: 100 + - type: Physics + canCollide: False + - uid: 287 + components: + - type: Transform + parent: 100 + - type: Physics + canCollide: False + - uid: 288 + components: + - type: Transform + parent: 100 + - type: Physics + canCollide: False + - uid: 292 + components: + - type: Transform + parent: 101 + - type: Physics + canCollide: False + - uid: 293 + components: + - type: Transform + parent: 101 + - type: Physics + canCollide: False + - uid: 294 + components: + - type: Transform + parent: 101 + - type: Physics + canCollide: False + - uid: 295 + components: + - type: Transform + parent: 101 + - type: Physics + canCollide: False + - uid: 299 + components: + - type: Transform + parent: 102 + - type: Physics + canCollide: False + - uid: 300 + components: + - type: Transform + parent: 102 + - type: Physics + canCollide: False + - uid: 301 + components: + - type: Transform + parent: 102 + - type: Physics + canCollide: False + - uid: 302 + components: + - type: Transform + parent: 102 + - type: Physics + canCollide: False +- proto: Mirror + entities: + - uid: 321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 325 +- proto: NitrogenTankFilled + entities: + - uid: 105 + components: + - type: Transform + pos: 1.373605,-0.2749618 + parent: 325 +- proto: NukeCodePaper + entities: + - uid: 323 + components: + - type: Transform + pos: 1.561105,-2.5567772 + parent: 325 +- proto: OxygenTankFilled + entities: + - uid: 167 + components: + - type: Transform + pos: 1.60798,-0.3062118 + parent: 325 +- proto: PhoneInstrumentSyndicate + entities: + - uid: 171 + components: + - type: Transform + pos: 0.51331455,-4.19952 + parent: 325 +- proto: PinpointerNuclear + entities: + - uid: 162 + components: + - type: Transform + pos: 1.3790641,-2.3161128 + parent: 325 + - type: Physics + canCollide: False +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 325 + - uid: 109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 325 +- proto: PlushieNuke + entities: + - uid: 47 + components: + - type: Transform + pos: 0.5061571,-5.233775 + parent: 325 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PortableGeneratorSuperPacmanMachineCircuitboard + entities: + - uid: 232 + components: + - type: Transform + parent: 41 + - type: Physics + canCollide: False + - uid: 236 + components: + - type: Transform + parent: 56 + - type: Physics + canCollide: False +- proto: PosterContrabandC20r + entities: + - uid: 24 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 325 +- proto: PosterContrabandEnergySwords + entities: + - uid: 227 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 325 +- proto: PosterContrabandNuclearDeviceInformational + entities: + - uid: 228 + components: + - type: Transform + pos: -2.5,0.5 + parent: 325 +- proto: PosterContrabandSyndicateRecruitment + entities: + - uid: 229 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 325 +- proto: Poweredlight + entities: + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 325 + - uid: 110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 325 +- proto: PoweredlightLED + entities: + - uid: 182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 325 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 325 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 184 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 325 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredSmallLight + entities: + - uid: 204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 325 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: Rack + entities: + - uid: 83 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 325 + - uid: 84 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 325 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 15 + components: + - type: Transform + pos: -1.5,2.5 + parent: 325 + - uid: 16 + components: + - type: Transform + pos: -0.5,2.5 + parent: 325 + - uid: 17 + components: + - type: Transform + pos: 0.5,2.5 + parent: 325 + - uid: 26 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 325 + - uid: 42 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 325 + - uid: 70 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 325 + - uid: 71 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 325 + - uid: 72 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 325 +- proto: ReinforcedPlasmaWindowDiagonal + entities: + - uid: 14 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 325 + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 325 +- proto: RemoteSignaller + entities: + - uid: 176 + components: + - type: Transform + pos: 1.3427892,-2.379079 + parent: 325 + - type: Physics + canCollide: False +- proto: SheetGlass1 + entities: + - uid: 244 + components: + - type: Transform + parent: 58 + - type: Stack + count: 2 + - type: RCDAmmo + charges: 2 + - type: Physics + canCollide: False +- proto: SheetSteel1 + entities: + - uid: 255 + components: + - type: Transform + parent: 95 + - type: Stack + count: 5 + - type: RCDAmmo + charges: 5 + - type: Physics + canCollide: False + - uid: 262 + components: + - type: Transform + parent: 96 + - type: Stack + count: 5 + - type: RCDAmmo + charges: 5 + - type: Physics + canCollide: False + - uid: 269 + components: + - type: Transform + parent: 97 + - type: Stack + count: 5 + - type: RCDAmmo + charges: 5 + - type: Physics + canCollide: False + - uid: 276 + components: + - type: Transform + parent: 98 + - type: Stack + count: 5 + - type: RCDAmmo + charges: 5 + - type: Physics + canCollide: False + - uid: 283 + components: + - type: Transform + parent: 99 + - type: Stack + count: 5 + - type: RCDAmmo + charges: 5 + - type: Physics + canCollide: False + - uid: 290 + components: + - type: Transform + parent: 100 + - type: Stack + count: 5 + - type: RCDAmmo + charges: 5 + - type: Physics + canCollide: False + - uid: 297 + components: + - type: Transform + parent: 101 + - type: Stack + count: 5 + - type: RCDAmmo + charges: 5 + - type: Physics + canCollide: False + - uid: 304 + components: + - type: Transform + parent: 102 + - type: Stack + count: 5 + - type: RCDAmmo + charges: 5 + - type: Physics + canCollide: False +- proto: SignalButton + entities: + - uid: 170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 325 + - type: DeviceLinkSource + linkedPorts: + 199: + - Pressed: Toggle + 200: + - Pressed: Toggle + 201: + - Pressed: Toggle + 193: + - Pressed: Toggle + 192: + - Pressed: Toggle + 190: + - Pressed: Toggle + 191: + - Pressed: Toggle + 196: + - Pressed: Toggle +- proto: SignSpace + entities: + - uid: 230 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 325 +- proto: SoapSyndie + entities: + - uid: 90 + components: + - type: Transform + pos: 0.5436061,-7.5129323 + parent: 325 +- proto: SpawnPointNukies + entities: + - uid: 322 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 325 +- proto: StealthBox + entities: + - uid: 106 + components: + - type: Transform + pos: 0.49860507,-2.4513345 + parent: 325 + - type: Stealth + enabled: False + - type: EntityStorage + open: True +- proto: SubstationWallBasic + entities: + - uid: 103 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 325 + - type: PowerNetworkBattery + loadingNetworkDemand: 15106.935 + currentReceiving: 15105.06 + currentSupply: 15106.935 + supplyRampPosition: 1.875 +- proto: SuitStorageSyndie + entities: + - uid: 67 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 325 +- proto: SyndicateCommsComputerCircuitboard + entities: + - uid: 246 + components: + - type: Transform + parent: 65 + - type: Physics + canCollide: False +- proto: SyndicateComputerComms + entities: + - uid: 65 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 325 + - type: ContainerContainer + containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 246 +- proto: SyndicateIDCard + entities: + - uid: 324 + components: + - type: Transform + pos: 1.57673,-2.3849022 + parent: 325 +- proto: SyndicateShuttleConsoleCircuitboard + entities: + - uid: 245 + components: + - type: Transform + parent: 64 + - type: Physics + canCollide: False +- proto: Table + entities: + - uid: 165 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 325 +- proto: TableWood + entities: + - uid: 45 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 325 +- proto: Thruster + entities: + - uid: 95 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 325 + - type: ContainerContainer + containers: + machine_board: !type:Container + showEnts: False + occludes: True + ents: + - 249 + machine_parts: !type:Container + showEnts: False + occludes: True + ents: + - 250 + - 251 + - 252 + - 253 + - 254 + - 255 + - uid: 96 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 325 + - type: ContainerContainer + containers: + machine_board: !type:Container + showEnts: False + occludes: True + ents: + - 256 + machine_parts: !type:Container + showEnts: False + occludes: True + ents: + - 257 + - 258 + - 259 + - 260 + - 261 + - 262 + - uid: 97 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 325 + - type: ContainerContainer + containers: + machine_board: !type:Container + showEnts: False + occludes: True + ents: + - 263 + machine_parts: !type:Container + showEnts: False + occludes: True + ents: + - 264 + - 265 + - 266 + - 267 + - 268 + - 269 + - uid: 98 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 325 + - type: ContainerContainer + containers: + machine_board: !type:Container + showEnts: False + occludes: True + ents: + - 270 + machine_parts: !type:Container + showEnts: False + occludes: True + ents: + - 271 + - 272 + - 273 + - 274 + - 275 + - 276 + - uid: 99 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 325 + - type: ContainerContainer + containers: + machine_board: !type:Container + showEnts: False + occludes: True + ents: + - 277 + machine_parts: !type:Container + showEnts: False + occludes: True + ents: + - 278 + - 279 + - 280 + - 281 + - 282 + - 283 + - uid: 100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 325 + - type: ContainerContainer + containers: + machine_board: !type:Container + showEnts: False + occludes: True + ents: + - 284 + machine_parts: !type:Container + showEnts: False + occludes: True + ents: + - 285 + - 286 + - 287 + - 288 + - 289 + - 290 + - uid: 101 + components: + - type: Transform + pos: -3.5,1.5 + parent: 325 + - type: ContainerContainer + containers: + machine_board: !type:Container + showEnts: False + occludes: True + ents: + - 291 + machine_parts: !type:Container + showEnts: False + occludes: True + ents: + - 292 + - 293 + - 294 + - 295 + - 296 + - 297 + - uid: 102 + components: + - type: Transform + pos: 2.5,1.5 + parent: 325 + - type: ContainerContainer + containers: + machine_board: !type:Container + showEnts: False + occludes: True + ents: + - 298 + machine_parts: !type:Container + showEnts: False + occludes: True + ents: + - 299 + - 300 + - 301 + - 302 + - 303 + - 304 +- proto: ThrusterMachineCircuitboard + entities: + - uid: 249 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - uid: 256 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 263 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - uid: 270 + components: + - type: Transform + parent: 98 + - type: Physics + canCollide: False + - uid: 277 + components: + - type: Transform + parent: 99 + - type: Physics + canCollide: False + - uid: 284 + components: + - type: Transform + parent: 100 + - type: Physics + canCollide: False + - uid: 291 + components: + - type: Transform + parent: 101 + - type: Physics + canCollide: False + - uid: 298 + components: + - type: Transform + parent: 102 + - type: Physics + canCollide: False +- proto: ToolboxSyndicateFilled + entities: + - uid: 177 + components: + - type: Transform + pos: 1.5699697,-0.44908836 + parent: 325 + - type: Physics + canCollide: False +- proto: ToyFigurineNukie + entities: + - uid: 10 + components: + - type: Transform + pos: -2.3371089,-2.140279 + parent: 325 +- proto: VendingMachineSyndieDrobe + entities: + - uid: 163 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 325 +- proto: WallPlastitanium + entities: + - uid: 7 + components: + - type: Transform + pos: -2.5,0.5 + parent: 325 + - uid: 8 + components: + - type: Transform + pos: -3.5,0.5 + parent: 325 + - uid: 9 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 325 + - uid: 11 + components: + - type: Transform + pos: 1.5,0.5 + parent: 325 + - uid: 12 + components: + - type: Transform + pos: 2.5,0.5 + parent: 325 + - uid: 13 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 325 + - uid: 22 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 325 + - uid: 25 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 325 + - uid: 27 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 325 + - uid: 28 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 325 + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 325 + - uid: 30 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 325 + - uid: 31 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 325 + - uid: 32 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 325 + - uid: 33 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 325 + - uid: 34 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 325 + - uid: 35 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 325 + - uid: 36 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 325 + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 325 + - uid: 38 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 325 + - uid: 39 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 325 + - uid: 44 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 325 + - uid: 48 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 325 + - uid: 49 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 325 + - uid: 54 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 325 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 325 + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 325 + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 325 + - uid: 62 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 325 + - uid: 63 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 325 + - uid: 66 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 325 + - uid: 69 + components: + - type: Transform + pos: -2.5,1.5 + parent: 325 + - uid: 73 + components: + - type: Transform + pos: 1.5,1.5 + parent: 325 + - uid: 80 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 325 + - uid: 81 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 325 + - uid: 92 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 325 + - uid: 108 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 325 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 23 + components: + - type: Transform + pos: -4.5,0.5 + parent: 325 + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 325 + - uid: 68 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 325 + - uid: 79 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 325 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 325 + - uid: 86 + components: + - type: Transform + pos: -2.5,2.5 + parent: 325 +- proto: WindoorSecure + entities: + - uid: 166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 325 + - uid: 206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 325 + - type: ContainerContainer + containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 346 +... diff --git a/Resources/Maps/White/Shuttles/ShuttleEvent/syndie_evacpod.yml b/Resources/Maps/White/Shuttles/ShuttleEvent/syndie_evacpod.yml new file mode 100644 index 0000000000..545a92e20d --- /dev/null +++ b/Resources/Maps/White/Shuttles/ShuttleEvent/syndie_evacpod.yml @@ -0,0 +1,1325 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 29: FloorDark + 84: FloorShuttleRed + 101: FloorSteelOffset + 104: FloorTechMaint + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + desc: Evacuation pod + name: Evacuation pod + - type: Transform + parent: 2 + - type: MapGrid + chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZQAAAAAAZQAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAZQAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: ZQAAAAAAZQAAAAAAZQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAZQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#A91409FF' + id: StandClearGreyscale + decals: + 18: 0,-1 + - node: + color: '#A91409FF' + id: WarnCornerSmallGreyscaleNE + decals: + 15: -2,0 + - node: + color: '#A91409FF' + id: WarnCornerSmallGreyscaleNW + decals: + 14: 2,0 + - node: + color: '#A91409FF' + id: WarnEndGreyscaleN + decals: + 9: -2,1 + 10: 2,1 + - node: + color: '#A91409FF' + id: WarnLineGreyscaleE + decals: + 0: 2,0 + 8: 2,-1 + 17: 5,0 + - node: + color: '#A91409FF' + id: WarnLineGreyscaleN + decals: + 11: -1,0 + 12: 0,0 + 13: 1,0 + - node: + color: '#A91409FF' + id: WarnLineGreyscaleS + decals: + 1: 1,-1 + 2: 0,-1 + 3: -1,-1 + 4: -2,-1 + 5: 2,-1 + - node: + color: '#A91409FF' + id: WarnLineGreyscaleW + decals: + 6: -2,-1 + 7: -2,0 + 16: -5,0 + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,-1: + 0: 18432 + -2,0: + 1: 12 + 0: 64 + -1,-1: + 0: 601 + 1: 51200 + -1,0: + 2: 1 + 1: 2254 + 0: 16896 + 0,-1: + 0: 2115 + 1: 21248 + 3: 8192 + -2,1: + 0: 8 + -1,1: + 0: 4096 + 0,0: + 1: 895 + 0: 18432 + 1,-1: + 0: 16913 + 1,0: + 1: 7 + 0: 64 + 1,1: + 0: 4098 + uniqueMixes: + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: NavMap + - type: RadiationGridResistance + - uid: 2 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - uid: 93 + components: + - type: MetaData + name: solution - food + - type: Transform + parent: 92 + - type: Solution + solution: + maxVol: 10 + name: food + reagents: + - ReagentId: Fiber + Quantity: 10 + - type: ContainedSolution + containerName: food + container: 92 +- proto: AirlockExternalShuttleSyndicateLocked + entities: + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 +- proto: AirlockSyndicateGlassLocked + entities: + - uid: 5 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 7 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 10 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 +- proto: CableHV + entities: + - uid: 33 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 +- proto: CableMV + entities: + - uid: 43 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 50 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 53 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 +- proto: ClothingHeadHelmetSyndicate + entities: + - uid: 92 + components: + - type: Transform + parent: 91 + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 93 + - type: Forensics + residues: [] + dnas: [] + fibers: [] + fingerprints: + - F269A3816AF5EC71576E815E8A6A9AC3 + - type: InsideEntityStorage +- proto: ClothingHeadPyjamaSyndicateRed + entities: + - uid: 98 + components: + - type: Transform + parent: 91 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckScarfStripedSyndieRed + entities: + - uid: 101 + components: + - type: Transform + parent: 91 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 102 + components: + - type: Transform + parent: 91 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitSyndicate + entities: + - uid: 95 + components: + - type: Transform + parent: 91 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComputerShuttleSyndie + entities: + - uid: 55 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: CyberPen + entities: + - uid: 100 + components: + - type: Transform + pos: 2.3074882,1.8251894 + parent: 1 +- proto: DeepSpaceComWallMount + entities: + - uid: 97 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 +- proto: FaxMachineSyndie + entities: + - uid: 99 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - type: FaxMachine + name: Неизвестный +- proto: GeneratorWallmountAPU + entities: + - uid: 56 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 +- proto: GeneratorWallmountBasic + entities: + - uid: 57 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 +- proto: Grille + entities: + - uid: 58 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 63 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 66 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 69 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 +- proto: LockerSyndicatePersonal + entities: + - uid: 91 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - type: PointLight + color: '#D56C6CFF' + enabled: True + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14697 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 95 + - 94 + - 96 + - 102 + - 92 + - 101 + - 98 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: Paper + entities: + - uid: 89 + components: + - type: Transform + pos: 2.3700502,1.5126894 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 2.4117582,1.5543563 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 2.3283422,1.4710224 + parent: 1 +- proto: PhoneInstrumentSyndicate + entities: + - uid: 51 + components: + - type: Transform + pos: 2.7245681,1.8668563 + parent: 1 +- proto: PlasmaWindowDiagonal + entities: + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - uid: 73 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 77 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 80 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 +- proto: RandomPosterContraband + entities: + - uid: 81 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 83 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 86 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 +- proto: RubberStampSyndicate + entities: + - uid: 94 + components: + - type: Transform + parent: 91 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SubstationWallBasic + entities: + - uid: 88 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 +- proto: SyndieDisasterVictimSpawner + entities: + - uid: 90 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 52 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 +- proto: Thruster + entities: + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - uid: 106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 +- proto: ToolboxSyndicateFilled + entities: + - uid: 96 + components: + - type: Transform + parent: 91 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 108 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: WallPlastitanium + entities: + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - uid: 111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + - uid: 113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + - uid: 114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - uid: 122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + - uid: 125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - uid: 127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + - uid: 131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 +... diff --git a/Resources/Maps/White/Shuttles/ShuttleEvent/traveling_china_cuisine.yml b/Resources/Maps/White/Shuttles/ShuttleEvent/traveling_china_cuisine.yml index 405eea8dd9..52b575244f 100644 --- a/Resources/Maps/White/Shuttles/ShuttleEvent/traveling_china_cuisine.yml +++ b/Resources/Maps/White/Shuttles/ShuttleEvent/traveling_china_cuisine.yml @@ -224,6 +224,7 @@ entities: - type: MovedGrids - type: Broadphase - type: OccluderTree + - type: LoadedMap - proto: AirlockShuttle entities: - uid: 2 @@ -245,6 +246,13 @@ entities: - type: Transform pos: 2.5,-1.5 parent: 1 +- proto: ATM + entities: + - uid: 235 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 - proto: AtmosDeviceFanTiny entities: - uid: 5 @@ -634,6 +642,15 @@ entities: rot: 3.141592653589793 rad pos: 1.8425496,-6.086302 parent: 1 +- proto: Eftpos + entities: + - uid: 233 + components: + - type: Transform + parent: 74 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: EggySeeds entities: - uid: 89 @@ -1292,19 +1309,21 @@ entities: showEnts: False occludes: True ents: - - 147 - - 82 - - 90 - - 185 - - 75 - - 79 - - 72 - - 77 - - 81 - - 78 - - 73 - - 76 + - 233 + - 133 - 80 + - 76 + - 73 + - 78 + - 81 + - 77 + - 72 + - 79 + - 75 + - 185 + - 90 + - 82 + - 147 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -1336,10 +1355,10 @@ entities: - type: InsideEntityStorage - proto: NoticeBoard entities: - - uid: 133 + - uid: 234 components: - type: Transform - pos: -1.5,-2.5 + pos: -0.5,-2.5 parent: 1 - proto: Pen entities: @@ -1595,6 +1614,17 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-6.5 parent: 1 +- proto: SpaceCash2500 + entities: + - uid: 133 + components: + - type: Transform + parent: 74 + - type: Stack + count: 7500 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: StoolBar entities: - uid: 165 diff --git a/Resources/Maps/White/Shuttles/cargo.yml b/Resources/Maps/White/Shuttles/cargo.yml new file mode 100644 index 0000000000..972f590f9f --- /dev/null +++ b/Resources/Maps/White/Shuttles/cargo.yml @@ -0,0 +1,1274 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 84: FloorShuttleBlue + 89: FloorShuttleWhite + 93: FloorSteel + 108: FloorTechMaint + 126: Plating +entities: +- proto: "" + entities: + - uid: 143 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - uid: 173 + components: + - type: MetaData + name: Cargo shuttle + - type: Transform + pos: 2.2710133,-2.4148211 + parent: 143 + - type: MapGrid + chunks: + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: XQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: CargoShuttle + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 12: -5,1 + 13: -5,3 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 14: -1,1 + 15: -1,3 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 0: -5,5 + 1: -4,5 + 2: -2,5 + 3: -1,5 + 4: -1,-1 + 5: -2,-1 + 6: -4,-1 + 7: -5,-1 + 8: -1,2 + 9: -2,2 + 10: -4,2 + 11: -5,2 + - node: + color: '#A4610696' + id: CheckerNWSE + decals: + 16: -3,0 + 17: -3,1 + 18: -3,2 + 19: -3,3 + 20: -3,4 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 22: -3,-1 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 21: -3,5 + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,-1: + 0: 52428 + -1,-1: + 0: 65535 + -1,-2: + 0: 61440 + -2,1: + 0: 52428 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 255 + 0,-1: + 0: 4369 + 0,1: + 0: 4369 + 0,2: + 0: 1 + 0,0: + 0: 4369 + -2,0: + 0: 52428 + -2,2: + 0: 140 + -2,-2: + 0: 32768 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay +- proto: AirCanister + entities: + - uid: 172 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 173 + - type: PolymorphableCanister + currentPrototype: AirCanister +- proto: AirlockGlassShuttle + entities: + - uid: 45 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 173 + - uid: 50 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 173 + - uid: 52 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 173 + - uid: 53 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 173 +- proto: APCHyperCapacity + entities: + - uid: 79 + components: + - type: Transform + pos: -0.5,6.5 + parent: 173 +- proto: AtmosDeviceFanTiny + entities: + - uid: 168 + components: + - type: Transform + pos: -5.5,1.5 + parent: 173 + - uid: 169 + components: + - type: Transform + pos: -5.5,3.5 + parent: 173 + - uid: 170 + components: + - type: Transform + pos: 0.5,3.5 + parent: 173 + - uid: 171 + components: + - type: Transform + pos: 0.5,1.5 + parent: 173 +- proto: BlastDoor + entities: + - uid: 1 + components: + - type: Transform + pos: 0.5,4.5 + parent: 173 + - type: DeviceLinkSink + links: + - 57 + - uid: 3 + components: + - type: Transform + pos: -5.5,0.5 + parent: 173 + - type: DeviceLinkSink + links: + - 55 + - uid: 54 + components: + - type: Transform + pos: 0.5,0.5 + parent: 173 + - type: DeviceLinkSink + links: + - 58 + - uid: 56 + components: + - type: Transform + pos: -5.5,4.5 + parent: 173 + - type: DeviceLinkSink + links: + - 2 +- proto: CableApcExtension + entities: + - uid: 100 + components: + - type: Transform + pos: -0.5,6.5 + parent: 173 + - uid: 101 + components: + - type: Transform + pos: -1.5,6.5 + parent: 173 + - uid: 102 + components: + - type: Transform + pos: -2.5,6.5 + parent: 173 + - uid: 103 + components: + - type: Transform + pos: -2.5,5.5 + parent: 173 + - uid: 104 + components: + - type: Transform + pos: -2.5,8.5 + parent: 173 + - uid: 105 + components: + - type: Transform + pos: -3.5,8.5 + parent: 173 + - uid: 106 + components: + - type: Transform + pos: -1.5,8.5 + parent: 173 + - uid: 107 + components: + - type: Transform + pos: -3.5,6.5 + parent: 173 + - uid: 108 + components: + - type: Transform + pos: -3.5,7.5 + parent: 173 + - uid: 109 + components: + - type: Transform + pos: -2.5,4.5 + parent: 173 + - uid: 110 + components: + - type: Transform + pos: -2.5,3.5 + parent: 173 + - uid: 111 + components: + - type: Transform + pos: -2.5,2.5 + parent: 173 + - uid: 112 + components: + - type: Transform + pos: -2.5,1.5 + parent: 173 + - uid: 113 + components: + - type: Transform + pos: -2.5,0.5 + parent: 173 + - uid: 114 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 173 + - uid: 115 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 173 + - uid: 116 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 173 + - uid: 117 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 173 + - uid: 118 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 173 + - uid: 119 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 173 + - uid: 120 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 173 + - uid: 121 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 173 + - uid: 122 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 173 + - uid: 123 + components: + - type: Transform + pos: -4.5,7.5 + parent: 173 + - uid: 124 + components: + - type: Transform + pos: -0.5,7.5 + parent: 173 + - uid: 125 + components: + - type: Transform + pos: -1.5,3.5 + parent: 173 + - uid: 126 + components: + - type: Transform + pos: -0.5,3.5 + parent: 173 + - uid: 127 + components: + - type: Transform + pos: -1.5,1.5 + parent: 173 + - uid: 128 + components: + - type: Transform + pos: -0.5,1.5 + parent: 173 + - uid: 129 + components: + - type: Transform + pos: -3.5,1.5 + parent: 173 + - uid: 130 + components: + - type: Transform + pos: -4.5,1.5 + parent: 173 + - uid: 131 + components: + - type: Transform + pos: -3.5,3.5 + parent: 173 + - uid: 132 + components: + - type: Transform + pos: -4.5,3.5 + parent: 173 + - uid: 163 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 173 +- proto: CableHV + entities: + - uid: 80 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 173 + - uid: 81 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 173 + - uid: 86 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 173 +- proto: CableMV + entities: + - uid: 87 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 173 + - uid: 88 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 173 + - uid: 89 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 173 + - uid: 90 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 173 + - uid: 91 + components: + - type: Transform + pos: -2.5,0.5 + parent: 173 + - uid: 92 + components: + - type: Transform + pos: -2.5,1.5 + parent: 173 + - uid: 93 + components: + - type: Transform + pos: -2.5,2.5 + parent: 173 + - uid: 94 + components: + - type: Transform + pos: -2.5,3.5 + parent: 173 + - uid: 95 + components: + - type: Transform + pos: -2.5,4.5 + parent: 173 + - uid: 96 + components: + - type: Transform + pos: -2.5,5.5 + parent: 173 + - uid: 97 + components: + - type: Transform + pos: -2.5,6.5 + parent: 173 + - uid: 98 + components: + - type: Transform + pos: -1.5,6.5 + parent: 173 + - uid: 99 + components: + - type: Transform + pos: -0.5,6.5 + parent: 173 +- proto: CableTerminal + entities: + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 173 +- proto: CargoPallet + entities: + - uid: 151 + components: + - type: Transform + pos: -4.5,5.5 + parent: 173 + - uid: 152 + components: + - type: Transform + pos: -3.5,5.5 + parent: 173 + - uid: 153 + components: + - type: Transform + pos: -1.5,5.5 + parent: 173 + - uid: 154 + components: + - type: Transform + pos: -0.5,5.5 + parent: 173 + - uid: 155 + components: + - type: Transform + pos: -0.5,2.5 + parent: 173 + - uid: 156 + components: + - type: Transform + pos: -1.5,2.5 + parent: 173 + - uid: 157 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 173 + - uid: 158 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 173 + - uid: 159 + components: + - type: Transform + pos: -3.5,2.5 + parent: 173 + - uid: 160 + components: + - type: Transform + pos: -4.5,2.5 + parent: 173 + - uid: 161 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 173 + - uid: 162 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 173 +- proto: ChairPilotSeat + entities: + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 173 +- proto: ComputerDeepSpaceCom + entities: + - uid: 174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 173 +- proto: ComputerShuttle + entities: + - uid: 78 + components: + - type: Transform + pos: -2.5,8.5 + parent: 173 +- proto: ConveyorBelt + entities: + - uid: 38 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 173 + - type: DeviceLinkSink + links: + - 36 + - uid: 39 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 173 + - type: DeviceLinkSink + links: + - 36 + - uid: 40 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 173 + - type: DeviceLinkSink + links: + - 36 + - uid: 41 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 173 + - type: DeviceLinkSink + links: + - 34 + - uid: 42 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 173 + - type: DeviceLinkSink + links: + - 34 + - uid: 43 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 173 + - type: DeviceLinkSink + links: + - 34 + - uid: 46 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 173 + - type: DeviceLinkSink + links: + - 35 + - uid: 47 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 173 + - type: DeviceLinkSink + links: + - 37 + - uid: 48 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 173 + - type: DeviceLinkSink + links: + - 37 + - uid: 49 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,4.5 + parent: 173 + - type: DeviceLinkSink + links: + - 37 + - uid: 51 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 173 + - type: DeviceLinkSink + links: + - 35 + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 173 + - type: DeviceLinkSink + links: + - 35 +- proto: GasPipeBend + entities: + - uid: 134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 173 +- proto: GasPipeStraight + entities: + - uid: 136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 173 + - uid: 137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 173 + - uid: 140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 173 +- proto: GasPort + entities: + - uid: 135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 173 +- proto: GasVentPump + entities: + - uid: 138 + components: + - type: Transform + pos: -2.5,2.5 + parent: 173 +- proto: GeneratorBasic15kW + entities: + - uid: 83 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 173 +- proto: GravityGeneratorMini + entities: + - uid: 146 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 173 +- proto: Grille + entities: + - uid: 73 + components: + - type: Transform + pos: -3.5,8.5 + parent: 173 + - uid: 74 + components: + - type: Transform + pos: -3.5,9.5 + parent: 173 + - uid: 75 + components: + - type: Transform + pos: -2.5,9.5 + parent: 173 + - uid: 76 + components: + - type: Transform + pos: -1.5,9.5 + parent: 173 + - uid: 77 + components: + - type: Transform + pos: -1.5,8.5 + parent: 173 +- proto: Gyroscope + entities: + - uid: 133 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 173 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 44 + components: + - type: Transform + pos: 0.5,0.5 + parent: 173 + - uid: 164 + components: + - type: Transform + pos: -5.5,0.5 + parent: 173 + - uid: 165 + components: + - type: Transform + pos: -5.5,4.5 + parent: 173 + - uid: 166 + components: + - type: Transform + pos: 0.5,4.5 + parent: 173 +- proto: Poweredlight + entities: + - uid: 147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 173 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 173 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 173 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 173 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: ShuttleWindow + entities: + - uid: 68 + components: + - type: Transform + pos: -1.5,8.5 + parent: 173 + - uid: 69 + components: + - type: Transform + pos: -1.5,9.5 + parent: 173 + - uid: 70 + components: + - type: Transform + pos: -2.5,9.5 + parent: 173 + - uid: 71 + components: + - type: Transform + pos: -3.5,9.5 + parent: 173 + - uid: 72 + components: + - type: Transform + pos: -3.5,8.5 + parent: 173 +- proto: SignalButton + entities: + - uid: 2 + components: + - type: Transform + pos: -5.5,5.5 + parent: 173 + - type: DeviceLinkSource + linkedPorts: + 56: + - Pressed: Toggle + - uid: 55 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 173 + - type: DeviceLinkSource + linkedPorts: + 3: + - Pressed: Toggle + - uid: 57 + components: + - type: Transform + pos: 0.5,5.5 + parent: 173 + - type: DeviceLinkSource + linkedPorts: + 1: + - Pressed: Toggle + - uid: 58 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 173 + - type: DeviceLinkSource + linkedPorts: + 54: + - Pressed: Toggle +- proto: SMESBasic + entities: + - uid: 84 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 173 +- proto: SubstationBasic + entities: + - uid: 85 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 173 +- proto: TableReinforced + entities: + - uid: 144 + components: + - type: Transform + pos: -1.5,7.5 + parent: 173 +- proto: Thruster + entities: + - uid: 12 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 173 + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 173 + - uid: 14 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 173 + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 173 + - uid: 59 + components: + - type: Transform + pos: -4.5,9.5 + parent: 173 + - uid: 60 + components: + - type: Transform + pos: -0.5,9.5 + parent: 173 + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 173 + - uid: 62 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 173 +- proto: TwoWayLever + entities: + - uid: 34 + components: + - type: Transform + pos: -3.5,1.5 + parent: 173 + - type: DeviceLinkSource + linkedPorts: + 43: + - Left: Forward + - Right: Reverse + - Middle: Off + 42: + - Left: Forward + - Right: Reverse + - Middle: Off + 41: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 35 + components: + - type: Transform + pos: -1.5,1.5 + parent: 173 + - type: DeviceLinkSource + linkedPorts: + 51: + - Left: Forward + - Right: Reverse + - Middle: Off + 46: + - Left: Forward + - Right: Reverse + - Middle: Off + 167: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 36 + components: + - type: Transform + pos: -1.5,3.5 + parent: 173 + - type: DeviceLinkSource + linkedPorts: + 38: + - Left: Forward + - Right: Reverse + - Middle: Off + 39: + - Left: Forward + - Right: Reverse + - Middle: Off + 40: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 37 + components: + - type: Transform + pos: -3.5,3.5 + parent: 173 + - type: DeviceLinkSource + linkedPorts: + 49: + - Left: Forward + - Right: Reverse + - Middle: Off + 48: + - Left: Forward + - Right: Reverse + - Middle: Off + 47: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: WallShuttle + entities: + - uid: 4 + components: + - type: Transform + pos: -5.5,8.5 + parent: 173 + - uid: 5 + components: + - type: Transform + pos: -4.5,8.5 + parent: 173 + - uid: 6 + components: + - type: Transform + pos: -0.5,8.5 + parent: 173 + - uid: 7 + components: + - type: Transform + pos: 0.5,8.5 + parent: 173 + - uid: 8 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 173 + - uid: 9 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 173 + - uid: 10 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 173 + - uid: 11 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 173 + - uid: 16 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 173 + - uid: 17 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 173 + - uid: 18 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 173 + - uid: 19 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 173 + - uid: 20 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 173 + - uid: 21 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 173 + - uid: 22 + components: + - type: Transform + pos: -0.5,7.5 + parent: 173 + - uid: 23 + components: + - type: Transform + pos: -0.5,6.5 + parent: 173 + - uid: 24 + components: + - type: Transform + pos: 0.5,6.5 + parent: 173 + - uid: 25 + components: + - type: Transform + pos: -4.5,7.5 + parent: 173 + - uid: 26 + components: + - type: Transform + pos: -4.5,6.5 + parent: 173 + - uid: 27 + components: + - type: Transform + pos: -5.5,6.5 + parent: 173 + - uid: 28 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 173 + - uid: 29 + components: + - type: Transform + pos: -5.5,5.5 + parent: 173 + - uid: 30 + components: + - type: Transform + pos: 0.5,5.5 + parent: 173 + - uid: 31 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 173 + - uid: 32 + components: + - type: Transform + pos: 0.5,2.5 + parent: 173 + - uid: 33 + components: + - type: Transform + pos: -5.5,2.5 + parent: 173 + - uid: 63 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 173 + - uid: 64 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 173 + - uid: 65 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 173 + - uid: 66 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 173 + - uid: 67 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 173 +- proto: WindoorCargoLocked + entities: + - uid: 139 + components: + - type: Transform + pos: -2.5,7.5 + parent: 173 +- proto: WindowReinforcedDirectional + entities: + - uid: 142 + components: + - type: Transform + pos: -1.5,7.5 + parent: 173 + - uid: 145 + components: + - type: Transform + pos: -3.5,7.5 + parent: 173 +... diff --git a/Resources/Maps/White/Shuttles/mining.yml b/Resources/Maps/White/Shuttles/mining.yml new file mode 100644 index 0000000000..6e85a87b2b --- /dev/null +++ b/Resources/Maps/White/Shuttles/mining.yml @@ -0,0 +1,1483 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 51: FloorGrayConcrete + 89: FloorSteel + 104: FloorTechMaint + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 153 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - uid: 181 + components: + - type: MetaData + name: NT-Reclaimer + - type: Transform + pos: 2.2710133,-2.4148211 + parent: 153 + - type: MapGrid + chunks: + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAMwAAAAAAMwAAAAAAWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAMwAAAAAAMwAAAAAAeQAAAAAAWQAAAAABWQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: SalvageShuttle + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 1: -5,-3 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 0: -3,1 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 2: -1,-3 + - node: + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 166: -3,-5 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 164: -5,-5 + 165: -1,-5 + - node: + color: '#A4610696' + id: CheckerNWSE + decals: + 11: -3,2 + 12: -3,3 + 13: -3,4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 45: -3,-6 + 46: -4,-6 + 47: -2,1 + 48: -4,2 + 49: -1,1 + 50: -2,3 + 168: 0,2 + 169: 0,1 + 170: -5,-1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 16: -4,-3 + 17: -2,2 + 18: -3,4 + 19: -4,5 + 167: -4,4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 25: -4,1 + 26: -3,2 + 27: -3,3 + 28: -2,4 + 29: -3,5 + 30: -2,-1 + 31: -3,-2 + 32: -2,-3 + 33: -3,-3 + 34: -3,-4 + 35: -2,-5 + 36: -1,-4 + 37: -1,-3 + 38: -3,-5 + 39: -4,-4 + 40: -5,-5 + 41: -5,-4 + 42: -5,-3 + 43: -5,-2 + 44: -1,-2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 20: -2,-4 + 21: -4,-5 + 22: -2,-2 + 23: -3,-1 + 24: -3,1 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 5: -5,-2 + 6: -5,-1 + 15: -3,1 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 9: -1,-5 + 10: -1,-4 + 14: -3,5 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 3: -5,-5 + 4: -5,-4 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 7: -1,-1 + 8: -1,-2 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSE + decals: + 163: -5,-5 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSW + decals: + 162: -1,-5 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleS + decals: + 159: -2,-5 + 160: -3,-5 + 161: -4,-5 + - node: + angle: -4.71238898038469 rad + color: '#00000034' + id: footprint + decals: + 107: -0.76830435,-4.312702 + 108: -1.1120543,-3.9220772 + 109: -1.2370543,-4.406452 + 110: -1.7526793,-4.109577 + 111: -1.7526793,-4.500202 + 112: -0.75267935,-2.5314522 + 113: -1.3308043,-2.1720772 + 114: -1.3933043,-2.6564522 + - node: + cleanable: True + angle: -3.141592653589793 rad + color: '#00000034' + id: footprint + decals: + 91: -2.8151793,1.7528267 + 92: -3.2995543,2.2528267 + 93: -2.8308043,2.3622017 + 94: -2.2995543,2.7372017 + 95: -2.3933043,1.1278267 + 96: -2.1276793,-1.5909233 + 97: -2.4089293,-1.9971733 + 98: -1.9245543,-2.6690483 + 99: -2.3620543,-3.0909233 + 100: -1.8776793,-3.6846733 + 101: -2.2683043,-4.0284233 + - node: + angle: -1.5707963267948966 rad + color: '#00000034' + id: footprint + decals: + 115: -1.2839293,-3.3127022 + 116: -0.94017935,-3.5627022 + 117: -5.2526793,-2.4064522 + 118: -4.8620543,-2.2814522 + 119: -4.2526793,-2.6720772 + 120: -4.0026793,-2.3595772 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#00000034' + id: footprint + decals: + 102: -5.1901793,-3.6720772 + 103: -4.7683043,-3.3752022 + 104: -4.2683043,-3.7970772 + 105: -4.0026793,-3.5002022 + 106: -3.4089293,-3.8908272 + - node: + angle: -1.5707963267948966 rad + color: '#0000004A' + id: footprint + decals: + 121: -5.1901793,-3.430749 + 122: -4.8464293,-3.602624 + 123: -4.4245543,-3.258874 + 124: -3.9558043,-3.586999 + 125: -3.5808043,-3.180749 + 126: -5.3776793,-4.086999 + 127: -4.5808043,-3.711999 + - node: + color: '#0000004A' + id: footprint + decals: + 128: -2.6433043,-2.883874 + 129: -2.3776793,-2.508874 + 130: -2.8933043,-1.8994989 + 131: -2.3933043,-1.5869989 + 132: -2.7683043,-0.89949894 + 133: -2.2370543,-0.71199894 + - node: + cleanable: True + angle: -4.71238898038469 rad + color: '#00000050' + id: footprint + decals: + 63: -0.13161492,0.82056475 + 64: -0.49098992,1.0393147 + 65: -1.2097399,0.99243975 + 66: -1.6472399,1.2893147 + 67: -1.8659899,0.96118975 + 68: -2.89724,1.1486897 + 69: -4.1628647,1.2111897 + 70: -6.7253647,1.1330647 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#00000050' + id: footprint + decals: + 59: -1.8659899,1.6955647 + 60: -1.5847399,1.2893147 + 61: -0.9753649,1.5861897 + 62: -0.28786492,1.2893147 + - node: + cleanable: True + color: '#00000050' + id: footprint + decals: + 51: -2.61599,-0.929533 + 52: -2.86599,-0.648283 + 53: -3.11599,2.4611897 + 54: -2.787865,3.2268147 + 55: -2.86599,2.8205647 + 56: -3.11599,3.0393147 + 57: -3.08474,3.5393147 + 58: -2.67849,4.1486897 + 85: -3.162865,1.6799397 + 86: -2.39724,2.1643147 + 87: -2.037865,2.3674397 + 88: -2.39724,2.9768147 + 89: -3.17849,3.8205647 + 90: -3.569115,2.5705647 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#00000050' + id: footprint + decals: + 79: -1.7566149,0.91431475 + 80: -2.225365,1.7580647 + 81: -1.8503649,2.0861897 + 82: -1.5222399,2.1330647 + 83: -1.0847399,1.3049397 + 84: -2.569115,1.6955647 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#00000050' + id: footprint + decals: + 71: -6.7878647,2.0080647 + 72: -4.1941147,1.7424397 + 73: -3.86599,1.9455647 + 74: -6.5534897,0.69556475 + 75: -4.1941147,1.2268147 + 76: -3.70974,1.0080647 + 77: -3.975365,0.75806475 + 78: -3.694115,1.4143147 + - node: + cleanable: True + color: '#0000001F' + id: splatter + decals: + 134: -3.6745543,-4.4900737 + 135: -3.9714293,-4.5369487 + 136: -3.4714293,-5.0681987 + 137: -4.2370543,-4.9744487 + 138: -1.5495543,-1.4431987 + 139: -1.7058043,-1.2713237 + 140: -1.2058043,-1.3650737 + 141: -1.0339293,-1.9119487 + - node: + cleanable: True + color: '#A461060F' + id: splatter + decals: + 142: -1.4245543,-4.7713237 + 143: -1.7526793,-4.3650737 + 144: -3.5183043,-2.8338237 + 145: -4.8620543,-4.0994487 + 146: -4.4714293,-4.7869487 + 147: -3.9245543,-5.9275737 + 148: -3.4558043,-6.0838237 + 149: -2.6433043,1.3849263 + 150: -2.1589293,1.6661763 + 151: -2.4558043,1.8224263 + 152: -2.4089293,1.1193013 + - node: + cleanable: True + color: '#D381C909' + id: splatter + decals: + 153: -2.5808043,-4.6931987 + - node: + cleanable: True + color: '#EFB34109' + id: splatter + decals: + 154: -3.2995543,-1.4588237 + 155: -3.5651793,-0.8494487 + 156: -3.3464293,3.6905212 + 157: -4.0495543,3.1123965 + 158: -2.3151793,4.6123962 + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,-1: + 0: 52428 + 1: 8192 + -1,-3: + 0: 65504 + -1,-1: + 0: 65535 + -1,-2: + 0: 65535 + -2,1: + 0: 52428 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 61183 + -1,3: + 0: 52974 + 0,-3: + 0: 65520 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-3: + 0: 13072 + 1,-2: + 0: 13107 + 1,-1: + 0: 21811 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 0,0: + 0: 65535 + 1,3: + 0: 273 + 1,0: + 0: 30583 + 1,1: + 0: 30039 + 1,2: + 0: 4403 + 0,4: + 0: 127 + -1,4: + 0: 140 + -2,0: + 0: 52428 + 1: 8738 + -2,2: + 0: 140 + -2,-2: + 0: 32768 + 1: 19656 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay + - type: GridPathfinding +- proto: AirlockCargoGlass + entities: + - uid: 29 + components: + - type: Transform + pos: -2.5,0.5 + parent: 181 + - uid: 127 + components: + - type: Transform + pos: -1.5,0.5 + parent: 181 +- proto: AirlockExternal + entities: + - uid: 2 + components: + - type: Transform + pos: -0.5,2.5 + parent: 181 + - uid: 54 + components: + - type: Transform + pos: -0.5,1.5 + parent: 181 + - uid: 112 + components: + - type: Transform + pos: -4.5,1.5 + parent: 181 + - uid: 139 + components: + - type: Transform + pos: -4.5,2.5 + parent: 181 +- proto: AirlockGlassShuttle + entities: + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 181 + - uid: 13 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 181 + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 181 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 181 +- proto: APCBasic + entities: + - uid: 7 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 181 + - uid: 68 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 181 +- proto: AtmosDeviceFanTiny + entities: + - uid: 37 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 181 + - uid: 46 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 181 + - uid: 100 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 181 + - uid: 128 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 181 + - uid: 129 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 181 + - uid: 130 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 181 + - uid: 133 + components: + - type: Transform + pos: -6.5,1.5 + parent: 181 + - uid: 155 + components: + - type: Transform + pos: -6.5,2.5 + parent: 181 + - uid: 157 + components: + - type: Transform + pos: 1.5,1.5 + parent: 181 + - uid: 158 + components: + - type: Transform + pos: 1.5,2.5 + parent: 181 +- proto: BlastDoor + entities: + - uid: 14 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 181 + - type: DeviceLinkSink + links: + - 150 + - uid: 34 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 181 + - type: DeviceLinkSink + links: + - 150 + - uid: 36 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 181 + - type: DeviceLinkSink + links: + - 150 + - uid: 81 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 181 + - type: DeviceLinkSink + links: + - 149 + - uid: 92 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 181 + - type: DeviceLinkSink + links: + - 149 + - uid: 95 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 181 + - type: DeviceLinkSink + links: + - 149 +- proto: BorgModuleMining + entities: + - uid: 94 + components: + - type: Transform + pos: -1.4982989,5.541272 + parent: 181 +- proto: ButtonFrameCaution + entities: + - uid: 151 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 181 + - uid: 152 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 181 +- proto: CableApcExtension + entities: + - uid: 1 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 181 + - uid: 3 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 181 + - uid: 15 + components: + - type: Transform + pos: -4.5,3.5 + parent: 181 + - uid: 21 + components: + - type: Transform + pos: -3.5,3.5 + parent: 181 + - uid: 28 + components: + - type: Transform + pos: -2.5,3.5 + parent: 181 + - uid: 32 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 181 + - uid: 38 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 181 + - uid: 41 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 181 + - uid: 42 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 181 + - uid: 43 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 181 + - uid: 44 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 181 + - uid: 45 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 181 + - uid: 51 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 181 + - uid: 53 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 181 + - uid: 61 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 181 + - uid: 62 + components: + - type: Transform + pos: -2.5,4.5 + parent: 181 + - uid: 63 + components: + - type: Transform + pos: -2.5,2.5 + parent: 181 + - uid: 64 + components: + - type: Transform + pos: -2.5,1.5 + parent: 181 + - uid: 65 + components: + - type: Transform + pos: -2.5,5.5 + parent: 181 + - uid: 66 + components: + - type: Transform + pos: -1.5,2.5 + parent: 181 + - uid: 82 + components: + - type: Transform + pos: -0.5,2.5 + parent: 181 + - uid: 83 + components: + - type: Transform + pos: -4.5,1.5 + parent: 181 + - uid: 84 + components: + - type: Transform + pos: -3.5,1.5 + parent: 181 + - uid: 132 + components: + - type: Transform + pos: 0.5,2.5 + parent: 181 + - uid: 144 + components: + - type: Transform + pos: -5.5,1.5 + parent: 181 + - uid: 165 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 181 + - uid: 168 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 181 +- proto: CableHV + entities: + - uid: 6 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 181 + - uid: 58 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 181 + - uid: 59 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 181 + - uid: 74 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 181 + - uid: 75 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 181 + - uid: 76 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 181 +- proto: CableMV + entities: + - uid: 8 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 181 + - uid: 9 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 181 + - uid: 10 + components: + - type: Transform + pos: -2.5,2.5 + parent: 181 + - uid: 11 + components: + - type: Transform + pos: -2.5,3.5 + parent: 181 + - uid: 12 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 181 + - uid: 16 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 181 + - uid: 17 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 181 + - uid: 18 + components: + - type: Transform + pos: -4.5,3.5 + parent: 181 + - uid: 19 + components: + - type: Transform + pos: -2.5,0.5 + parent: 181 + - uid: 20 + components: + - type: Transform + pos: -3.5,3.5 + parent: 181 + - uid: 31 + components: + - type: Transform + pos: -2.5,1.5 + parent: 181 + - uid: 60 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 181 + - uid: 70 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 181 + - uid: 71 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 181 + - uid: 72 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 181 + - uid: 73 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 181 +- proto: CableTerminal + entities: + - uid: 77 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 181 +- proto: Catwalk + entities: + - uid: 48 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 181 +- proto: Chair + entities: + - uid: 55 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 181 +- proto: ComputerDeepSpaceCom + entities: + - uid: 159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 181 +- proto: ComputerShuttle + entities: + - uid: 156 + components: + - type: Transform + pos: -2.5,6.5 + parent: 181 +- proto: FirelockEdge + entities: + - uid: 86 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 181 + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 181 + - uid: 134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 181 + - uid: 135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 181 +- proto: GasPort + entities: + - uid: 25 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 181 +- proto: GasVentPump + entities: + - uid: 26 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 181 +- proto: GeneratorBasic + entities: + - uid: 40 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 181 +- proto: GeneratorBasic15kW + entities: + - uid: 67 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 181 +- proto: GravityGeneratorMini + entities: + - uid: 39 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 181 +- proto: Grille + entities: + - uid: 33 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 181 + - uid: 49 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 181 + - uid: 50 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 181 + - uid: 57 + components: + - type: Transform + pos: -0.5,5.5 + parent: 181 + - uid: 69 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 181 + - uid: 80 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 181 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,6.5 + parent: 181 + - uid: 131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 181 + - uid: 136 + components: + - type: Transform + pos: -2.5,7.5 + parent: 181 + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 181 + - uid: 161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 181 +- proto: Gyroscope + entities: + - uid: 169 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 181 +- proto: PersonalAI + entities: + - uid: 167 + components: + - type: Transform + pos: -1.4453101,4.467156 + parent: 181 +- proto: PoweredSmallLight + entities: + - uid: 138 + components: + - type: Transform + pos: -5.5,2.5 + parent: 181 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 181 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 181 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 142 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 181 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 181 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: Rack + entities: + - uid: 27 + components: + - type: Transform + pos: -1.5,4.5 + parent: 181 + - uid: 52 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 181 +- proto: RandomPosterAny + entities: + - uid: 22 + components: + - type: Transform + pos: -0.5,3.5 + parent: 181 + - uid: 23 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 181 +- proto: SignalButton + entities: + - uid: 149 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 181 + - type: DeviceLinkSource + linkedPorts: + 81: + - Pressed: Toggle + 95: + - Pressed: Toggle + 92: + - Pressed: Toggle + - uid: 150 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 181 + - type: DeviceLinkSource + linkedPorts: + 36: + - Pressed: Toggle + 14: + - Pressed: Toggle + 34: + - Pressed: Toggle +- proto: SMESBasic + entities: + - uid: 24 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 181 +- proto: SubstationWallBasic + entities: + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 181 +- proto: Table + entities: + - uid: 154 + components: + - type: Transform + pos: -1.5,5.5 + parent: 181 +- proto: Thruster + entities: + - uid: 35 + components: + - type: Transform + pos: 0.5,4.5 + parent: 181 + - uid: 115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 181 + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-6.5 + parent: 181 + - uid: 120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 181 +- proto: WallSolid + entities: + - uid: 30 + components: + - type: Transform + pos: -3.5,0.5 + parent: 181 + - uid: 85 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 181 + - uid: 87 + components: + - type: Transform + pos: -4.5,3.5 + parent: 181 + - uid: 89 + components: + - type: Transform + pos: 0.5,0.5 + parent: 181 + - uid: 90 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 181 + - uid: 91 + components: + - type: Transform + pos: 1.5,3.5 + parent: 181 + - uid: 97 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 181 + - uid: 99 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 181 + - uid: 103 + components: + - type: Transform + pos: -6.5,3.5 + parent: 181 + - uid: 104 + components: + - type: Transform + pos: -0.5,3.5 + parent: 181 + - uid: 106 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 181 + - uid: 107 + components: + - type: Transform + pos: -4.5,4.5 + parent: 181 + - uid: 108 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 181 + - uid: 109 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 181 + - uid: 110 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 181 + - uid: 111 + components: + - type: Transform + pos: -5.5,3.5 + parent: 181 + - uid: 114 + components: + - type: Transform + pos: -5.5,0.5 + parent: 181 + - uid: 116 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 181 + - uid: 117 + components: + - type: Transform + pos: 0.5,3.5 + parent: 181 + - uid: 118 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 181 + - uid: 122 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 181 + - uid: 123 + components: + - type: Transform + pos: 1.5,0.5 + parent: 181 + - uid: 124 + components: + - type: Transform + pos: -6.5,0.5 + parent: 181 +- proto: WallSolidRust + entities: + - uid: 113 + components: + - type: Transform + pos: -0.5,0.5 + parent: 181 + - uid: 126 + components: + - type: Transform + pos: -4.5,0.5 + parent: 181 + - uid: 145 + components: + - type: Transform + pos: -0.5,4.5 + parent: 181 + - uid: 147 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 181 +- proto: Window + entities: + - uid: 47 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 181 + - uid: 56 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 181 + - uid: 78 + components: + - type: Transform + pos: -2.5,7.5 + parent: 181 + - uid: 79 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 181 + - uid: 88 + components: + - type: Transform + pos: -0.5,5.5 + parent: 181 + - uid: 96 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 181 + - uid: 98 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 181 + - uid: 101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 181 + - uid: 102 + components: + - type: Transform + pos: -4.5,5.5 + parent: 181 + - uid: 105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 181 + - uid: 125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,6.5 + parent: 181 + - uid: 137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 181 +... diff --git a/Resources/Maps/White/Shuttles/wizard.yml b/Resources/Maps/White/Shuttles/wizard.yml index 438d273c74..5a89020c72 100644 --- a/Resources/Maps/White/Shuttles/wizard.yml +++ b/Resources/Maps/White/Shuttles/wizard.yml @@ -28,7 +28,7 @@ entities: - type: MetaData - type: Transform pos: 0.3842575,0.4217209 - parent: invalid + parent: 451 - type: MapGrid chunks: -1,-1: @@ -602,6 +602,18 @@ entities: - type: RadiationGridResistance - type: SpreaderGrid - type: GridPathfinding + - uid: 451 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree - proto: AirlockExternalGlass entities: - uid: 3 @@ -2134,6 +2146,14 @@ entities: - type: Transform pos: -3.6894722,2.437179 parent: 2 +- proto: DeepSpaceComWallMount + entities: + - uid: 774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 2 - proto: DiceBag entities: - uid: 285 @@ -2155,6 +2175,8 @@ entities: - type: Transform pos: -4.5,2.5 parent: 2 + - type: FaxMachine + name: Неизвестный - proto: FigureSpawner entities: - uid: 288 @@ -2772,6 +2794,18 @@ entities: - type: Transform pos: 0.5,-15.5 parent: 2 +- proto: GeraldiyRubberStamp + entities: + - uid: 775 + components: + - type: MetaData + desc: Старая и потёртая печать. На ней почти высохли чернила, но она все ещё может послужить убедительным аргументом в руках нужных людей. + name: печать федерации волшебников + - type: Transform + pos: -4.0507927,2.3569171 + parent: 2 + - type: Stamp + stampedName: Федерация Волшебников - proto: GravityGeneratorMini entities: - uid: 390 diff --git a/Resources/Prototypes/Entities/Stations/base.yml b/Resources/Prototypes/Entities/Stations/base.yml index 398d2ee449..9f8e7e5d23 100644 --- a/Resources/Prototypes/Entities/Stations/base.yml +++ b/Resources/Prototypes/Entities/Stations/base.yml @@ -49,7 +49,7 @@ abstract: true components: - type: StationCargoShuttle - path: /Maps/Shuttles/cargo.yml + path: /Maps/White/Shuttles/cargo.yml - type: GridSpawn groups: # trade: @@ -60,7 +60,7 @@ # - /Maps/Shuttles/trading_outpost.yml mining: paths: - - /Maps/Shuttles/mining.yml + - /Maps/White/Shuttles/mining.yml # Spawn last ruins: hide: true diff --git a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml index e3babd4ea1..777881c0f3 100644 --- a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml +++ b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml @@ -1,6 +1,6 @@ - type: preloadedGrid id: ShuttleStriker - path: /Maps/Shuttles/ShuttleEvent/striker.yml + path: /Maps/White/Shuttles/ShuttleEvent/striker.yml copies: 2 - type: preloadedGrid @@ -20,10 +20,10 @@ - type: preloadedGrid id: Honki - path: /Maps/Shuttles/ShuttleEvent/honki.yml + path: /Maps/White/Shuttles/ShuttleEvent/honki.yml copies: 1 - type: preloadedGrid id: SyndieEvacPod - path: /Maps/Shuttles/ShuttleEvent/syndie_evacpod.yml + path: /Maps/White/Shuttles/ShuttleEvent/syndie_evacpod.yml copies: 1 # WD from 2 to 1 From 9c2941f9888579f3b0c957072d62cd41c9a4db17 Mon Sep 17 00:00:00 2001 From: BIGZi0348 Date: Sat, 15 Mar 2025 13:49:55 +0300 Subject: [PATCH 08/22] typo --- .../prototypes/entities/objects/misc/identification_cards.ftl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl index a8af3647b4..0aca8b73a1 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl @@ -99,7 +99,7 @@ ent-MaidIDCard = ID карта прислуги ent-BomzhIDCard = грязная ID карта .desc = Старая и грязная карта дожившая до нашего времени. ent-CargoIDCardAnotherSector = { ent-CargoIDCard } - .desc = { ent-ent-CargoIDCard.desc } + .desc = { ent-CargoIDCard.desc } ent-CMOIDCardAnotherSector = { ent-CMOIDCard } .desc = { ent-CMOIDCard.desc } ent-CaptainIDCardAnotherSector = { ent-CaptainIDCard } From f68ffb6104892ca81f496212b8d10716de0e1e4c Mon Sep 17 00:00:00 2001 From: BIGZi0348 Date: Sat, 15 Mar 2025 14:55:02 +0300 Subject: [PATCH 09/22] =?UTF-8?q?=D0=BF=D0=B5=D1=80=D0=B5=D0=B2=D0=BE?= =?UTF-8?q?=D0=B4=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Resources/Locale/ru-RU/job/job-description.ftl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Resources/Locale/ru-RU/job/job-description.ftl b/Resources/Locale/ru-RU/job/job-description.ftl index 2c97531cae..2f2635b98a 100644 --- a/Resources/Locale/ru-RU/job/job-description.ftl +++ b/Resources/Locale/ru-RU/job/job-description.ftl @@ -11,10 +11,10 @@ job-description-cargotech = Оформиляйте заказы, осущест job-description-ce = Руководите инженерным отделом, чтобы гарантировать идеальную работу систем энергоснабжения, чистоту атмосферы, и целостность корпуса станции. job-description-centcomoff = Выступите в качестве посла на новейшей современной космической станции во флоте НаноТрейзен. job-description-chaplain = Проповедуйте доброе слово вашего божества и религии и проводите духовное исцеление. -job-description-chef = Keep the station fed with a variety of food items, butcher dead animals to ensure ammonia doesn't leak, and help keep the bar lively. -job-description-chemist = Produce medicinal drugs for the doctors to use, research ethically dubious rare chemicals, and produce weapons of war when enemies of the station arrive. -job-description-clown = Entertain the crew through elaborate slapstick routines or terrible jokes. -job-description-cmo = Manage the resources and personnel of the medical department to keep the crew alive. +job-description-chef = Кормите экипаж станции разными блюдами, разделывайте мёртвых животных так, чтобы не просачивался аммиак, и помогайте поддерживать бар в оживлённом состоянии. +job-description-chemist = Создавайте лекарства для врачей, исследуйте сомнительные с точки зрения этики редкие химикаты, и производите боевые отравляющие вещества когда на станцию летят враги. +job-description-clown = Развлекайте экипаж ужасными шутками и изощрённым карикатурным паясничеством. +job-description-cmo = Руководите медицинским отделом, чтобы сохранить жизни и здоровье экипажа. job-description-paramedic = Спасайте тяжелораненых пациентов по всей станции, а иногда и за ее пределами. Стабилизируйте их, отвозите в медотсек, и возвращайтесь в патруль! job-description-detective = Исследуйте места преступлений с помощью криминалистических инструментов, убедитесь, что виновный клоун найден, да и просто загадочно курите в стороне. job-description-doctor = Диагностируйте и лечите персонал станции с помощью лекарственных препаратов, вакцин и лекарств от болезней, а также клонируйте мертвых. From 88030a7a298407b9e09e2b5e876fb106c4b41602 Mon Sep 17 00:00:00 2001 From: BIGZi0348 Date: Sat, 15 Mar 2025 17:15:45 +0300 Subject: [PATCH 10/22] =?UTF-8?q?=D1=81=D1=82=D0=B0=D0=BD=D1=86=D0=B8?= =?UTF-8?q?=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../_White/ERTRecruitment/ERTMapComponent.cs | 3 +- Resources/Maps/ERT/Old/ERTStation.yml | 18857 ---------------- Resources/Maps/{ERT => White}/ERTStation.yml | 2331 +- Resources/Maps/White/Shuttles/CBURN.yml | 8007 +++++++ .../Old => White/Shuttles}/ERTShuttle.yml | 0 Resources/Maps/White/centcomm.yml | 25 +- 6 files changed, 9062 insertions(+), 20161 deletions(-) delete mode 100644 Resources/Maps/ERT/Old/ERTStation.yml rename Resources/Maps/{ERT => White}/ERTStation.yml (97%) create mode 100644 Resources/Maps/White/Shuttles/CBURN.yml rename Resources/Maps/{ERT/Old => White/Shuttles}/ERTShuttle.yml (100%) diff --git a/Content.Server/_White/ERTRecruitment/ERTMapComponent.cs b/Content.Server/_White/ERTRecruitment/ERTMapComponent.cs index b1dfbd0662..2017b7a4b1 100644 --- a/Content.Server/_White/ERTRecruitment/ERTMapComponent.cs +++ b/Content.Server/_White/ERTRecruitment/ERTMapComponent.cs @@ -11,6 +11,5 @@ public sealed partial class ERTMapComponent : Component [ViewVariables] public EntityUid? Shuttle; - public static ResPath OutpostMap = new("/Maps/ERT/ERTStation.yml"); - //public static ResPath ShuttleMap = new("/Maps/ERT/ERTShuttle.yml"); + public static ResPath OutpostMap = new("/Maps/White/ERTStation.yml"); } diff --git a/Resources/Maps/ERT/Old/ERTStation.yml b/Resources/Maps/ERT/Old/ERTStation.yml deleted file mode 100644 index 3e031f7ca1..0000000000 --- a/Resources/Maps/ERT/Old/ERTStation.yml +++ /dev/null @@ -1,18857 +0,0 @@ -meta: - format: 5 - postmapinit: false -tilemap: - 0: Space - 24: FloorDark - 29: FloorDarkMono - 49: FloorKitchen - 53: FloorMetalDiamond - 70: FloorSteel - 81: FloorTechMaint2 - 83: FloorWhite - 88: FloorWhiteMono - 93: FloorWood - 95: Lattice - 96: Plating -entities: -- proto: "" - entities: - - uid: 1 - components: - - type: MetaData - - pos: -3.9375005,-1.5 - parent: 2522 - type: Transform - - chunks: - 0,0: - ind: 0,0 - tiles: MQAAADEAAAAxAAAAYAAAAGAAAABgAAAAAAAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAADEAAAAxAAAAMQAAAGAAAABGAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABfAAAAXwAAAF8AAABgAAAAMQAAAGAAAABgAAAARgAAAEYAAABGAAAARgAAAEYAAABgAAAAHQAAAB0AAAAdAAAAYAAAAAAAAAAAAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAGAAAAAAAAAAAAAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAGAAAABGAAAARgAAAEYAAABgAAAAAAAAAAAAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABfAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAARgAAAEYAAABGAAAAYAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAYAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAYAAAAEYAAABGAAAARgAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAGAAAAAdAAAAHQAAAB0AAAAdAAAAHQAAAGAAAABGAAAARgAAAEYAAABgAAAAGAAAABgAAAAdAAAAHQAAAB0AAABgAAAARgAAAEYAAABGAAAARgAAAEYAAABgAAAARgAAAEYAAABGAAAAYAAAABgAAABgAAAAYAAAAGAAAABgAAAAYAAAAEYAAAAdAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAGAAAAAYAAAAHQAAAB0AAAAdAAAAHQAAAGAAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABgAAAAGAAAABgAAAAYAAAAGAAAABgAAABgAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAAYAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAEYAAABGAAAARgAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABGAAAARgAAAEYAAABGAAAARgAAAFEAAABGAAAARgAAAEYAAABgAAAARgAAAEYAAABGAAAARgAAAGAAAABgAAAARgAAAEYAAABGAAAARgAAAEYAAABgAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAA== - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAMQAAADEAAABgAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAADEAAAAxAAAAYAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADEAAAAxAAAAMQAAAGAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAABfAAAAAAAAAAAAAABfAAAAAAAAAF8AAAAxAAAAMQAAADEAAABgAAAAYAAAAF8AAAAAAAAAXwAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAMQAAADEAAAAxAAAAYAAAAB0AAABgAAAAAAAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAA== - -1,0: - ind: -1,0 - tiles: HQAAAGAAAABTAAAAUwAAAFMAAABTAAAAYAAAAFMAAABTAAAAUwAAAGAAAAAdAAAAUwAAAFMAAABgAAAAMQAAAFMAAABgAAAAUwAAAB0AAAAdAAAAHQAAAGAAAAAdAAAAUwAAAFMAAABgAAAAUwAAAFMAAABTAAAAYAAAADEAAABgAAAAYAAAAFMAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABYAAAAYAAAAFMAAABgAAAAUwAAAGAAAABgAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAYAAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABgAAAARgAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAARgAAAEYAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABgAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAGAAAABGAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAFMAAABTAAAAYAAAAGAAAABTAAAAYAAAAGAAAABGAAAAYAAAABgAAABgAAAAHQAAAB0AAAAdAAAAHQAAAGAAAABTAAAAYAAAAGAAAAAdAAAAUwAAAB0AAABgAAAAHQAAAB0AAABgAAAAYAAAAB0AAABGAAAARgAAAEYAAABgAAAAYAAAAGAAAABgAAAAHQAAAFMAAAAdAAAAYAAAAB0AAAAdAAAAYAAAAEYAAABGAAAARgAAAEYAAABGAAAAYAAAAB0AAAAdAAAAYAAAAGAAAABgAAAAYAAAAGAAAABGAAAARgAAAB0AAABgAAAAYAAAAGAAAABgAAAARgAAAGAAAABGAAAARgAAAGAAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAAA1AAAAYAAAAGAAAABgAAAAYAAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAANQAAAGAAAABgAAAAYAAAAGAAAABGAAAARgAAAEYAAABGAAAAYAAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAADUAAABgAAAAYAAAAGAAAABgAAAARgAAAEYAAAAdAAAAHQAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAEYAAABGAAAAYAAAAGAAAABgAAAAHQAAAEYAAABGAAAAUQAAAEYAAABGAAAAAAAAAF8AAAAAAAAAYAAAAB0AAABGAAAARgAAAB0AAAAdAAAAYAAAAB0AAABGAAAAHQAAAGAAAABGAAAARgAAAA== - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAYAAAABgAAAAYAAAAGAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAHQAAAGAAAAAxAAAAMQAAADEAAAAxAAAAAAAAAGAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAABgAAAAMQAAADEAAAAxAAAAMQAAAAAAAABgAAAAGAAAABgAAAAdAAAAGAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAYAAAADEAAAAxAAAAMQAAADEAAABgAAAAYAAAABgAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAxAAAAHQAAAGAAAABTAAAAHQAAAB0AAAAdAAAAYAAAAB0AAAAdAAAAHQAAAGAAAAAdAAAAHQAAAB0AAABgAAAAMQAAAA== - -1,1: - ind: -1,1 - tiles: AAAAAF8AAAAAAAAAYAAAAB0AAABGAAAARgAAAB0AAAAdAAAAYAAAAB0AAABGAAAAHQAAAGAAAABgAAAARgAAAAAAAABfAAAAAAAAAGAAAAAdAAAARgAAAEYAAAAdAAAAHQAAAGAAAAAdAAAARgAAAB0AAABgAAAAHQAAAEYAAABfAAAAXwAAAF8AAABfAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAHQAAAEYAAAAdAAAAYAAAAB0AAABGAAAAAAAAAAAAAABfAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAYAAAAB0AAABGAAAAHQAAAGAAAAAdAAAARgAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAGAAAAAdAAAARgAAAB0AAABgAAAAHQAAAEYAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAYAAAAGAAAABgAAAAYAAAAB0AAABGAAAAXwAAAAAAAABfAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAGAAAAAdAAAARgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,1: - ind: 0,1 - tiles: YAAAAGAAAABGAAAARgAAAGAAAABgAAAAYAAAAEYAAABgAAAAYAAAAB0AAABGAAAARgAAAB0AAABgAAAAHQAAAB0AAABgAAAARgAAAEYAAAAdAAAAYAAAAEYAAABGAAAARgAAAGAAAAAdAAAAHQAAAB0AAAAdAAAAYAAAAB0AAAAdAAAAYAAAAEYAAABgAAAAYAAAAGAAAABGAAAARgAAAEYAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAHQAAAGAAAABGAAAARgAAAB0AAABgAAAARgAAAEYAAABGAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAABgAAAARgAAAGAAAABgAAAAYAAAAEYAAABGAAAARgAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAYAAAAEYAAABGAAAAHQAAAGAAAABGAAAARgAAAEYAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAGAAAABGAAAAYAAAAGAAAABgAAAARgAAAEYAAABGAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAUwAAAFMAAABTAAAAYAAAAEYAAABGAAAARgAAAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAFMAAABTAAAAUwAAAGAAAABGAAAARgAAAEYAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABgAAAAYAAAAGAAAABgAAAARgAAAEYAAABGAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAEYAAABGAAAARgAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAGAAAABGAAAARgAAAEYAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAARgAAAEYAAABGAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAYAAAAEYAAABGAAAARgAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAGAAAABGAAAARgAAAEYAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABgAAAARgAAAEYAAABGAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,0: - ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABgAAAAHQAAAFMAAABTAAAAHQAAAGAAAAAdAAAAUwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAYAAAAB0AAABTAAAAUwAAAB0AAABgAAAAUwAAAFMAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAGAAAABgAAAAUwAAAFMAAABgAAAAYAAAAGAAAABTAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABgAAAAHQAAAFMAAABTAAAAUwAAAGAAAABTAAAAUwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAYAAAAB0AAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAGAAAAAdAAAAUwAAAFMAAABTAAAAYAAAAFMAAABTAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAB0AAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAGAAAABgAAAAHQAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAADUAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAA1AAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABgAAAANQAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAA== - 0,2: - ind: 0,2 - tiles: AAAAAF8AAAAAAAAAAAAAAAAAAABgAAAARgAAAEYAAABGAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAYAAAAEYAAABGAAAARgAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAGAAAABGAAAARgAAAEYAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAHQAAAGAAAAAdAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,-1: - ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABgAAAAHQAAAFMAAABTAAAAHQAAAGAAAAAdAAAAUwAAAA== - 1,0: - ind: 1,0 - tiles: AAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABgAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAYAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAFEAAABgAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,1: - ind: 1,1 - tiles: RgAAAB0AAABgAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEYAAAAdAAAAYAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,-1: - ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,1: - ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures - - type: OccluderTree - - type: SpreaderGrid - - type: Shuttle - - type: GridPathfinding - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - color: '#52B4E9FF' - id: Bot - decals: - 92: -23,-1 - 93: -23,0 - 94: -23,1 - 95: -20,1 - 96: -20,0 - 97: -20,-1 - 106: -23,4 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 120: -1,8 - 121: 0,8 - 122: 1,8 - 123: 2,8 - 124: 3,8 - 125: 3,7 - 126: 2,7 - 127: 1,7 - 128: 0,7 - 129: -1,7 - 138: -8,13 - 141: -9,9 - 143: -12,7 - 144: -13,7 - 145: -14,7 - 146: -14,8 - 159: -12,15 - 160: -12,16 - 161: -12,17 - 162: -8,17 - 163: -9,17 - 164: -9,16 - 165: -8,16 - 166: -8,15 - 167: -9,15 - 201: -6,14 - 253: 4,21 - 254: 4,19 - 255: 4,17 - 413: 15,16 - 414: 15,17 - 415: 17,17 - 416: 17,16 - 421: 10,17 - 422: 13,17 - 473: 11,6 - 474: 10,6 - 502: 11,12 - 561: -2,8 - 562: -2,7 - 563: 4,8 - 564: 4,7 - - node: - color: '#52B4E996' - id: BotGreyscale - decals: - 535: -12,-3 - 565: -11,-5 - - node: - color: '#52B4E9FF' - id: BotGreyscale - decals: - 42: -8,-1 - 43: -9,1 - 46: -5,0 - 47: -5,-1 - 48: -6,7 - 49: -6,8 - 50: -4,8 - 51: -4,7 - 52: -13,1 - 53: -12,1 - 54: -12,-1 - 55: -13,-1 - 80: -18,-1 - 81: -16,-1 - - node: - color: '#A020F0FF' - id: BotGreyscale - decals: - 512: 10,2 - 513: 11,2 - 514: 12,2 - - node: - color: '#52B4E9FF' - id: Box - decals: - 104: -23,3 - 105: -23,5 - - node: - color: '#FFFFFFFF' - id: Box - decals: - 130: 1,10 - 139: -9,13 - 140: -8,9 - 142: -11,7 - 193: -6,15 - 194: -6,16 - 195: -6,17 - 196: -6,18 - 197: -4,18 - 198: -4,17 - 199: -4,16 - 200: -4,15 - 219: -2,20 - 220: -2,19 - 221: -2,18 - 222: -2,17 - 223: 0,20 - 224: 0,19 - 225: 0,18 - 226: 0,17 - 417: 12,17 - 418: 11,17 - 419: 10,16 - 420: 13,16 - 467: 12,8 - 468: 13,8 - 469: 14,8 - 470: 14,6 - 471: 13,6 - 472: 12,6 - 494: 10,12 - 495: 11,10 - 496: 12,12 - 497: 13,12 - 498: 14,12 - 499: 14,10 - 500: 13,10 - 501: 12,10 - 541: -2,21 - 542: -2,22 - 543: 0,21 - 544: 0,22 - 545: -6,19 - 546: -6,20 - 547: -4,19 - 548: -4,20 - - node: - color: '#52B4E996' - id: BoxGreyscale - decals: - 525: -10,-3 - 526: -9,-3 - 527: -8,-3 - 528: -7,-3 - 529: -6,-3 - 530: -6,-5 - 531: -7,-5 - 532: -8,-5 - 533: -10,-5 - 534: -9,-5 - - node: - color: '#52B4E9FF' - id: BoxGreyscale - decals: - 40: -7,-1 - 41: -9,-1 - 44: -3,-1 - 45: -4,-1 - 56: -11,1 - 57: -11,-1 - 78: -18,0 - 79: -16,0 - - node: - color: '#A020F0FF' - id: BrickTileSteelCornerNe - decals: - 503: 12,4 - - node: - color: '#A020F0FF' - id: BrickTileSteelCornerNw - decals: - 504: 10,4 - - node: - color: '#A020F0FF' - id: BrickTileSteelCornerSe - decals: - 507: 12,3 - - node: - color: '#A020F0FF' - id: BrickTileSteelCornerSw - decals: - 506: 10,3 - - node: - color: '#A020F0FF' - id: BrickTileSteelLineN - decals: - 505: 11,4 - - node: - color: '#A020F0FF' - id: BrickTileSteelLineS - decals: - 508: 11,3 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNe - decals: - 259: 4,24 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNw - decals: - 260: 2,24 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSe - decals: - 262: 4,23 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSw - decals: - 264: 2,23 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineN - decals: - 261: 3,24 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - decals: - 263: 3,23 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Caution - decals: - 278: 8,23 - 279: 8,21 - 280: 8,30 - 281: 8,32 - - node: - color: '#FFFFFFFF' - id: Caution - decals: - 282: 8,34 - 283: 6,34 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 284: 9,30 - 285: 9,32 - 286: 9,23 - 287: 8,35 - 288: 6,35 - - node: - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 441: 8,11 - 446: -1,3 - 447: -3,-3 - 460: -1,14 - 466: 17,15 - - node: - color: '#FFFFFFFF' - id: DirtLight - decals: - 435: -5,10 - 436: 2,12 - 437: 6,10 - 438: 0,9 - 442: 8,2 - 443: 7,7 - 444: -1,5 - 445: 2,3 - 448: 1,-2 - 453: 7,28 - 454: 8,17 - 455: 7,24 - 456: 8,33 - 457: 6,31 - 458: 2,20 - 459: 3,14 - 461: -5,15 - 462: -1,18 - 463: 11,15 - - node: - color: '#FFFFFFFF' - id: DirtMedium - decals: - 439: -1,12 - 440: 6,4 - 449: 2,-3 - 450: 6,21 - 451: 8,22 - 452: 6,29 - 464: 13,15 - 465: 16,17 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelCornerNe - decals: - 227: 4,15 - 289: 8,15 - 374: 8,33 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelCornerNw - decals: - 228: -2,15 - 290: 6,15 - 315: -1,5 - 337: -6,12 - 373: 6,33 - 386: -4,-3 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelCornerSe - decals: - 235: 4,14 - 304: 8,2 - 353: 8,17 - 384: -2,-5 - 557: 4,9 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelCornerSw - decals: - 234: -2,14 - 308: 4,2 - 313: -1,3 - 335: -6,10 - 352: 6,17 - 383: -4,-5 - 558: -2,9 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelEndE - decals: - 388: 2,-3 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelEndN - decals: - 242: 2,22 - 399: 1,1 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelEndS - decals: - 241: 2,16 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelInnerNe - decals: - 404: 1,-3 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelInnerNw - decals: - 323: 6,5 - 351: 6,12 - 403: 1,-3 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelInnerSe - decals: - 330: 4,10 - 396: -2,-3 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelInnerSw - decals: - 322: 4,3 - 329: 6,10 - 334: -2,10 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelLineE - decals: - 243: 2,21 - 244: 2,20 - 245: 2,19 - 246: 2,18 - 247: 2,17 - 292: 8,14 - 293: 8,13 - 294: 8,12 - 295: 8,11 - 296: 8,10 - 297: 8,9 - 298: 8,8 - 299: 8,7 - 300: 8,6 - 301: 8,5 - 302: 8,4 - 303: 8,3 - 355: 8,18 - 356: 8,19 - 357: 8,20 - 376: 8,29 - 377: 8,28 - 378: 8,27 - 379: 8,25 - 380: 8,25 - 381: 8,24 - 382: 8,26 - 387: -2,-4 - 397: 1,-2 - 398: 1,-1 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelLineN - decals: - 229: -1,15 - 230: 0,15 - 231: 1,15 - 232: 2,15 - 233: 3,15 - 291: 7,15 - 316: 0,5 - 317: 1,5 - 318: 3,5 - 319: 2,5 - 320: 4,5 - 321: 5,5 - 338: -5,12 - 339: -4,12 - 340: -3,12 - 341: -1,12 - 342: -2,12 - 343: 1,12 - 344: 0,12 - 345: 2,12 - 346: 3,12 - 347: 5,12 - 348: 4,12 - 375: 7,33 - 392: 0,-3 - 393: -1,-3 - 394: -2,-3 - 395: -3,-3 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelLineS - decals: - 236: -1,14 - 237: 0,14 - 238: 1,14 - 239: 2,14 - 240: 3,14 - 305: 7,2 - 306: 6,2 - 307: 5,2 - 309: 3,3 - 310: 2,3 - 311: 1,3 - 312: 0,3 - 328: 5,10 - 331: -3,10 - 332: -4,10 - 333: -5,10 - 354: 7,17 - 385: -3,-5 - 389: 1,-3 - 390: 0,-3 - 391: -1,-3 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelLineW - decals: - 248: 2,17 - 249: 2,18 - 250: 2,19 - 251: 2,20 - 252: 2,21 - 314: -1,4 - 324: 6,6 - 325: 6,7 - 326: 6,8 - 327: 6,9 - 336: -6,11 - 349: 6,13 - 350: 6,14 - 358: 6,18 - 359: 6,19 - 360: 6,20 - 361: 6,21 - 362: 6,22 - 363: 6,23 - 364: 6,24 - 365: 6,25 - 366: 6,26 - 367: 6,27 - 368: 6,28 - 369: 6,29 - 370: 6,30 - 371: 6,31 - 372: 6,32 - 400: 1,-2 - 401: 1,-1 - 402: 1,0 - - node: - color: '#0E7F1BFF' - id: MiniTileWhiteCornerNe - decals: - 107: -20,5 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerNe - decals: - 1: -8,6 - 12: -3,5 - 27: -11,5 - - node: - color: '#EFB341FF' - id: MiniTileWhiteCornerNe - decals: - 169: -10,13 - 173: -8,12 - 184: -11,9 - - node: - color: '#0E7F1BFF' - id: MiniTileWhiteCornerNw - decals: - 108: -22,5 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerNw - decals: - 0: -9,6 - 26: -18,5 - - node: - color: '#EFB341FF' - id: MiniTileWhiteCornerNw - decals: - 168: -11,13 - - node: - color: '#0E7F1BFF' - id: MiniTileWhiteCornerSe - decals: - 109: -20,3 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerSe - decals: - 10: -3,3 - 18: -11,3 - - node: - color: '#EFB341FF' - id: MiniTileWhiteCornerSe - decals: - 170: -8,11 - 183: -11,8 - - node: - color: '#0E7F1BFF' - id: MiniTileWhiteCornerSw - decals: - 110: -22,3 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerSw - decals: - 4: -9,3 - 19: -18,3 - - node: - color: '#EFB341FF' - id: MiniTileWhiteCornerSw - decals: - 171: -11,11 - 181: -13,8 - - node: - color: '#0E7F1BFF' - id: MiniTileWhiteEndE - decals: - 112: -21,2 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteEndN - decals: - 36: -14,1 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteEndS - decals: - 37: -14,-1 - - node: - color: '#0E7F1BFF' - id: MiniTileWhiteEndW - decals: - 111: -22,2 - - node: - color: '#EFB341FF' - id: MiniTileWhiteEndW - decals: - 180: -14,9 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteInnerNe - decals: - 17: -8,5 - - node: - color: '#EFB341FF' - id: MiniTileWhiteInnerNe - decals: - 175: -10,12 - - node: - color: '#EFB341FF' - id: MiniTileWhiteInnerSw - decals: - 187: -13,9 - - node: - color: '#0E7F1BFF' - id: MiniTileWhiteLineE - decals: - 114: -20,4 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineE - decals: - 11: -3,4 - 34: -11,4 - 38: -14,0 - - node: - color: '#0E7F1BFF' - id: MiniTileWhiteLineN - decals: - 113: -21,5 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineN - decals: - 13: -4,5 - 14: -5,5 - 15: -6,5 - 16: -7,5 - 28: -17,5 - 29: -16,5 - 30: -15,5 - 31: -14,5 - 32: -13,5 - 33: -12,5 - - node: - color: '#EFB341FF' - id: MiniTileWhiteLineN - decals: - 174: -9,12 - 185: -12,9 - 186: -13,9 - - node: - color: '#0E7F1BFF' - id: MiniTileWhiteLineS - decals: - 115: -21,3 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineS - decals: - 5: -8,3 - 6: -7,3 - 7: -6,3 - 8: -5,3 - 9: -4,3 - 20: -17,3 - 21: -16,3 - 22: -15,3 - 23: -14,3 - 24: -12,3 - 25: -13,3 - - node: - color: '#EFB341FF' - id: MiniTileWhiteLineS - decals: - 176: -9,11 - 177: -10,11 - 182: -12,8 - - node: - color: '#0E7F1BFF' - id: MiniTileWhiteLineW - decals: - 116: -22,4 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineW - decals: - 2: -9,5 - 3: -9,4 - 35: -18,4 - 39: -14,0 - - node: - color: '#EFB341FF' - id: MiniTileWhiteLineW - decals: - 172: -11,12 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 147: -18,10 - 148: -16,10 - 149: -18,8 - - node: - color: '#52B4E9FF' - id: WarnCornerGreyscaleSW - decals: - 70: -4,0 - - node: - color: '#FFFFFFFF' - id: WarnCornerNE - decals: - 425: 12,16 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 426: 11,16 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 190: -13,8 - - node: - color: '#52B4E996' - id: WarnCornerSmallGreyscaleNE - decals: - 540: -13,-4 - - node: - color: '#52B4E996' - id: WarnCornerSmallGreyscaleNW - decals: - 539: -11,-4 - - node: - color: '#52B4E9FF' - id: WarnCornerSmallGreyscaleNW - decals: - 69: -8,0 - - node: - color: '#52B4E996' - id: WarnCornerSmallGreyscaleSE - decals: - 568: -12,-4 - - node: - color: '#52B4E9FF' - id: WarnCornerSmallGreyscaleSE - decals: - 90: -16,1 - 91: -17,1 - - node: - color: '#52B4E9FF' - id: WarnCornerSmallGreyscaleSW - decals: - 73: -4,1 - 88: -18,1 - 89: -17,1 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 275: 8,29 - 276: 8,20 - 411: 16,15 - 428: 12,15 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 410: 16,15 - 427: 11,15 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 274: 8,33 - 277: 8,24 - 493: 10,11 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 192: -13,9 - - node: - color: '#52B4E9FF' - id: WarnLineE - decals: - 101: -21,-1 - 102: -21,0 - 103: -21,1 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 156: -10,15 - 157: -10,16 - 158: -10,17 - 207: -5,15 - 208: -5,16 - 209: -5,17 - 210: -5,18 - 211: -1,17 - 212: -1,18 - 213: -1,19 - 214: -1,20 - 256: 3,17 - 257: 3,19 - 258: 3,21 - 265: 8,30 - 266: 8,31 - 267: 8,32 - 268: 8,21 - 269: 8,22 - 270: 8,23 - 407: 16,16 - 408: 16,17 - 492: 10,10 - 553: -5,19 - 554: -5,20 - 555: -1,21 - 556: -1,22 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleE - decals: - 537: -13,-3 - 567: -12,-5 - - node: - color: '#52B4E9FF' - id: WarnLineGreyscaleE - decals: - 76: -5,7 - 77: -5,8 - 82: -17,-1 - 83: -17,0 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleN - decals: - 515: -10,-4 - 516: -9,-4 - 517: -8,-4 - 518: -7,-4 - 519: -6,-4 - 536: -12,-4 - - node: - color: '#52B4E9FF' - id: WarnLineGreyscaleN - decals: - 58: -11,0 - 59: -12,0 - 60: -13,0 - 67: -9,0 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleS - decals: - 520: -6,-4 - 521: -7,-4 - 522: -8,-4 - 523: -9,-4 - 524: -10,-4 - 566: -11,-4 - - node: - color: '#52B4E9FF' - id: WarnLineGreyscaleS - decals: - 61: -11,0 - 62: -12,0 - 63: -13,0 - 64: -8,0 - 65: -7,0 - 66: -9,0 - 71: -3,0 - 72: -5,1 - 86: -18,1 - 87: -16,1 - - node: - color: '#A020F0FF' - id: WarnLineGreyscaleS - decals: - 509: 10,3 - 510: 11,3 - 511: 12,3 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleW - decals: - 538: -11,-3 - - node: - color: '#52B4E9FF' - id: WarnLineGreyscaleW - decals: - 68: -8,1 - 74: -5,7 - 75: -5,8 - 84: -17,-1 - 85: -17,0 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 131: -1,9 - 132: 0,9 - 133: 1,9 - 134: 2,9 - 135: 3,9 - 188: -11,8 - 189: -12,8 - 191: -14,9 - 478: 14,7 - 479: 13,7 - 480: 12,7 - 481: 11,7 - 482: 10,7 - 488: 14,11 - 489: 13,11 - 490: 12,11 - 491: 11,11 - 559: -2,9 - 560: 4,9 - - node: - color: '#52B4E996' - id: WarnLineS - decals: - 117: -22,3 - 118: -22,4 - 119: -22,5 - - node: - color: '#52B4E9FF' - id: WarnLineS - decals: - 98: -22,-1 - 99: -22,0 - 100: -22,1 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 153: -11,15 - 154: -11,16 - 155: -11,17 - 202: -5,14 - 203: -5,15 - 204: -5,16 - 205: -5,17 - 206: -5,18 - 215: -1,17 - 216: -1,18 - 217: -1,19 - 218: -1,20 - 405: 16,16 - 406: 16,17 - 549: -5,19 - 550: -5,20 - 551: -1,21 - 552: -1,22 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 136: -8,8 - 137: -9,8 - 150: -18,7 - 151: -17,7 - 152: -16,7 - 178: -8,12 - 179: -9,12 - 271: 8,34 - 272: 7,34 - 273: 6,34 - 409: 15,15 - 412: 17,15 - 423: 10,15 - 424: 13,15 - 475: 14,7 - 476: 13,7 - 477: 12,7 - 483: 14,11 - 484: 13,11 - 485: 12,11 - 486: 11,11 - 487: 10,11 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNe - decals: - 432: 17,13 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSe - decals: - 431: 17,12 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSw - decals: - 430: 16,12 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinEndN - decals: - 429: 16,14 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 434: 16,13 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 433: 16,13 - type: DecalGrid - - version: 2 - data: - tiles: - 0,0: - 0: 65535 - 1,0: - 0: 65535 - 2,0: - 0: 65525 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65535 - 1,1: - 0: 65535 - 1,2: - 0: 65535 - 1,3: - 0: 65535 - 2,1: - 0: 65535 - 2,2: - 0: 65535 - 2,3: - 0: 65535 - 3,0: - 0: 13298 - 3,1: - 0: 65523 - 3,2: - 0: 65535 - 3,3: - 0: 65535 - 0,-2: - 0: 65297 - 0,-1: - 0: 65535 - 1,-1: - 0: 48015 - -4,0: - 0: 65535 - -4,1: - 0: 65535 - -4,2: - 0: 65535 - -4,3: - 0: 45055 - -3,0: - 0: 65535 - -3,1: - 0: 65535 - -3,2: - 0: 65535 - -3,3: - 0: 65535 - -2,0: - 0: 65535 - -2,1: - 0: 65535 - -2,2: - 0: 65535 - -2,3: - 0: 65535 - -1,0: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - -4,-1: - 0: 65518 - -3,-1: - 0: 65535 - -2,-1: - 0: 65535 - -2,-2: - 0: 65416 - -1,-2: - 0: 65280 - -1,-1: - 0: 65535 - -4,4: - 0: 20394 - -3,4: - 0: 12287 - -2,4: - 0: 61439 - -1,4: - 0: 65535 - -1,5: - 0: 61183 - 0,4: - 0: 65535 - 0,5: - 0: 65535 - 0,6: - 0: 61694 - 1,4: - 0: 65535 - 1,5: - 0: 65535 - 1,6: - 0: 65279 - 1,7: - 0: 61422 - 2,4: - 0: 16383 - 2,5: - 0: 13107 - 2,6: - 0: 13107 - 2,7: - 0: 13107 - 3,4: - 0: 4095 - -6,0: - 0: 65535 - -6,1: - 0: 36863 - -6,2: - 0: 3976 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 61439 - -5,3: - 0: 12030 - 1,8: - 0: 61422 - 2,8: - 0: 13107 - -6,-1: - 0: 65314 - -5,-1: - 0: 65348 - 4,2: - 0: 61680 - 4,3: - 0: 63351 - 4,4: - 0: 3959 - 0,-3: - 0: 7936 - 1,-3: - 0: 12544 - 1,-2: - 0: 34958 - 2,-1: - 0: 17487 - 3,-1: - 0: 8879 - -4,-3: - 0: 12032 - -4,-2: - 0: 60962 - -3,-3: - 0: 20224 - -3,-2: - 0: 65348 - -2,-3: - 0: 36608 - -1,-3: - 0: 3840 - -4,5: - 0: 62788 - -3,5: - 0: 61986 - -2,5: - 0: 62190 - -2,6: - 0: 1578 - -1,6: - 0: 58083 - -1,7: - 0: 140 - 0,7: - 0: 12048 - -7,0: - 0: 7953 - -7,1: - 0: 7953 - -7,2: - 0: 19555 - -7,3: - 0: 34948 - -6,3: - 0: 4336 - 0,8: - 0: 3618 - -7,-1: - 0: 7959 - -7,-2: - 0: 51200 - -6,-2: - 0: 12032 - -5,-2: - 0: 18244 - -5,-3: - 0: 51200 - 4,0: - 0: 35956 - 4,1: - 0: 240 - 5,0: - 0: 4096 - 5,1: - 0: 12561 - 5,2: - 0: 63734 - 5,3: - 0: 63624 - 5,4: - 0: 3976 - 4,-1: - 0: 25360 - -6,4: - 0: 35939 - -6,5: - 0: 8 - -5,5: - 0: 2247 - -5,4: - 0: 11810 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: GasTileOverlay - - type: RadiationGridResistance - - uid: 2522 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - - type: LoadedMap -- proto: AdvMopItem - entities: - - uid: 3 - components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: AirAlarm - entities: - - uid: 15 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,8.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 913 - - 914 - - 912 - - 901 - - 911 - - 902 - type: DeviceNetwork - - devices: - - 1374 - - 1356 - - 1376 - - 1345 - - 1350 - - 1377 - - 1349 - - 1375 - - 1360 - - 1384 - - 1401 - - 1364 - - 1402 - - 1365 - - 913 - - 914 - - 912 - - 901 - - 911 - - 902 - type: DeviceList - - uid: 16 - components: - - pos: -14.5,6.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 903 - - 917 - type: DeviceNetwork - - devices: - - 1355 - - 1378 - - 1381 - - 1346 - - 1353 - - 1380 - - 1379 - - 1354 - - 1382 - - 1351 - - 1383 - - 1352 - - 913 - - 915 - - 916 - - 917 - - 918 - - 903 - type: DeviceList - - uid: 17 - components: - - pos: 1.5,16.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 1336 - - 1391 - - 1335 - - 1392 - - 1394 - - 1333 - - 1393 - - 1334 - - 1395 - - 1332 - type: DeviceNetwork - - devices: - - 926 - - 927 - - 928 - - 929 - - 907 - - 1336 - - 1391 - - 1335 - - 1392 - - 1394 - - 1333 - - 1393 - - 1334 - - 1395 - - 1332 - type: DeviceList - - uid: 18 - components: - - pos: -12.5,10.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 930 - - 933 - - 934 - - 931 - - 932 - - 908 - type: DeviceNetwork - - devices: - - 1329 - - 1367 - - 1396 - - 1361 - - 1366 - - 1328 - - 930 - - 933 - - 934 - - 931 - - 932 - - 908 - type: DeviceList - - uid: 19 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,9.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 937 - - 935 - type: DeviceNetwork - - devices: - - 1368 - - 1330 - - 1331 - - 1369 - - 1387 - - 1342 - - 1370 - - 1343 - - 1373 - - 1344 - - 905 - - 906 - - 925 - - 921 - - 920 - - 919 - - 922 - - 923 - - 924 - - 935 - - 937 - type: DeviceList - - uid: 20 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,14.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 930 - - 933 - - 934 - - 931 - - 932 - - 908 - type: DeviceNetwork - - devices: - - 1359 - - 1372 - - 1358 - - 1371 - - 1386 - - 1347 - - 1399 - - 1362 - - 1385 - - 1348 - - 930 - - 933 - - 934 - - 931 - - 932 - - 908 - type: DeviceList -- proto: AirlockAtmosphericsGlassLocked - entities: - - uid: 21 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,9.5 - parent: 1 - type: Transform -- proto: AirlockChemistry - entities: - - uid: 22 - components: - - rot: 3.141592653589793 rad - pos: -2.5,2.5 - parent: 1 - type: Transform -- proto: AirlockCommandGlassLocked - entities: - - uid: 23 - components: - - pos: -2.5,14.5 - parent: 1 - type: Transform - - uid: 24 - components: - - pos: -0.5,16.5 - parent: 1 - type: Transform - - uid: 25 - components: - - pos: 1.5,2.5 - parent: 1 - type: Transform - - uid: 26 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,16.5 - parent: 1 - type: Transform -- proto: AirlockCommandLocked - entities: - - uid: 27 - components: - - pos: 5.5,14.5 - parent: 1 - type: Transform - - uid: 28 - components: - - pos: 2.5,22.5 - parent: 1 - type: Transform - - uid: 29 - components: - - pos: 3.5,21.5 - parent: 1 - type: Transform - - uid: 30 - components: - - pos: 3.5,19.5 - parent: 1 - type: Transform - - uid: 31 - components: - - pos: 3.5,17.5 - parent: 1 - type: Transform - - uid: 32 - components: - - pos: 2.5,16.5 - parent: 1 - type: Transform - - uid: 33 - components: - - rot: 3.141592653589793 rad - pos: 16.5,14.5 - parent: 1 - type: Transform -- proto: AirlockEngineeringGlassLocked - entities: - - uid: 34 - components: - - pos: -10.5,10.5 - parent: 1 - type: Transform -- proto: AirlockEngineeringLocked - entities: - - uid: 35 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,11.5 - parent: 1 - type: Transform - - uid: 36 - components: - - pos: -9.5,14.5 - parent: 1 - type: Transform - - uid: 37 - components: - - pos: -10.5,14.5 - parent: 1 - type: Transform -- proto: AirlockEVAGlassLocked - entities: - - uid: 38 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,9.5 - parent: 1 - type: Transform -- proto: AirlockGlassShuttle - entities: - - uid: 39 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,30.5 - parent: 1 - type: Transform - - uid: 40 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,32.5 - parent: 1 - type: Transform - - uid: 41 - components: - - rot: 3.141592653589793 rad - pos: 8.5,35.5 - parent: 1 - type: Transform - - uid: 42 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,23.5 - parent: 1 - type: Transform - - uid: 43 - components: - - rot: 3.141592653589793 rad - pos: 6.5,35.5 - parent: 1 - type: Transform - - uid: 44 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,21.5 - parent: 1 - type: Transform -- proto: AirlockJanitorLocked - entities: - - uid: 45 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,3.5 - parent: 1 - type: Transform -- proto: AirlockMaintCommandLocked - entities: - - uid: 46 - components: - - pos: 4.5,1.5 - parent: 1 - type: Transform -- proto: AirlockMaintMedLocked - entities: - - uid: 47 - components: - - pos: -8.5,7.5 - parent: 1 - type: Transform -- proto: AirlockMedicalGlassLocked - entities: - - uid: 48 - components: - - rot: 3.141592653589793 rad - pos: -6.5,2.5 - parent: 1 - type: Transform - - uid: 49 - components: - - rot: 3.141592653589793 rad - pos: -4.5,6.5 - parent: 1 - type: Transform - - uid: 50 - components: - - pos: -16.5,2.5 - parent: 1 - type: Transform - - uid: 51 - components: - - pos: -13.5,2.5 - parent: 1 - type: Transform - - uid: 52 - components: - - pos: -9.5,4.5 - parent: 1 - type: Transform - - uid: 53 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,4.5 - parent: 1 - type: Transform -- proto: AirlockMedicalLocked - entities: - - uid: 54 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-1.5 - parent: 1 - type: Transform -- proto: AirlockVirologyLocked - entities: - - uid: 55 - components: - - pos: -18.5,4.5 - parent: 1 - type: Transform -- proto: AlwaysPoweredWallLight - entities: - - uid: 60 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-4.5 - parent: 1 - type: Transform -- proto: APCBasic - entities: - - uid: 61 - components: - - pos: -8.5,14.5 - parent: 1 - type: Transform - - uid: 62 - components: - - pos: -7.5,10.5 - parent: 1 - type: Transform - - uid: 63 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,0.5 - parent: 1 - type: Transform -- proto: AtmosDeviceFanTiny - entities: - - uid: 64 - components: - - pos: 8.5,35.5 - parent: 1 - type: Transform - - uid: 65 - components: - - pos: 9.5,32.5 - parent: 1 - type: Transform - - uid: 66 - components: - - pos: 9.5,23.5 - parent: 1 - type: Transform - - uid: 67 - components: - - pos: 9.5,21.5 - parent: 1 - type: Transform - - uid: 68 - components: - - pos: 6.5,35.5 - parent: 1 - type: Transform - - uid: 69 - components: - - pos: 9.5,30.5 - parent: 1 - type: Transform -- proto: Bed - entities: - - uid: 70 - components: - - pos: -22.5,0.5 - parent: 1 - type: Transform - - uid: 71 - components: - - pos: -19.5,1.5 - parent: 1 - type: Transform - - uid: 72 - components: - - pos: -19.5,0.5 - parent: 1 - type: Transform - - uid: 73 - components: - - pos: -19.5,-0.5 - parent: 1 - type: Transform - - uid: 74 - components: - - pos: -22.5,1.5 - parent: 1 - type: Transform - - uid: 75 - components: - - pos: -22.5,-0.5 - parent: 1 - type: Transform - - uid: 76 - components: - - pos: -5.5,18.5 - parent: 1 - type: Transform - - uid: 77 - components: - - pos: -5.5,17.5 - parent: 1 - type: Transform - - uid: 78 - components: - - pos: -3.5,18.5 - parent: 1 - type: Transform - - uid: 79 - components: - - pos: -5.5,16.5 - parent: 1 - type: Transform - - uid: 80 - components: - - pos: -5.5,15.5 - parent: 1 - type: Transform - - uid: 81 - components: - - pos: -3.5,17.5 - parent: 1 - type: Transform - - uid: 82 - components: - - pos: -3.5,16.5 - parent: 1 - type: Transform - - uid: 83 - components: - - pos: -3.5,15.5 - parent: 1 - type: Transform - - uid: 84 - components: - - pos: 17.5,12.5 - parent: 1 - type: Transform - - uid: 1822 - components: - - pos: -3.5,19.5 - parent: 1 - type: Transform - - uid: 1871 - components: - - pos: -5.5,19.5 - parent: 1 - type: Transform - - uid: 2088 - components: - - pos: -3.5,20.5 - parent: 1 - type: Transform - - uid: 2415 - components: - - pos: -5.5,20.5 - parent: 1 - type: Transform -- proto: BedsheetCaptain - entities: - - uid: 85 - components: - - rot: 3.141592653589793 rad - pos: 17.5,12.5 - parent: 1 - type: Transform -- proto: BedsheetGreen - entities: - - uid: 86 - components: - - pos: -19.5,1.5 - parent: 1 - type: Transform - - uid: 87 - components: - - pos: -19.5,0.5 - parent: 1 - type: Transform - - uid: 88 - components: - - pos: -19.5,-0.5 - parent: 1 - type: Transform - - uid: 89 - components: - - pos: -22.5,-0.5 - parent: 1 - type: Transform - - uid: 90 - components: - - pos: -22.5,0.5 - parent: 1 - type: Transform - - uid: 91 - components: - - pos: -22.5,1.5 - parent: 1 - type: Transform -- proto: BedsheetMedical - entities: - - uid: 92 - components: - - pos: -3.5,8.5 - parent: 1 - type: Transform - - uid: 93 - components: - - pos: -3.5,7.5 - parent: 1 - type: Transform - - uid: 94 - components: - - pos: -5.5,8.5 - parent: 1 - type: Transform - - uid: 95 - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform - - uid: 100 - components: - - pos: -3.5,18.5 - parent: 1 - type: Transform - - uid: 101 - components: - - pos: -3.5,17.5 - parent: 1 - type: Transform - - uid: 102 - components: - - pos: -3.5,20.5 - parent: 1 - type: Transform - - uid: 103 - components: - - pos: -3.5,19.5 - parent: 1 - type: Transform -- proto: BedsheetOrange - entities: - - uid: 2420 - components: - - pos: -5.5,19.5 - parent: 1 - type: Transform - - uid: 2421 - components: - - pos: -5.5,20.5 - parent: 1 - type: Transform - - uid: 2422 - components: - - pos: -3.5,16.5 - parent: 1 - type: Transform - - uid: 2423 - components: - - pos: -3.5,15.5 - parent: 1 - type: Transform -- proto: BedsheetRed - entities: - - uid: 96 - components: - - pos: -5.5,15.5 - parent: 1 - type: Transform - - uid: 97 - components: - - pos: -5.5,16.5 - parent: 1 - type: Transform - - uid: 98 - components: - - pos: -5.5,17.5 - parent: 1 - type: Transform - - uid: 99 - components: - - pos: -5.5,18.5 - parent: 1 - type: Transform -- proto: BenchSteelLeft - entities: - - uid: 104 - components: - - pos: -14.5,5.5 - parent: 1 - type: Transform - - uid: 105 - components: - - pos: -0.5,1.5 - parent: 1 - type: Transform - - uid: 106 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-1.5 - parent: 1 - type: Transform - - uid: 107 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 1 - type: Transform - - uid: 108 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 1 - type: Transform - - uid: 109 - components: - - pos: 0.5,12.5 - parent: 1 - type: Transform - - uid: 110 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,29.5 - parent: 1 - type: Transform -- proto: BenchSteelMiddle - entities: - - uid: 111 - components: - - pos: -13.5,5.5 - parent: 1 - type: Transform - - uid: 112 - components: - - pos: 1.5,12.5 - parent: 1 - type: Transform - - uid: 113 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,30.5 - parent: 1 - type: Transform -- proto: BenchSteelRight - entities: - - uid: 114 - components: - - pos: -12.5,5.5 - parent: 1 - type: Transform - - uid: 115 - components: - - pos: 0.5,1.5 - parent: 1 - type: Transform - - uid: 116 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-1.5 - parent: 1 - type: Transform - - uid: 117 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 1 - type: Transform - - uid: 118 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 1 - type: Transform - - uid: 119 - components: - - pos: 2.5,12.5 - parent: 1 - type: Transform - - uid: 120 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,31.5 - parent: 1 - type: Transform -- proto: BiomassReclaimer - entities: - - uid: 121 - components: - - pos: -8.5,1.5 - parent: 1 - type: Transform -- proto: BluespaceBeaker - entities: - - uid: 123 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 124 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 125 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2434 - components: - - pos: -4.548982,0.16582179 - parent: 1 - type: Transform - - sleepingAllowed: False - type: Physics - - uid: 2435 - components: - - pos: -4.548982,0.16582179 - parent: 1 - type: Transform - - sleepingAllowed: False - type: Physics - - uid: 2436 - components: - - pos: -4.548982,0.16582179 - parent: 1 - type: Transform - - sleepingAllowed: False - type: Physics - - uid: 2437 - components: - - pos: -4.548982,0.16582179 - parent: 1 - type: Transform - - sleepingAllowed: False - type: Physics - - uid: 2519 - components: - - pos: -4.548982,0.16582179 - parent: 1 - type: Transform - - sleepingAllowed: False - type: Physics - - uid: 2521 - components: - - pos: -4.548982,0.16582179 - parent: 1 - type: Transform - - sleepingAllowed: False - type: Physics -- proto: BoxBeaker - entities: - - uid: 126 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 127 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 128 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxBottle - entities: - - uid: 129 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 130 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 131 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxFlare - entities: - - uid: 2431 - components: - - pos: 11.672989,10.511342 - parent: 1 - type: Transform - - uid: 2432 - components: - - pos: 11.672989,10.511342 - parent: 1 - type: Transform - - uid: 2433 - components: - - pos: 11.672989,10.511342 - parent: 1 - type: Transform - - uid: 2449 - components: - - pos: 11.672989,10.511342 - parent: 1 - type: Transform -- proto: BoxFlashbang - entities: - - uid: 2430 - components: - - pos: 11.207846,8.700965 - parent: 1 - type: Transform - - uid: 2505 - components: - - pos: 11.207846,8.700965 - parent: 1 - type: Transform - - uid: 2515 - components: - - pos: 11.207846,8.700965 - parent: 1 - type: Transform -- proto: BoxFolderBlack - entities: - - uid: 147 - components: - - pos: -13.687119,-3.4444265 - parent: 1 - type: Transform -- proto: BoxFolderBlue - entities: - - uid: 148 - components: - - pos: -13.562119,-3.6163015 - parent: 1 - type: Transform -- proto: BoxHandcuff - entities: - - uid: 146 - components: - - pos: 11.207846,8.700965 - parent: 1 - type: Transform - - uid: 2494 - components: - - pos: 11.207846,8.700965 - parent: 1 - type: Transform - - uid: 2501 - components: - - pos: 11.207846,8.700965 - parent: 1 - type: Transform -- proto: BoxInflatable - entities: - - uid: 152 - components: - - pos: -13.603695,8.84306 - parent: 1 - type: Transform - - uid: 153 - components: - - pos: -13.447445,8.733685 - parent: 1 - type: Transform - - uid: 154 - components: - - pos: -16.105898,7.8279896 - parent: 1 - type: Transform - - uid: 155 - components: - - pos: -16.105898,7.7342396 - parent: 1 - type: Transform -- proto: BoxMagazinePistolSubMachineGunTopMounted - entities: - - uid: 156 - components: - - pos: 14.503235,6.6935053 - parent: 1 - type: Transform - - uid: 157 - components: - - pos: 14.51886,6.5841303 - parent: 1 - type: Transform - - uid: 158 - components: - - pos: 14.503235,6.3966303 - parent: 1 - type: Transform -- proto: BoxMagazineRifleHighVelocity - entities: - - uid: 159 - components: - - pos: 14.503235,6.6778803 - parent: 1 - type: Transform - - uid: 160 - components: - - pos: 14.503235,6.5372553 - parent: 1 - type: Transform - - uid: 161 - components: - - pos: 14.503235,6.4122553 - parent: 1 - type: Transform -- proto: BoxMouthSwab - entities: - - uid: 162 - components: - - pos: -2.836203,5.617304 - parent: 1 - type: Transform - - uid: 163 - components: - - pos: -20.631887,5.7038546 - parent: 1 - type: Transform - - uid: 164 - components: - - pos: -20.522512,5.6257296 - parent: 1 - type: Transform -- proto: BoxMRE - entities: - - uid: 165 - components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 166 - components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 167 - components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 168 - components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 169 - components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 170 - components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 171 - components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 172 - components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 173 - components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 174 - components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 175 - components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 176 - components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 177 - components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 178 - components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 179 - components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 180 - components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 181 - components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 182 - components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 183 - components: - - pos: 1.515235,-3.5387702 - parent: 1 - type: Transform - - uid: 1670 - components: - - pos: 1.5338726,-3.522396 - parent: 1 - type: Transform - - uid: 2426 - components: - - pos: 1.5338726,-3.522396 - parent: 1 - type: Transform - - uid: 2429 - components: - - pos: 1.5338726,-3.522396 - parent: 1 - type: Transform - - uid: 2496 - components: - - pos: 1.5338726,-3.522396 - parent: 1 - type: Transform - - uid: 2497 - components: - - pos: 1.5338726,-3.522396 - parent: 1 - type: Transform - - uid: 2498 - components: - - pos: 1.5338726,-3.522396 - parent: 1 - type: Transform - - uid: 2504 - components: - - pos: 1.5338726,-3.522396 - parent: 1 - type: Transform - - uid: 2512 - components: - - pos: 1.5338726,-3.522396 - parent: 1 - type: Transform - - uid: 2514 - components: - - pos: 1.5338726,-3.522396 - parent: 1 - type: Transform - - uid: 2518 - components: - - pos: 1.5338726,-3.522396 - parent: 1 - type: Transform - - uid: 2520 - components: - - pos: 1.5338726,-3.522396 - parent: 1 - type: Transform -- proto: BoxNitrileGloves - entities: - - uid: 185 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 186 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 187 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxSyringe - entities: - - uid: 188 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 189 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 190 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxZiptie - entities: - - uid: 2425 - components: - - pos: 11.192221,8.68534 - parent: 1 - type: Transform - - uid: 2499 - components: - - pos: 11.192221,8.68534 - parent: 1 - type: Transform - - uid: 2502 - components: - - pos: 11.207846,8.700965 - parent: 1 - type: Transform -- proto: CableApcExtension - entities: - - uid: 220 - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform - - uid: 221 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 222 - components: - - pos: 4.5,1.5 - parent: 1 - type: Transform - - uid: 223 - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform - - uid: 224 - components: - - pos: 4.5,3.5 - parent: 1 - type: Transform - - uid: 225 - components: - - pos: 5.5,3.5 - parent: 1 - type: Transform - - uid: 226 - components: - - pos: 6.5,3.5 - parent: 1 - type: Transform - - uid: 227 - components: - - pos: 7.5,3.5 - parent: 1 - type: Transform - - uid: 228 - components: - - pos: 8.5,3.5 - parent: 1 - type: Transform - - uid: 229 - components: - - pos: 8.5,3.5 - parent: 1 - type: Transform - - uid: 230 - components: - - pos: 9.5,3.5 - parent: 1 - type: Transform - - uid: 231 - components: - - pos: 10.5,3.5 - parent: 1 - type: Transform - - uid: 232 - components: - - pos: 11.5,3.5 - parent: 1 - type: Transform - - uid: 233 - components: - - pos: 3.5,3.5 - parent: 1 - type: Transform - - uid: 234 - components: - - pos: 2.5,3.5 - parent: 1 - type: Transform - - uid: 235 - components: - - pos: 1.5,3.5 - parent: 1 - type: Transform - - uid: 236 - components: - - pos: 1.5,2.5 - parent: 1 - type: Transform - - uid: 237 - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform - - uid: 238 - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform - - uid: 239 - components: - - pos: 1.5,-0.5 - parent: 1 - type: Transform - - uid: 240 - components: - - pos: 1.5,-1.5 - parent: 1 - type: Transform - - uid: 241 - components: - - pos: 1.5,-2.5 - parent: 1 - type: Transform - - uid: 242 - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform - - uid: 243 - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform - - uid: 244 - components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform - - uid: 245 - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform - - uid: 246 - components: - - pos: -2.5,-3.5 - parent: 1 - type: Transform - - uid: 247 - components: - - pos: 7.5,4.5 - parent: 1 - type: Transform - - uid: 248 - components: - - pos: 7.5,5.5 - parent: 1 - type: Transform - - uid: 249 - components: - - pos: 7.5,6.5 - parent: 1 - type: Transform - - uid: 250 - components: - - pos: 7.5,7.5 - parent: 1 - type: Transform - - uid: 251 - components: - - pos: 7.5,8.5 - parent: 1 - type: Transform - - uid: 252 - components: - - pos: 7.5,9.5 - parent: 1 - type: Transform - - uid: 253 - components: - - pos: 7.5,10.5 - parent: 1 - type: Transform - - uid: 254 - components: - - pos: 7.5,11.5 - parent: 1 - type: Transform - - uid: 255 - components: - - pos: 7.5,12.5 - parent: 1 - type: Transform - - uid: 256 - components: - - pos: 7.5,13.5 - parent: 1 - type: Transform - - uid: 257 - components: - - pos: 7.5,14.5 - parent: 1 - type: Transform - - uid: 258 - components: - - pos: 7.5,15.5 - parent: 1 - type: Transform - - uid: 259 - components: - - pos: 7.5,16.5 - parent: 1 - type: Transform - - uid: 260 - components: - - pos: 7.5,17.5 - parent: 1 - type: Transform - - uid: 261 - components: - - pos: 7.5,18.5 - parent: 1 - type: Transform - - uid: 262 - components: - - pos: 7.5,19.5 - parent: 1 - type: Transform - - uid: 263 - components: - - pos: 7.5,20.5 - parent: 1 - type: Transform - - uid: 264 - components: - - pos: 7.5,21.5 - parent: 1 - type: Transform - - uid: 265 - components: - - pos: 7.5,22.5 - parent: 1 - type: Transform - - uid: 266 - components: - - pos: 7.5,23.5 - parent: 1 - type: Transform - - uid: 267 - components: - - pos: 7.5,24.5 - parent: 1 - type: Transform - - uid: 268 - components: - - pos: 7.5,25.5 - parent: 1 - type: Transform - - uid: 269 - components: - - pos: 7.5,26.5 - parent: 1 - type: Transform - - uid: 270 - components: - - pos: 7.5,27.5 - parent: 1 - type: Transform - - uid: 271 - components: - - pos: 7.5,28.5 - parent: 1 - type: Transform - - uid: 272 - components: - - pos: 7.5,29.5 - parent: 1 - type: Transform - - uid: 273 - components: - - pos: 7.5,30.5 - parent: 1 - type: Transform - - uid: 274 - components: - - pos: 7.5,31.5 - parent: 1 - type: Transform - - uid: 275 - components: - - pos: 7.5,32.5 - parent: 1 - type: Transform - - uid: 276 - components: - - pos: 7.5,33.5 - parent: 1 - type: Transform - - uid: 277 - components: - - pos: 8.5,7.5 - parent: 1 - type: Transform - - uid: 278 - components: - - pos: 9.5,7.5 - parent: 1 - type: Transform - - uid: 279 - components: - - pos: 10.5,7.5 - parent: 1 - type: Transform - - uid: 280 - components: - - pos: 11.5,7.5 - parent: 1 - type: Transform - - uid: 281 - components: - - pos: 12.5,7.5 - parent: 1 - type: Transform - - uid: 282 - components: - - pos: 13.5,7.5 - parent: 1 - type: Transform - - uid: 283 - components: - - pos: 10.5,8.5 - parent: 1 - type: Transform - - uid: 284 - components: - - pos: 10.5,9.5 - parent: 1 - type: Transform - - uid: 285 - components: - - pos: 10.5,10.5 - parent: 1 - type: Transform - - uid: 286 - components: - - pos: 10.5,11.5 - parent: 1 - type: Transform - - uid: 287 - components: - - pos: 11.5,11.5 - parent: 1 - type: Transform - - uid: 288 - components: - - pos: 12.5,11.5 - parent: 1 - type: Transform - - uid: 289 - components: - - pos: 13.5,11.5 - parent: 1 - type: Transform - - uid: 290 - components: - - pos: 1.5,4.5 - parent: 1 - type: Transform - - uid: 291 - components: - - pos: 1.5,5.5 - parent: 1 - type: Transform - - uid: 292 - components: - - pos: 4.5,4.5 - parent: 1 - type: Transform - - uid: 293 - components: - - pos: 4.5,5.5 - parent: 1 - type: Transform - - uid: 294 - components: - - pos: 0.5,3.5 - parent: 1 - type: Transform - - uid: 295 - components: - - pos: -0.5,3.5 - parent: 1 - type: Transform - - uid: 296 - components: - - pos: -7.5,10.5 - parent: 1 - type: Transform - - uid: 297 - components: - - pos: -7.5,9.5 - parent: 1 - type: Transform - - uid: 298 - components: - - pos: -7.5,8.5 - parent: 1 - type: Transform - - uid: 299 - components: - - pos: -7.5,7.5 - parent: 1 - type: Transform - - uid: 300 - components: - - pos: -7.5,6.5 - parent: 1 - type: Transform - - uid: 301 - components: - - pos: -7.5,5.5 - parent: 1 - type: Transform - - uid: 302 - components: - - pos: -7.5,4.5 - parent: 1 - type: Transform - - uid: 303 - components: - - pos: -6.5,4.5 - parent: 1 - type: Transform - - uid: 304 - components: - - pos: -5.5,4.5 - parent: 1 - type: Transform - - uid: 305 - components: - - pos: -4.5,4.5 - parent: 1 - type: Transform - - uid: 306 - components: - - pos: -3.5,4.5 - parent: 1 - type: Transform - - uid: 307 - components: - - pos: -8.5,0.5 - parent: 1 - type: Transform - - uid: 308 - components: - - pos: -7.5,3.5 - parent: 1 - type: Transform - - uid: 309 - components: - - pos: -7.5,2.5 - parent: 1 - type: Transform - - uid: 310 - components: - - pos: -7.5,1.5 - parent: 1 - type: Transform - - uid: 311 - components: - - pos: -7.5,0.5 - parent: 1 - type: Transform - - uid: 312 - components: - - pos: -6.5,2.5 - parent: 1 - type: Transform - - uid: 313 - components: - - pos: -5.5,2.5 - parent: 1 - type: Transform - - uid: 314 - components: - - pos: -4.5,2.5 - parent: 1 - type: Transform - - uid: 315 - components: - - pos: -3.5,2.5 - parent: 1 - type: Transform - - uid: 316 - components: - - pos: -6.5,0.5 - parent: 1 - type: Transform - - uid: 317 - components: - - pos: -5.5,0.5 - parent: 1 - type: Transform - - uid: 318 - components: - - pos: -4.5,0.5 - parent: 1 - type: Transform - - uid: 319 - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform - - uid: 320 - components: - - pos: -7.5,-0.5 - parent: 1 - type: Transform - - uid: 321 - components: - - pos: -6.5,6.5 - parent: 1 - type: Transform - - uid: 322 - components: - - pos: -5.5,6.5 - parent: 1 - type: Transform - - uid: 323 - components: - - pos: -4.5,6.5 - parent: 1 - type: Transform - - uid: 324 - components: - - pos: -3.5,6.5 - parent: 1 - type: Transform - - uid: 325 - components: - - pos: -6.5,8.5 - parent: 1 - type: Transform - - uid: 326 - components: - - pos: -5.5,8.5 - parent: 1 - type: Transform - - uid: 327 - components: - - pos: -4.5,8.5 - parent: 1 - type: Transform - - uid: 328 - components: - - pos: -3.5,8.5 - parent: 1 - type: Transform - - uid: 329 - components: - - pos: -8.5,2.5 - parent: 1 - type: Transform - - uid: 330 - components: - - pos: -8.5,4.5 - parent: 1 - type: Transform - - uid: 331 - components: - - pos: -8.5,6.5 - parent: 1 - type: Transform - - uid: 332 - components: - - pos: -8.5,8.5 - parent: 1 - type: Transform - - uid: 333 - components: - - pos: -9.5,4.5 - parent: 1 - type: Transform - - uid: 334 - components: - - pos: -10.5,4.5 - parent: 1 - type: Transform - - uid: 335 - components: - - pos: -11.5,4.5 - parent: 1 - type: Transform - - uid: 336 - components: - - pos: -12.5,4.5 - parent: 1 - type: Transform - - uid: 337 - components: - - pos: -11.5,3.5 - parent: 1 - type: Transform - - uid: 338 - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform - - uid: 339 - components: - - pos: -11.5,5.5 - parent: 1 - type: Transform - - uid: 340 - components: - - pos: -13.5,4.5 - parent: 1 - type: Transform - - uid: 341 - components: - - pos: -13.5,3.5 - parent: 1 - type: Transform - - uid: 342 - components: - - pos: -13.5,2.5 - parent: 1 - type: Transform - - uid: 343 - components: - - pos: -13.5,5.5 - parent: 1 - type: Transform - - uid: 344 - components: - - pos: -0.5,0.5 - parent: 1 - type: Transform - - uid: 345 - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform - - uid: 346 - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform - - uid: 347 - components: - - pos: 2.5,-1.5 - parent: 1 - type: Transform - - uid: 348 - components: - - pos: 0.5,-1.5 - parent: 1 - type: Transform - - uid: 349 - components: - - pos: -0.5,-1.5 - parent: 1 - type: Transform - - uid: 350 - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform - - uid: 351 - components: - - pos: -3.5,-2.5 - parent: 1 - type: Transform - - uid: 352 - components: - - pos: -3.5,-4.5 - parent: 1 - type: Transform - - uid: 353 - components: - - pos: -1.5,-2.5 - parent: 1 - type: Transform - - uid: 354 - components: - - pos: -1.5,-4.5 - parent: 1 - type: Transform - - uid: 355 - components: - - pos: 1.5,-4.5 - parent: 1 - type: Transform - - uid: 356 - components: - - pos: 2.5,-3.5 - parent: 1 - type: Transform - - uid: 357 - components: - - pos: 7.5,2.5 - parent: 1 - type: Transform - - uid: 358 - components: - - pos: 11.5,4.5 - parent: 1 - type: Transform - - uid: 359 - components: - - pos: 12.5,3.5 - parent: 1 - type: Transform - - uid: 360 - components: - - pos: 11.5,2.5 - parent: 1 - type: Transform - - uid: 361 - components: - - pos: 13.5,8.5 - parent: 1 - type: Transform - - uid: 362 - components: - - pos: 14.5,7.5 - parent: 1 - type: Transform - - uid: 363 - components: - - pos: 13.5,6.5 - parent: 1 - type: Transform - - uid: 364 - components: - - pos: 10.5,6.5 - parent: 1 - type: Transform - - uid: 365 - components: - - pos: 10.5,12.5 - parent: 1 - type: Transform - - uid: 366 - components: - - pos: 13.5,12.5 - parent: 1 - type: Transform - - uid: 367 - components: - - pos: 13.5,10.5 - parent: 1 - type: Transform - - uid: 368 - components: - - pos: 14.5,11.5 - parent: 1 - type: Transform - - uid: 369 - components: - - pos: -8.5,14.5 - parent: 1 - type: Transform - - uid: 370 - components: - - pos: -8.5,13.5 - parent: 1 - type: Transform - - uid: 371 - components: - - pos: -8.5,12.5 - parent: 1 - type: Transform - - uid: 372 - components: - - pos: -8.5,11.5 - parent: 1 - type: Transform - - uid: 373 - components: - - pos: -9.5,12.5 - parent: 1 - type: Transform - - uid: 374 - components: - - pos: -10.5,12.5 - parent: 1 - type: Transform - - uid: 375 - components: - - pos: -11.5,12.5 - parent: 1 - type: Transform - - uid: 376 - components: - - pos: -12.5,12.5 - parent: 1 - type: Transform - - uid: 377 - components: - - pos: -13.5,12.5 - parent: 1 - type: Transform - - uid: 378 - components: - - pos: -10.5,10.5 - parent: 1 - type: Transform - - uid: 379 - components: - - pos: -10.5,9.5 - parent: 1 - type: Transform - - uid: 380 - components: - - pos: -11.5,9.5 - parent: 1 - type: Transform - - uid: 381 - components: - - pos: -12.5,9.5 - parent: 1 - type: Transform - - uid: 382 - components: - - pos: -14.5,9.5 - parent: 1 - type: Transform - - uid: 383 - components: - - pos: -13.5,9.5 - parent: 1 - type: Transform - - uid: 384 - components: - - pos: -15.5,9.5 - parent: 1 - type: Transform - - uid: 385 - components: - - pos: -16.5,9.5 - parent: 1 - type: Transform - - uid: 386 - components: - - pos: -16.5,8.5 - parent: 1 - type: Transform - - uid: 387 - components: - - pos: -16.5,10.5 - parent: 1 - type: Transform - - uid: 388 - components: - - pos: -17.5,9.5 - parent: 1 - type: Transform - - uid: 389 - components: - - pos: -10.5,8.5 - parent: 1 - type: Transform - - uid: 390 - components: - - pos: -10.5,7.5 - parent: 1 - type: Transform - - uid: 391 - components: - - pos: -12.5,8.5 - parent: 1 - type: Transform - - uid: 392 - components: - - pos: -12.5,7.5 - parent: 1 - type: Transform - - uid: 393 - components: - - pos: -10.5,13.5 - parent: 1 - type: Transform - - uid: 394 - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform - - uid: 395 - components: - - pos: -12.5,11.5 - parent: 1 - type: Transform - - uid: 396 - components: - - pos: 5.5,14.5 - parent: 1 - type: Transform - - uid: 397 - components: - - pos: -6.5,14.5 - parent: 1 - type: Transform - - uid: 398 - components: - - pos: -7.5,12.5 - parent: 1 - type: Transform - - uid: 399 - components: - - pos: 4.5,14.5 - parent: 1 - type: Transform - - uid: 400 - components: - - pos: 3.5,14.5 - parent: 1 - type: Transform - - uid: 401 - components: - - pos: 2.5,14.5 - parent: 1 - type: Transform - - uid: 402 - components: - - pos: 1.5,14.5 - parent: 1 - type: Transform - - uid: 403 - components: - - pos: 0.5,14.5 - parent: 1 - type: Transform - - uid: 404 - components: - - pos: -0.5,14.5 - parent: 1 - type: Transform - - uid: 405 - components: - - pos: -1.5,14.5 - parent: 1 - type: Transform - - uid: 406 - components: - - pos: -2.5,14.5 - parent: 1 - type: Transform - - uid: 407 - components: - - pos: -3.5,14.5 - parent: 1 - type: Transform - - uid: 408 - components: - - pos: -4.5,14.5 - parent: 1 - type: Transform - - uid: 409 - components: - - pos: -4.5,15.5 - parent: 1 - type: Transform - - uid: 410 - components: - - pos: -4.5,16.5 - parent: 1 - type: Transform - - uid: 411 - components: - - pos: -4.5,17.5 - parent: 1 - type: Transform - - uid: 412 - components: - - pos: -5.5,18.5 - parent: 1 - type: Transform - - uid: 413 - components: - - pos: -4.5,18.5 - parent: 1 - type: Transform - - uid: 414 - components: - - pos: -3.5,18.5 - parent: 1 - type: Transform - - uid: 415 - components: - - pos: -5.5,16.5 - parent: 1 - type: Transform - - uid: 416 - components: - - pos: -3.5,16.5 - parent: 1 - type: Transform - - uid: 417 - components: - - pos: -5.5,14.5 - parent: 1 - type: Transform - - uid: 418 - components: - - pos: -0.5,15.5 - parent: 1 - type: Transform - - uid: 419 - components: - - pos: -0.5,16.5 - parent: 1 - type: Transform - - uid: 420 - components: - - pos: -0.5,17.5 - parent: 1 - type: Transform - - uid: 421 - components: - - pos: -0.5,18.5 - parent: 1 - type: Transform - - uid: 422 - components: - - pos: -0.5,19.5 - parent: 1 - type: Transform - - uid: 423 - components: - - pos: -0.5,20.5 - parent: 1 - type: Transform - - uid: 424 - components: - - pos: -1.5,20.5 - parent: 1 - type: Transform - - uid: 425 - components: - - pos: 0.5,20.5 - parent: 1 - type: Transform - - uid: 426 - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform - - uid: 427 - components: - - pos: -1.5,18.5 - parent: 1 - type: Transform - - uid: 428 - components: - - pos: 2.5,15.5 - parent: 1 - type: Transform - - uid: 429 - components: - - pos: 2.5,16.5 - parent: 1 - type: Transform - - uid: 430 - components: - - pos: 2.5,17.5 - parent: 1 - type: Transform - - uid: 431 - components: - - pos: 2.5,18.5 - parent: 1 - type: Transform - - uid: 432 - components: - - pos: 2.5,19.5 - parent: 1 - type: Transform - - uid: 433 - components: - - pos: 2.5,20.5 - parent: 1 - type: Transform - - uid: 434 - components: - - pos: 2.5,21.5 - parent: 1 - type: Transform - - uid: 435 - components: - - pos: 2.5,22.5 - parent: 1 - type: Transform - - uid: 436 - components: - - pos: 2.5,23.5 - parent: 1 - type: Transform - - uid: 437 - components: - - pos: 2.5,24.5 - parent: 1 - type: Transform - - uid: 438 - components: - - pos: 3.5,24.5 - parent: 1 - type: Transform - - uid: 439 - components: - - pos: 4.5,24.5 - parent: 1 - type: Transform - - uid: 440 - components: - - pos: 3.5,22.5 - parent: 1 - type: Transform - - uid: 441 - components: - - pos: 4.5,22.5 - parent: 1 - type: Transform - - uid: 442 - components: - - pos: 3.5,20.5 - parent: 1 - type: Transform - - uid: 443 - components: - - pos: 4.5,20.5 - parent: 1 - type: Transform - - uid: 444 - components: - - pos: 3.5,18.5 - parent: 1 - type: Transform - - uid: 445 - components: - - pos: 4.5,18.5 - parent: 1 - type: Transform - - uid: 446 - components: - - pos: 3.5,16.5 - parent: 1 - type: Transform - - uid: 447 - components: - - pos: 4.5,16.5 - parent: 1 - type: Transform - - uid: 448 - components: - - pos: -7.5,14.5 - parent: 1 - type: Transform - - uid: 449 - components: - - pos: -10.5,11.5 - parent: 1 - type: Transform - - uid: 450 - components: - - pos: -11.5,1.5 - parent: 1 - type: Transform - - uid: 451 - components: - - pos: -11.5,0.5 - parent: 1 - type: Transform - - uid: 452 - components: - - pos: -11.5,-0.5 - parent: 1 - type: Transform - - uid: 453 - components: - - pos: -13.5,1.5 - parent: 1 - type: Transform - - uid: 454 - components: - - pos: -13.5,0.5 - parent: 1 - type: Transform - - uid: 455 - components: - - pos: -13.5,-0.5 - parent: 1 - type: Transform - - uid: 456 - components: - - pos: -14.5,4.5 - parent: 1 - type: Transform - - uid: 457 - components: - - pos: -15.5,4.5 - parent: 1 - type: Transform - - uid: 458 - components: - - pos: -16.5,4.5 - parent: 1 - type: Transform - - uid: 459 - components: - - pos: -17.5,4.5 - parent: 1 - type: Transform - - uid: 460 - components: - - pos: -18.5,4.5 - parent: 1 - type: Transform - - uid: 461 - components: - - pos: -19.5,4.5 - parent: 1 - type: Transform - - uid: 462 - components: - - pos: -20.5,4.5 - parent: 1 - type: Transform - - uid: 463 - components: - - pos: -21.5,4.5 - parent: 1 - type: Transform - - uid: 464 - components: - - pos: -22.5,4.5 - parent: 1 - type: Transform - - uid: 465 - components: - - pos: -22.5,3.5 - parent: 1 - type: Transform - - uid: 466 - components: - - pos: -22.5,2.5 - parent: 1 - type: Transform - - uid: 467 - components: - - pos: -22.5,1.5 - parent: 1 - type: Transform - - uid: 468 - components: - - pos: -22.5,5.5 - parent: 1 - type: Transform - - uid: 469 - components: - - pos: -20.5,5.5 - parent: 1 - type: Transform - - uid: 470 - components: - - pos: -20.5,3.5 - parent: 1 - type: Transform - - uid: 471 - components: - - pos: -20.5,2.5 - parent: 1 - type: Transform - - uid: 472 - components: - - pos: -20.5,1.5 - parent: 1 - type: Transform - - uid: 473 - components: - - pos: -18.5,5.5 - parent: 1 - type: Transform - - uid: 474 - components: - - pos: -18.5,3.5 - parent: 1 - type: Transform - - uid: 475 - components: - - pos: -18.5,2.5 - parent: 1 - type: Transform - - uid: 476 - components: - - pos: -18.5,1.5 - parent: 1 - type: Transform - - uid: 477 - components: - - pos: -16.5,5.5 - parent: 1 - type: Transform - - uid: 478 - components: - - pos: -16.5,3.5 - parent: 1 - type: Transform - - uid: 479 - components: - - pos: -16.5,2.5 - parent: 1 - type: Transform - - uid: 480 - components: - - pos: -16.5,1.5 - parent: 1 - type: Transform - - uid: 481 - components: - - pos: 8.5,14.5 - parent: 1 - type: Transform - - uid: 482 - components: - - pos: 9.5,14.5 - parent: 1 - type: Transform - - uid: 483 - components: - - pos: 10.5,14.5 - parent: 1 - type: Transform - - uid: 484 - components: - - pos: 11.5,14.5 - parent: 1 - type: Transform - - uid: 485 - components: - - pos: 12.5,14.5 - parent: 1 - type: Transform - - uid: 486 - components: - - pos: 13.5,14.5 - parent: 1 - type: Transform - - uid: 487 - components: - - pos: 13.5,15.5 - parent: 1 - type: Transform - - uid: 488 - components: - - pos: 14.5,15.5 - parent: 1 - type: Transform - - uid: 489 - components: - - pos: 15.5,15.5 - parent: 1 - type: Transform - - uid: 490 - components: - - pos: 16.5,15.5 - parent: 1 - type: Transform - - uid: 491 - components: - - pos: 16.5,14.5 - parent: 1 - type: Transform - - uid: 492 - components: - - pos: 16.5,13.5 - parent: 1 - type: Transform - - uid: 493 - components: - - pos: 16.5,12.5 - parent: 1 - type: Transform - - uid: 494 - components: - - pos: 17.5,13.5 - parent: 1 - type: Transform - - uid: 495 - components: - - pos: 16.5,16.5 - parent: 1 - type: Transform - - uid: 496 - components: - - pos: 16.5,17.5 - parent: 1 - type: Transform - - uid: 497 - components: - - pos: 17.5,15.5 - parent: 1 - type: Transform - - uid: 498 - components: - - pos: 10.5,15.5 - parent: 1 - type: Transform - - uid: 499 - components: - - pos: 10.5,16.5 - parent: 1 - type: Transform - - uid: 500 - components: - - pos: 10.5,17.5 - parent: 1 - type: Transform - - uid: 501 - components: - - pos: 13.5,16.5 - parent: 1 - type: Transform - - uid: 502 - components: - - pos: 13.5,17.5 - parent: 1 - type: Transform - - uid: 503 - components: - - pos: -13.5,-1.5 - parent: 1 - type: Transform - - uid: 504 - components: - - pos: -13.5,-2.5 - parent: 1 - type: Transform - - uid: 505 - components: - - pos: -13.5,-3.5 - parent: 1 - type: Transform - - uid: 506 - components: - - pos: -12.5,-3.5 - parent: 1 - type: Transform - - uid: 507 - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform - - uid: 508 - components: - - pos: -10.5,-3.5 - parent: 1 - type: Transform - - uid: 509 - components: - - pos: -9.5,-3.5 - parent: 1 - type: Transform - - uid: 510 - components: - - pos: -8.5,-3.5 - parent: 1 - type: Transform - - uid: 511 - components: - - pos: -7.5,-3.5 - parent: 1 - type: Transform - - uid: 512 - components: - - pos: -6.5,-3.5 - parent: 1 - type: Transform - - uid: 513 - components: - - pos: -5.5,-3.5 - parent: 1 - type: Transform - - uid: 514 - components: - - pos: -11.5,-2.5 - parent: 1 - type: Transform - - uid: 515 - components: - - pos: -11.5,-4.5 - parent: 1 - type: Transform - - uid: 516 - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform - - uid: 517 - components: - - pos: -9.5,-4.5 - parent: 1 - type: Transform - - uid: 518 - components: - - pos: -7.5,-2.5 - parent: 1 - type: Transform - - uid: 519 - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform - - uid: 520 - components: - - pos: -5.5,-2.5 - parent: 1 - type: Transform - - uid: 521 - components: - - pos: -5.5,-4.5 - parent: 1 - type: Transform - - uid: 522 - components: - - pos: -13.5,-4.5 - parent: 1 - type: Transform - - uid: 523 - components: - - pos: -16.5,11.5 - parent: 1 - type: Transform - - uid: 524 - components: - - pos: -16.5,12.5 - parent: 1 - type: Transform - - uid: 525 - components: - - pos: -16.5,13.5 - parent: 1 - type: Transform -- proto: CableApcStack - entities: - - uid: 526 - components: - - pos: -11.461973,7.4275074 - parent: 1 - type: Transform - - uid: 527 - components: - - pos: -11.461973,7.4275074 - parent: 1 - type: Transform -- proto: CableHV - entities: - - uid: 528 - components: - - pos: -11.5,11.5 - parent: 1 - type: Transform - - uid: 529 - components: - - pos: -12.5,11.5 - parent: 1 - type: Transform - - uid: 530 - components: - - pos: -13.5,11.5 - parent: 1 - type: Transform - - uid: 531 - components: - - pos: -13.5,13.5 - parent: 1 - type: Transform - - uid: 532 - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform - - uid: 533 - components: - - pos: -11.5,13.5 - parent: 1 - type: Transform - - uid: 534 - components: - - pos: -12.5,12.5 - parent: 1 - type: Transform - - uid: 535 - components: - - pos: -13.5,12.5 - parent: 1 - type: Transform - - uid: 536 - components: - - pos: -11.5,12.5 - parent: 1 - type: Transform - - uid: 537 - components: - - pos: -10.5,11.5 - parent: 1 - type: Transform - - uid: 538 - components: - - pos: -9.5,11.5 - parent: 1 - type: Transform - - uid: 539 - components: - - pos: -9.5,12.5 - parent: 1 - type: Transform - - uid: 540 - components: - - pos: -9.5,13.5 - parent: 1 - type: Transform - - uid: 541 - components: - - pos: -8.5,13.5 - parent: 1 - type: Transform - - uid: 542 - components: - - pos: -7.5,13.5 - parent: 1 - type: Transform - - uid: 543 - components: - - pos: -8.5,11.5 - parent: 1 - type: Transform - - uid: 544 - components: - - pos: -8.5,9.5 - parent: 1 - type: Transform - - uid: 545 - components: - - pos: -8.5,10.5 - parent: 1 - type: Transform - - uid: 546 - components: - - pos: -7.5,11.5 - parent: 1 - type: Transform - - uid: 547 - components: - - pos: -6.5,11.5 - parent: 1 - type: Transform - - uid: 548 - components: - - pos: -5.5,11.5 - parent: 1 - type: Transform - - uid: 549 - components: - - pos: -4.5,11.5 - parent: 1 - type: Transform - - uid: 550 - components: - - pos: -3.5,11.5 - parent: 1 - type: Transform - - uid: 551 - components: - - pos: -2.5,11.5 - parent: 1 - type: Transform - - uid: 552 - components: - - pos: -1.5,11.5 - parent: 1 - type: Transform - - uid: 553 - components: - - pos: -0.5,11.5 - parent: 1 - type: Transform - - uid: 554 - components: - - pos: 0.5,11.5 - parent: 1 - type: Transform - - uid: 555 - components: - - pos: 1.5,11.5 - parent: 1 - type: Transform - - uid: 556 - components: - - pos: 2.5,11.5 - parent: 1 - type: Transform - - uid: 557 - components: - - pos: 3.5,11.5 - parent: 1 - type: Transform - - uid: 558 - components: - - pos: 4.5,11.5 - parent: 1 - type: Transform - - uid: 559 - components: - - pos: 5.5,11.5 - parent: 1 - type: Transform - - uid: 560 - components: - - pos: 6.5,11.5 - parent: 1 - type: Transform - - uid: 561 - components: - - pos: 7.5,11.5 - parent: 1 - type: Transform - - uid: 562 - components: - - pos: 7.5,10.5 - parent: 1 - type: Transform - - uid: 563 - components: - - pos: 7.5,9.5 - parent: 1 - type: Transform - - uid: 564 - components: - - pos: 7.5,8.5 - parent: 1 - type: Transform - - uid: 565 - components: - - pos: 7.5,6.5 - parent: 1 - type: Transform - - uid: 566 - components: - - pos: 7.5,7.5 - parent: 1 - type: Transform - - uid: 567 - components: - - pos: 7.5,5.5 - parent: 1 - type: Transform - - uid: 568 - components: - - pos: 7.5,4.5 - parent: 1 - type: Transform - - uid: 569 - components: - - pos: 7.5,3.5 - parent: 1 - type: Transform - - uid: 570 - components: - - pos: 6.5,3.5 - parent: 1 - type: Transform - - uid: 571 - components: - - pos: 5.5,3.5 - parent: 1 - type: Transform - - uid: 572 - components: - - pos: 4.5,3.5 - parent: 1 - type: Transform - - uid: 573 - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform - - uid: 574 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 575 - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform - - uid: 576 - components: - - pos: 4.5,1.5 - parent: 1 - type: Transform -- proto: CableHVStack - entities: - - uid: 577 - components: - - pos: -11.461973,7.4431324 - parent: 1 - type: Transform - - uid: 578 - components: - - pos: -11.461973,7.4431324 - parent: 1 - type: Transform -- proto: CableMV - entities: - - uid: 579 - components: - - pos: -8.5,13.5 - parent: 1 - type: Transform - - uid: 580 - components: - - pos: -7.5,13.5 - parent: 1 - type: Transform - - uid: 581 - components: - - pos: -8.5,14.5 - parent: 1 - type: Transform - - uid: 582 - components: - - pos: -8.5,9.5 - parent: 1 - type: Transform - - uid: 583 - components: - - pos: -7.5,9.5 - parent: 1 - type: Transform - - uid: 584 - components: - - pos: -7.5,10.5 - parent: 1 - type: Transform - - uid: 585 - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform - - uid: 586 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 587 - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform -- proto: CableMVStack - entities: - - uid: 588 - components: - - pos: -11.461973,7.4431324 - parent: 1 - type: Transform - - uid: 589 - components: - - pos: -11.461973,7.4431324 - parent: 1 - type: Transform -- proto: CableTerminal - entities: - - uid: 590 - components: - - pos: -13.5,12.5 - parent: 1 - type: Transform - - uid: 591 - components: - - pos: -12.5,12.5 - parent: 1 - type: Transform - - uid: 592 - components: - - pos: -11.5,12.5 - parent: 1 - type: Transform -- proto: CarpetSBlue - entities: - - uid: 593 - components: - - pos: 17.5,13.5 - parent: 1 - type: Transform - - uid: 594 - components: - - pos: 17.5,12.5 - parent: 1 - type: Transform -- proto: Catwalk - entities: - - uid: 595 - components: - - pos: -11.5,12.5 - parent: 1 - type: Transform - - uid: 596 - components: - - pos: -12.5,12.5 - parent: 1 - type: Transform - - uid: 597 - components: - - pos: -13.5,12.5 - parent: 1 - type: Transform - - uid: 598 - components: - - rot: 3.141592653589793 rad - pos: -7.5,8.5 - parent: 1 - type: Transform - - uid: 599 - components: - - rot: 3.141592653589793 rad - pos: -8.5,8.5 - parent: 1 - type: Transform - - uid: 600 - components: - - rot: 3.141592653589793 rad - pos: 4.5,0.5 - parent: 1 - type: Transform -- proto: Chair - entities: - - uid: 601 - components: - - pos: -5.5,5.5 - parent: 1 - type: Transform - - uid: 602 - components: - - pos: -6.5,5.5 - parent: 1 - type: Transform - - uid: 605 - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform - - uid: 606 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-1.5 - parent: 1 - type: Transform -- proto: ChairOfficeDark - entities: - - uid: 607 - components: - - rot: 3.141592653589793 rad - pos: 11.5,16.5 - parent: 1 - type: Transform - - uid: 608 - components: - - rot: 3.141592653589793 rad - pos: 12.5,16.5 - parent: 1 - type: Transform -- proto: ChairOfficeLight - entities: - - uid: 609 - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform - - uid: 610 - components: - - pos: -12.5,-3.5 - parent: 1 - type: Transform -- proto: chem_master - entities: - - uid: 611 - components: - - pos: -3.5,-0.5 - parent: 1 - type: Transform -- proto: ChemDispenser - entities: - - uid: 612 - components: - - pos: -2.5,-0.5 - parent: 1 - type: Transform -- proto: ChemistryHotplate - entities: - - uid: 613 - components: - - pos: -4.5,0.5 - parent: 1 - type: Transform - - placedEntities: - - 2521 - - 2519 - - 2434 - - 2435 - - 2436 - - 2437 - type: SolutionHeater - - isPlaceable: False - type: PlaceableSurface - - uid: 614 - components: - - pos: -2.5,-4.5 - parent: 1 - type: Transform -- proto: ChessBoard - entities: - - uid: 615 - components: - - pos: -19.452597,1.411099 - parent: 1 - type: Transform -- proto: CigCartonBlack - entities: - - uid: 616 - components: - - pos: 11.556568,14.666323 - parent: 1 - type: Transform -- proto: CloningPod - entities: - - uid: 617 - components: - - pos: -6.5,-0.5 - parent: 1 - type: Transform -- proto: ClosetJanitor - entities: - - uid: 2 - components: - - pos: 10.5,4.5 - parent: 1 - type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 11 - - 12 - - 6 - - 14 - - 9 - - 13 - - 10 - - 7 - - 4 - - 3 - - 8 - - 5 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ClosetL3Filled - entities: - - uid: 618 - components: - - pos: -11.5,-0.5 - parent: 1 - type: Transform - - uid: 619 - components: - - pos: -12.5,-0.5 - parent: 1 - type: Transform -- proto: ClosetL3JanitorFilled - entities: - - uid: 620 - components: - - pos: 12.5,2.5 - parent: 1 - type: Transform -- proto: ClosetL3VirologyFilled - entities: - - uid: 621 - components: - - pos: -19.5,3.5 - parent: 1 - type: Transform -- proto: ClosetWallFireFilledRandom - entities: - - uid: 622 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,8.5 - parent: 1 - type: Transform - - uid: 623 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,0.5 - parent: 1 - type: Transform -- proto: ClothingBackpackDuffelSurgeryFilled - entities: - - uid: 624 - components: - - pos: -15.512499,1.8656251 - parent: 1 - type: Transform - - uid: 625 - components: - - pos: -15.512499,1.7250001 - parent: 1 - type: Transform -- proto: ClothingBeltChiefEngineerFilled - entities: - - uid: 627 - components: - - flags: InContainer - type: MetaData - - parent: 626 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 639 - components: - - flags: InContainer - type: MetaData - - parent: 638 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2479 - components: - - flags: InContainer - type: MetaData - - parent: 2470 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2484 - components: - - flags: InContainer - type: MetaData - - parent: 2482 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingBeltJanitorFilled - entities: - - uid: 4 - components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingBeltMedicalFilled - entities: - - uid: 650 - components: - - flags: InContainer - type: MetaData - - parent: 649 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 660 - components: - - flags: InContainer - type: MetaData - - parent: 659 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2459 - components: - - flags: InContainer - type: MetaData - - parent: 2450 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2468 - components: - - flags: InContainer - type: MetaData - - parent: 2460 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingBeltSecurityFilled - entities: - - uid: 670 - components: - - flags: InContainer - type: MetaData - - parent: 669 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 683 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 688 - components: - - flags: InContainer - type: MetaData - - parent: 687 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 703 - components: - - flags: InContainer - type: MetaData - - parent: 696 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 706 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingEyesGlassesMeson - entities: - - uid: 637 - components: - - flags: InContainer - type: MetaData - - parent: 626 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 640 - components: - - flags: InContainer - type: MetaData - - parent: 638 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2475 - components: - - flags: InContainer - type: MetaData - - parent: 2470 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2488 - components: - - flags: InContainer - type: MetaData - - parent: 2482 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingEyesGlassesSecurity - entities: - - uid: 675 - components: - - flags: InContainer - type: MetaData - - parent: 669 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 685 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 693 - components: - - flags: InContainer - type: MetaData - - parent: 687 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 697 - components: - - flags: InContainer - type: MetaData - - parent: 696 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 707 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingEyesHudMedical - entities: - - uid: 191 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 192 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 193 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 194 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 195 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 651 - components: - - flags: InContainer - type: MetaData - - parent: 649 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 661 - components: - - flags: InContainer - type: MetaData - - parent: 659 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2452 - components: - - flags: InContainer - type: MetaData - - parent: 2450 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2461 - components: - - flags: InContainer - type: MetaData - - parent: 2460 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHandsGlovesColorOrange - entities: - - uid: 5 - components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 629 - components: - - flags: InContainer - type: MetaData - - parent: 626 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 641 - components: - - flags: InContainer - type: MetaData - - parent: 638 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2471 - components: - - flags: InContainer - type: MetaData - - parent: 2470 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2489 - components: - - flags: InContainer - type: MetaData - - parent: 2482 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHandsGlovesCombat - entities: - - uid: 677 - components: - - flags: InContainer - type: MetaData - - parent: 669 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 679 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 694 - components: - - flags: InContainer - type: MetaData - - parent: 687 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 698 - components: - - flags: InContainer - type: MetaData - - parent: 696 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 708 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHandsGlovesLatex - entities: - - uid: 721 - components: - - pos: -10.494837,-2.619924 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 652 - components: - - flags: InContainer - type: MetaData - - parent: 649 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 662 - components: - - flags: InContainer - type: MetaData - - parent: 659 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2455 - components: - - flags: InContainer - type: MetaData - - parent: 2450 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2469 - components: - - flags: InContainer - type: MetaData - - parent: 2460 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadHatCentcom - entities: - - uid: 722 - components: - - pos: 12.577686,14.634814 - parent: 1 - type: Transform -- proto: ClothingHeadHatSurgcapBlue - entities: - - uid: 196 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 197 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 198 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 199 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 200 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadHelmetERTEngineer - entities: - - uid: 630 - components: - - flags: InContainer - type: MetaData - - parent: 626 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 642 - components: - - flags: InContainer - type: MetaData - - parent: 638 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2473 - components: - - flags: InContainer - type: MetaData - - parent: 2470 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2487 - components: - - flags: InContainer - type: MetaData - - parent: 2482 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadHelmetERTJanitor - entities: - - uid: 6 - components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadHelmetERTLeader - entities: - - uid: 709 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadHelmetERTMedic - entities: - - uid: 653 - components: - - flags: InContainer - type: MetaData - - parent: 649 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 663 - components: - - flags: InContainer - type: MetaData - - parent: 659 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2454 - components: - - flags: InContainer - type: MetaData - - parent: 2450 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2463 - components: - - flags: InContainer - type: MetaData - - parent: 2460 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadHelmetERTSecurity - entities: - - uid: 673 - components: - - flags: InContainer - type: MetaData - - parent: 669 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 681 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 692 - components: - - flags: InContainer - type: MetaData - - parent: 687 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 704 - components: - - flags: InContainer - type: MetaData - - parent: 696 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingMaskBreath - entities: - - uid: 723 - components: - - pos: -15.621874,1.4281251 - parent: 1 - type: Transform -- proto: ClothingMaskGasERT - entities: - - uid: 7 - components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 631 - components: - - flags: InContainer - type: MetaData - - parent: 626 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 643 - components: - - flags: InContainer - type: MetaData - - parent: 638 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 654 - components: - - flags: InContainer - type: MetaData - - parent: 649 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 664 - components: - - flags: InContainer - type: MetaData - - parent: 659 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 676 - components: - - flags: InContainer - type: MetaData - - parent: 669 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 686 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 695 - components: - - flags: InContainer - type: MetaData - - parent: 687 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 699 - components: - - flags: InContainer - type: MetaData - - parent: 696 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 710 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2453 - components: - - flags: InContainer - type: MetaData - - parent: 2450 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2464 - components: - - flags: InContainer - type: MetaData - - parent: 2460 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2476 - components: - - flags: InContainer - type: MetaData - - parent: 2470 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2485 - components: - - flags: InContainer - type: MetaData - - parent: 2482 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingMaskSterile - entities: - - uid: 201 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 202 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 203 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 204 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 205 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 724 - components: - - pos: -10.479212,-2.369924 - parent: 1 - type: Transform -- proto: ClothingNeckStethoscope - entities: - - uid: 206 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 207 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 208 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 209 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 210 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 655 - components: - - flags: InContainer - type: MetaData - - parent: 649 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 665 - components: - - flags: InContainer - type: MetaData - - parent: 659 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2458 - components: - - flags: InContainer - type: MetaData - - parent: 2450 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2467 - components: - - flags: InContainer - type: MetaData - - parent: 2460 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterArmorBulletproof - entities: - - uid: 8 - components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 632 - components: - - flags: InContainer - type: MetaData - - parent: 626 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 644 - components: - - flags: InContainer - type: MetaData - - parent: 638 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 656 - components: - - flags: InContainer - type: MetaData - - parent: 649 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 666 - components: - - flags: InContainer - type: MetaData - - parent: 659 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 674 - components: - - flags: InContainer - type: MetaData - - parent: 669 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 680 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 689 - components: - - flags: InContainer - type: MetaData - - parent: 687 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 701 - components: - - flags: InContainer - type: MetaData - - parent: 696 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 711 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2451 - components: - - flags: InContainer - type: MetaData - - parent: 2450 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2462 - components: - - flags: InContainer - type: MetaData - - parent: 2460 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2472 - components: - - flags: InContainer - type: MetaData - - parent: 2470 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2483 - components: - - flags: InContainer - type: MetaData - - parent: 2482 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitERTEngineer - entities: - - uid: 725 - components: - - pos: 12.363798,10.655693 - parent: 1 - type: Transform - - uid: 726 - components: - - pos: 12.629423,10.671318 - parent: 1 - type: Transform - - uid: 729 - components: - - pos: 13.553246,10.656452 - parent: 1 - type: Transform - - uid: 730 - components: - - pos: 13.318871,10.672077 - parent: 1 - type: Transform -- proto: ClothingOuterHardsuitERTJanitor - entities: - - uid: 9 - components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitERTLeaderFluff - entities: - - uid: 712 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitERTMedical - entities: - - uid: 727 - components: - - pos: 12.426298,12.655693 - parent: 1 - type: Transform - - uid: 728 - components: - - pos: 12.629423,12.640068 - parent: 1 - type: Transform - - uid: 1578 - components: - - pos: 13.584496,12.625202 - parent: 1 - type: Transform - - uid: 1581 - components: - - pos: 13.396996,12.625202 - parent: 1 - type: Transform -- proto: ClothingOuterHardsuitERTSecurity - entities: - - uid: 1579 - components: - - pos: 14.350121,12.656452 - parent: 1 - type: Transform - - uid: 1582 - components: - - pos: 14.568871,12.656452 - parent: 1 - type: Transform - - uid: 1583 - components: - - pos: 14.334496,10.718952 - parent: 1 - type: Transform - - uid: 1806 - components: - - pos: 14.553246,10.718952 - parent: 1 - type: Transform -- proto: ClothingShoesBootsMagAdv - entities: - - uid: 10 - components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 713 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 731 - components: - - pos: 14.537621,10.328327 - parent: 1 - type: Transform - - uid: 732 - components: - - pos: 14.350121,10.312702 - parent: 1 - type: Transform - - uid: 733 - components: - - pos: 12.363798,12.249443 - parent: 1 - type: Transform - - uid: 734 - components: - - pos: 12.566923,12.249443 - parent: 1 - type: Transform - - uid: 735 - components: - - pos: 12.410673,10.265068 - parent: 1 - type: Transform - - uid: 736 - components: - - pos: 12.598173,10.265068 - parent: 1 - type: Transform - - uid: 737 - components: - - pos: 14.365746,12.250202 - parent: 1 - type: Transform - - uid: 738 - components: - - pos: 14.592072,12.255352 - parent: 1 - type: Transform - - uid: 739 - components: - - pos: 13.350121,10.265827 - parent: 1 - type: Transform - - uid: 740 - components: - - pos: 13.553246,10.265827 - parent: 1 - type: Transform - - uid: 1596 - components: - - pos: 13.350121,12.234577 - parent: 1 - type: Transform - - uid: 1597 - components: - - pos: 13.584496,12.218952 - parent: 1 - type: Transform -- proto: computerBodyScanner - entities: - - uid: 741 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,0.5 - parent: 1 - type: Transform - - uid: 742 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,0.5 - parent: 1 - type: Transform -- proto: ComputerCloningConsole - entities: - - uid: 743 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-0.5 - parent: 1 - type: Transform -- proto: ComputerComms - entities: - - uid: 744 - components: - - pos: 11.5,17.5 - parent: 1 - type: Transform -- proto: ComputerCrewMonitoring - entities: - - uid: 745 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,16.5 - parent: 1 - type: Transform -- proto: ComputerId - entities: - - uid: 746 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,16.5 - parent: 1 - type: Transform -- proto: ComputerRadar - entities: - - uid: 747 - components: - - pos: 12.5,17.5 - parent: 1 - type: Transform -- proto: CrateChemistrySecure - entities: - - uid: 122 - components: - - pos: -10.5,1.5 - parent: 1 - type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 132 - - 133 - - 134 - - 135 - - 136 - - 129 - - 137 - - 138 - - 139 - - 140 - - 123 - - 124 - - 125 - - 141 - - 126 - - 127 - - 128 - - 130 - - 131 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateEngineeringAMEControl - entities: - - uid: 748 - components: - - pos: -7.5,16.5 - parent: 1 - type: Transform -- proto: CrateEngineeringAMEJar - entities: - - uid: 755 - components: - - pos: -11.5,15.5 - parent: 1 - type: Transform -- proto: CrateEngineeringAMEShielding - entities: - - uid: 749 - components: - - pos: -7.5,17.5 - parent: 1 - type: Transform - - uid: 750 - components: - - pos: -8.5,17.5 - parent: 1 - type: Transform -- proto: CrateEngineeringCableBulk - entities: - - uid: 751 - components: - - pos: -8.5,15.5 - parent: 1 - type: Transform -- proto: CrateEngineeringGenerator - entities: - - uid: 752 - components: - - pos: -8.5,16.5 - parent: 1 - type: Transform -- proto: CrateEngineeringShuttle - entities: - - uid: 753 - components: - - pos: -7.5,15.5 - parent: 1 - type: Transform -- proto: CrateMedicalSecure - entities: - - uid: 184 - components: - - pos: -10.5,-0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 210 - - 187 - - 209 - - 185 - - 206 - - 186 - - 207 - - 216 - - 217 - - 218 - - 208 - - 188 - - 196 - - 189 - - 197 - - 198 - - 199 - - 201 - - 202 - - 203 - - 204 - - 200 - - 205 - - 191 - - 211 - - 212 - - 213 - - 214 - - 190 - - 192 - - 193 - - 194 - - 195 - - 215 - - 219 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: Crematorium - entities: - - uid: 59 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrewMonitoringServer - entities: - - uid: 757 - components: - - pos: 17.5,16.5 - parent: 1 - type: Transform -- proto: DiseaseDiagnoser - entities: - - uid: 758 - components: - - pos: -22.5,3.5 - parent: 1 - type: Transform -- proto: DisposalBend - entities: - - uid: 759 - components: - - rot: 3.141592653589793 rad - pos: 1.5,14.5 - parent: 1 - type: Transform - - uid: 760 - components: - - pos: 7.5,14.5 - parent: 1 - type: Transform - - uid: 761 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,11.5 - parent: 1 - type: Transform - - uid: 762 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,9.5 - parent: 1 - type: Transform - - uid: 763 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 1 - type: Transform - - uid: 764 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 1 - type: Transform - - uid: 765 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,4.5 - parent: 1 - type: Transform - - uid: 766 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,4.5 - parent: 1 - type: Transform - - uid: 2500 - components: - - pos: -21.5,6.5 - parent: 1 - type: Transform -- proto: DisposalJunction - entities: - - uid: 767 - components: - - pos: 7.5,12.5 - parent: 1 - type: Transform -- proto: DisposalPipe - entities: - - uid: 768 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,14.5 - parent: 1 - type: Transform - - uid: 769 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,14.5 - parent: 1 - type: Transform - - uid: 770 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,14.5 - parent: 1 - type: Transform - - uid: 771 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,14.5 - parent: 1 - type: Transform - - uid: 772 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,14.5 - parent: 1 - type: Transform - - uid: 773 - components: - - pos: 7.5,13.5 - parent: 1 - type: Transform - - uid: 774 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,12.5 - parent: 1 - type: Transform - - uid: 775 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,11.5 - parent: 1 - type: Transform - - uid: 776 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,11.5 - parent: 1 - type: Transform - - uid: 777 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,11.5 - parent: 1 - type: Transform - - uid: 778 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,11.5 - parent: 1 - type: Transform - - uid: 779 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,11.5 - parent: 1 - type: Transform - - uid: 780 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,11.5 - parent: 1 - type: Transform - - uid: 781 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,11.5 - parent: 1 - type: Transform - - uid: 782 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,11.5 - parent: 1 - type: Transform - - uid: 783 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,11.5 - parent: 1 - type: Transform - - uid: 784 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,11.5 - parent: 1 - type: Transform - - uid: 785 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,11.5 - parent: 1 - type: Transform - - uid: 786 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,11.5 - parent: 1 - type: Transform - - uid: 787 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,11.5 - parent: 1 - type: Transform - - uid: 788 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,11.5 - parent: 1 - type: Transform - - uid: 789 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,11.5 - parent: 1 - type: Transform - - uid: 790 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,11.5 - parent: 1 - type: Transform - - uid: 791 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,11.5 - parent: 1 - type: Transform - - uid: 792 - components: - - pos: -10.5,10.5 - parent: 1 - type: Transform - - uid: 793 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,9.5 - parent: 1 - type: Transform - - uid: 794 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,9.5 - parent: 1 - type: Transform - - uid: 795 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,9.5 - parent: 1 - type: Transform - - uid: 796 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,9.5 - parent: 1 - type: Transform - - uid: 797 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,9.5 - parent: 1 - type: Transform - - uid: 798 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,9.5 - parent: 1 - type: Transform - - uid: 799 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,9.5 - parent: 1 - type: Transform - - uid: 800 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,9.5 - parent: 1 - type: Transform - - uid: 801 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-3.5 - parent: 1 - type: Transform - - uid: 802 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 1 - type: Transform - - uid: 803 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 1 - type: Transform - - uid: 804 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-1.5 - parent: 1 - type: Transform - - uid: 805 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 1 - type: Transform - - uid: 806 - components: - - rot: 3.141592653589793 rad - pos: 1.5,0.5 - parent: 1 - type: Transform - - uid: 807 - components: - - rot: 3.141592653589793 rad - pos: 1.5,1.5 - parent: 1 - type: Transform - - uid: 808 - components: - - rot: 3.141592653589793 rad - pos: 1.5,2.5 - parent: 1 - type: Transform - - uid: 809 - components: - - rot: 3.141592653589793 rad - pos: 1.5,3.5 - parent: 1 - type: Transform - - uid: 810 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,4.5 - parent: 1 - type: Transform - - uid: 811 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,4.5 - parent: 1 - type: Transform - - uid: 812 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,4.5 - parent: 1 - type: Transform - - uid: 813 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,4.5 - parent: 1 - type: Transform - - uid: 814 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,4.5 - parent: 1 - type: Transform - - uid: 815 - components: - - rot: 3.141592653589793 rad - pos: 7.5,5.5 - parent: 1 - type: Transform - - uid: 816 - components: - - rot: 3.141592653589793 rad - pos: 7.5,6.5 - parent: 1 - type: Transform - - uid: 817 - components: - - rot: 3.141592653589793 rad - pos: 7.5,7.5 - parent: 1 - type: Transform - - uid: 818 - components: - - rot: 3.141592653589793 rad - pos: 7.5,8.5 - parent: 1 - type: Transform - - uid: 819 - components: - - rot: 3.141592653589793 rad - pos: 7.5,9.5 - parent: 1 - type: Transform - - uid: 820 - components: - - rot: 3.141592653589793 rad - pos: 7.5,10.5 - parent: 1 - type: Transform - - uid: 2503 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,6.5 - parent: 1 - type: Transform - - uid: 2517 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,6.5 - parent: 1 - type: Transform -- proto: DisposalTrunk - entities: - - uid: 821 - components: - - pos: 1.5,15.5 - parent: 1 - type: Transform - - uid: 822 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,12.5 - parent: 1 - type: Transform - - uid: 823 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,9.5 - parent: 1 - type: Transform - - uid: 824 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-4.5 - parent: 1 - type: Transform - - uid: 2438 - components: - - rot: 3.141592653589793 rad - pos: -21.5,5.5 - parent: 1 - type: Transform - - uid: 2506 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,6.5 - parent: 1 - type: Transform -- proto: DisposalUnit - entities: - - uid: 825 - components: - - pos: 5.5,12.5 - parent: 1 - type: Transform - - uid: 826 - components: - - pos: 1.5,15.5 - parent: 1 - type: Transform - - uid: 827 - components: - - pos: -1.5,-4.5 - parent: 1 - type: Transform - - uid: 2508 - components: - - pos: -21.5,5.5 - parent: 1 - type: Transform -- proto: DisposalYJunction - entities: - - uid: 828 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,11.5 - parent: 1 - type: Transform -- proto: DrinkBeerBottleFull - entities: - - uid: 829 - components: - - pos: 0.24880648,-0.2702334 - parent: 1 - type: Transform - - uid: 830 - components: - - pos: 0.5300565,0.011016607 - parent: 1 - type: Transform -- proto: Dropper - entities: - - uid: 132 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 133 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 134 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 135 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 136 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: EmergencyHampter - entities: - - uid: 714 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 831 - components: - - desc: Какой-то мужик. - name: ua_No_Name48237 - type: MetaData - - pos: -19.549643,7.33531 - parent: 1 - type: Transform -- proto: EmergencyLight - entities: - - uid: 832 - components: - - pos: -16.5,5.5 - parent: 1 - type: Transform - - uid: 833 - components: - - pos: -11.5,5.5 - parent: 1 - type: Transform - - uid: 834 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,0.5 - parent: 1 - type: Transform - - uid: 835 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,0.5 - parent: 1 - type: Transform - - uid: 836 - components: - - pos: -22.5,5.5 - parent: 1 - type: Transform - - uid: 837 - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform - - uid: 838 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-0.5 - parent: 1 - type: Transform - - uid: 839 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-0.5 - parent: 1 - type: Transform - - uid: 840 - components: - - pos: -4.5,8.5 - parent: 1 - type: Transform - - uid: 841 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-0.5 - parent: 1 - type: Transform - - uid: 842 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-0.5 - parent: 1 - type: Transform - - uid: 843 - components: - - pos: -6.5,5.5 - parent: 1 - type: Transform - - uid: 844 - components: - - pos: -3.5,5.5 - parent: 1 - type: Transform - - uid: 845 - components: - - rot: 3.141592653589793 rad - pos: 17.5,12.5 - parent: 1 - type: Transform - - uid: 846 - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform - - uid: 847 - components: - - pos: -5.5,-2.5 - parent: 1 - type: Transform - - uid: 848 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-4.5 - parent: 1 - type: Transform - - uid: 849 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-4.5 - parent: 1 - type: Transform - - uid: 850 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-3.5 - parent: 1 - type: Transform - - uid: 851 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,20.5 - parent: 1 - type: Transform - - uid: 852 - components: - - pos: 5.5,12.5 - parent: 1 - type: Transform - - uid: 853 - components: - - pos: 0.5,12.5 - parent: 1 - type: Transform - - uid: 854 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,17.5 - parent: 1 - type: Transform - - uid: 855 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,22.5 - parent: 1 - type: Transform - - uid: 856 - components: - - rot: 3.141592653589793 rad - pos: 1.5,7.5 - parent: 1 - type: Transform - - uid: 857 - components: - - pos: -0.5,5.5 - parent: 1 - type: Transform - - uid: 858 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,15.5 - parent: 1 - type: Transform - - uid: 859 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,21.5 - parent: 1 - type: Transform - - uid: 860 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,17.5 - parent: 1 - type: Transform - - uid: 861 - components: - - pos: -1.5,15.5 - parent: 1 - type: Transform - - uid: 862 - components: - - pos: -5.5,12.5 - parent: 1 - type: Transform - - uid: 863 - components: - - pos: 4.5,15.5 - parent: 1 - type: Transform - - uid: 864 - components: - - pos: 10.5,17.5 - parent: 1 - type: Transform - - uid: 865 - components: - - pos: 13.5,17.5 - parent: 1 - type: Transform - - uid: 866 - components: - - rot: 3.141592653589793 rad - pos: 13.5,14.5 - parent: 1 - type: Transform - - uid: 867 - components: - - rot: 3.141592653589793 rad - pos: 10.5,14.5 - parent: 1 - type: Transform - - uid: 868 - components: - - pos: 16.5,17.5 - parent: 1 - type: Transform - - uid: 869 - components: - - pos: 10.5,12.5 - parent: 1 - type: Transform - - uid: 870 - components: - - pos: 14.5,12.5 - parent: 1 - type: Transform - - uid: 871 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,17.5 - parent: 1 - type: Transform - - uid: 872 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,24.5 - parent: 1 - type: Transform - - uid: 873 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,34.5 - parent: 1 - type: Transform - - uid: 874 - components: - - rot: 3.141592653589793 rad - pos: 14.5,6.5 - parent: 1 - type: Transform - - uid: 875 - components: - - rot: 3.141592653589793 rad - pos: 10.5,6.5 - parent: 1 - type: Transform - - uid: 876 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,3.5 - parent: 1 - type: Transform - - uid: 877 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,17.5 - parent: 1 - type: Transform - - uid: 878 - components: - - pos: 5.5,5.5 - parent: 1 - type: Transform - - uid: 879 - components: - - pos: -0.5,1.5 - parent: 1 - type: Transform - - uid: 880 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,15.5 - parent: 1 - type: Transform - - uid: 881 - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform - - uid: 882 - components: - - pos: -7.5,13.5 - parent: 1 - type: Transform - - uid: 883 - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform - - uid: 884 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 1 - type: Transform - - uid: 885 - components: - - pos: -13.5,9.5 - parent: 1 - type: Transform - - uid: 886 - components: - - rot: 3.141592653589793 rad - pos: -10.5,7.5 - parent: 1 - type: Transform - - uid: 887 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,10.5 - parent: 1 - type: Transform - - uid: 888 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 1 - type: Transform - - uid: 889 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,9.5 - parent: 1 - type: Transform - - uid: 890 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,7.5 - parent: 1 - type: Transform - - uid: 891 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,15.5 - parent: 1 - type: Transform -- proto: FaxMachineCentcom - entities: - - uid: 892 - components: - - pos: 10.5,17.5 - parent: 1 - type: Transform -- proto: FireAlarm - entities: - - uid: 893 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,6.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 913 - - 914 - - 912 - - 901 - - 911 - - 902 - type: DeviceNetwork - - devices: - - 913 - - 914 - - 912 - - 901 - - 911 - - 902 - type: DeviceList - - uid: 894 - components: - - rot: 3.141592653589793 rad - pos: -14.5,2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 913 - - 915 - - 916 - - 917 - - 918 - type: DeviceNetwork - - devices: - - 913 - - 915 - - 916 - - 917 - - 918 - type: DeviceList - - uid: 895 - components: - - pos: -21.5,6.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 917 - - 903 - type: DeviceNetwork - - devices: - - 917 - - 903 - type: DeviceList - - uid: 896 - components: - - pos: 3.5,6.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 937 - - 935 - type: DeviceNetwork - - devices: - - 905 - - 906 - - 925 - - 921 - - 920 - - 919 - - 922 - - 923 - - 924 - - 935 - - 937 - type: DeviceList - - uid: 897 - components: - - pos: -2.5,-1.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 905 - - 906 - - 925 - type: DeviceNetwork - - devices: - - 905 - - 906 - - 925 - type: DeviceList - - uid: 898 - components: - - pos: 3.5,16.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 926 - - 927 - - 928 - - 929 - - 907 - type: DeviceNetwork - - devices: - - 926 - - 927 - - 928 - - 929 - - 907 - type: DeviceList - - uid: 899 - components: - - rot: 3.141592653589793 rad - pos: -8.5,10.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 930 - - 933 - - 934 - - 931 - - 932 - - 908 - type: DeviceNetwork - - devices: - - 930 - - 933 - - 934 - - 931 - - 932 - - 908 - type: DeviceList - - uid: 900 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,7.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 930 - - 933 - - 934 - - 931 - - 932 - - 908 - type: DeviceNetwork - - devices: - - 930 - - 933 - - 934 - - 931 - - 932 - - 908 - type: DeviceList -- proto: FirelockEdge - entities: - - uid: 901 - components: - - rot: 3.141592653589793 rad - pos: -4.5,2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 893 - - 15 - type: DeviceNetwork - - uid: 902 - components: - - pos: -4.5,2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 893 - - 15 - type: DeviceNetwork - - uid: 903 - components: - - pos: -21.5,2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 895 - - 16 - type: DeviceNetwork - - uid: 904 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,0.5 - parent: 1 - type: Transform - - uid: 905 - components: - - pos: 1.5,-1.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 897 - type: DeviceNetwork - - uid: 906 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 897 - type: DeviceNetwork - - uid: 907 - components: - - pos: -4.5,15.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 898 - type: DeviceNetwork - - uid: 908 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,12.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 899 - - 18 - - 900 - - 20 - type: DeviceNetwork - - uid: 909 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,7.5 - parent: 1 - type: Transform - - uid: 910 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,11.5 - parent: 1 - type: Transform -- proto: FirelockGlass - entities: - - uid: 911 - components: - - pos: -6.5,2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 893 - - 15 - type: DeviceNetwork - - uid: 912 - components: - - pos: -2.5,2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 893 - - 15 - type: DeviceNetwork - - uid: 913 - components: - - pos: -9.5,4.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 894 - - 893 - - 15 - type: DeviceNetwork - - uid: 914 - components: - - pos: -4.5,6.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 893 - - 15 - type: DeviceNetwork - - uid: 915 - components: - - pos: -13.5,2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 894 - type: DeviceNetwork - - uid: 916 - components: - - pos: -16.5,2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 894 - type: DeviceNetwork - - uid: 917 - components: - - pos: -18.5,4.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 16 - - 894 - - 895 - type: DeviceNetwork - - uid: 918 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-1.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 894 - type: DeviceNetwork - - uid: 919 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,9.5 - parent: 1 - type: Transform - - uid: 920 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,9.5 - parent: 1 - type: Transform - - uid: 921 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,9.5 - parent: 1 - type: Transform - - uid: 922 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,13.5 - parent: 1 - type: Transform - - uid: 923 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,13.5 - parent: 1 - type: Transform - - uid: 924 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,13.5 - parent: 1 - type: Transform - - uid: 925 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 897 - type: DeviceNetwork - - uid: 926 - components: - - pos: 5.5,14.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 898 - type: DeviceNetwork - - uid: 927 - components: - - pos: 2.5,16.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 898 - type: DeviceNetwork - - uid: 928 - components: - - pos: -0.5,16.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 898 - type: DeviceNetwork - - uid: 929 - components: - - pos: -2.5,14.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 898 - type: DeviceNetwork - - uid: 930 - components: - - pos: -6.5,11.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 899 - - 18 - - 900 - - 20 - type: DeviceNetwork - - uid: 931 - components: - - pos: -10.5,10.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 899 - - 18 - - 900 - - 20 - type: DeviceNetwork - - uid: 932 - components: - - pos: -14.5,9.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 899 - - 18 - - 900 - - 20 - type: DeviceNetwork - - uid: 933 - components: - - pos: -9.5,14.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 899 - - 18 - - 900 - - 20 - type: DeviceNetwork - - uid: 934 - components: - - pos: -10.5,14.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 899 - - 18 - - 900 - - 20 - type: DeviceNetwork - - uid: 935 - components: - - rot: 3.141592653589793 rad - pos: 9.5,7.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 896 - - 19 - type: DeviceNetwork - - uid: 936 - components: - - rot: 3.141592653589793 rad - pos: 10.5,9.5 - parent: 1 - type: Transform - - uid: 937 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,3.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 896 - - 19 - type: DeviceNetwork -- proto: FlashlightSeclite - entities: - - uid: 11 - components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 628 - components: - - flags: InContainer - type: MetaData - - parent: 626 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 657 - components: - - flags: InContainer - type: MetaData - - parent: 649 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 667 - components: - - flags: InContainer - type: MetaData - - parent: 659 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 672 - components: - - flags: InContainer - type: MetaData - - parent: 669 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 682 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 690 - components: - - flags: InContainer - type: MetaData - - parent: 687 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 700 - components: - - flags: InContainer - type: MetaData - - parent: 696 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 715 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2456 - components: - - flags: InContainer - type: MetaData - - parent: 2450 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2465 - components: - - flags: InContainer - type: MetaData - - parent: 2460 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2474 - components: - - flags: InContainer - type: MetaData - - parent: 2470 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2486 - components: - - flags: InContainer - type: MetaData - - parent: 2482 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FloorDrain - entities: - - uid: 938 - components: - - pos: 4.5,24.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 939 - components: - - pos: 2.5,24.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 940 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,3.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 2427 - components: - - rot: 3.141592653589793 rad - pos: -8.5,0.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures -- proto: GasMinerNitrogenStation - entities: - - uid: 941 - components: - - rot: 3.141592653589793 rad - pos: -17.5,13.5 - parent: 1 - type: Transform -- proto: GasMinerOxygenStation - entities: - - uid: 942 - components: - - rot: 3.141592653589793 rad - pos: -15.5,13.5 - parent: 1 - type: Transform -- proto: GasMixerFlipped - entities: - - uid: 943 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,9.5 - parent: 1 - type: Transform - - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - type: GasMixer - - color: '#0000FFFF' - type: AtmosPipeColor -- proto: GasPassiveVent - entities: - - uid: 944 - components: - - pos: -17.5,12.5 - parent: 1 - type: Transform - - uid: 945 - components: - - pos: -15.5,12.5 - parent: 1 - type: Transform - - uid: 946 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,8.5 - parent: 1 - type: Transform -- proto: GasPipeBend - entities: - - uid: 947 - components: - - rot: 3.141592653589793 rad - pos: -17.5,9.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 948 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 949 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,9.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 950 - components: - - rot: 3.141592653589793 rad - pos: -5.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 951 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,17.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 952 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,24.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 953 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,19.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 954 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 955 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 956 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,34.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 957 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 958 - components: - - pos: 17.5,17.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 959 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 960 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 961 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 962 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 963 - components: - - pos: -13.5,8.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 964 - components: - - rot: 3.141592653589793 rad - pos: -13.5,7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 965 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 966 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 967 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 968 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,11.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 969 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 970 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,8.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 971 - components: - - pos: 8.5,33.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 972 - components: - - pos: -7.5,15.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 973 - components: - - rot: 3.141592653589793 rad - pos: -9.5,15.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 974 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 975 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-4.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 976 - components: - - pos: 12.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 977 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 978 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 979 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 980 - components: - - pos: -6.5,-2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- proto: GasPipeFourway - entities: - - uid: 981 - components: - - pos: 8.5,7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 982 - components: - - pos: 2.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 983 - components: - - pos: 8.5,14.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 984 - components: - - pos: 3.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 985 - components: - - pos: -0.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- proto: GasPipeStraight - entities: - - uid: 986 - components: - - pos: -13.5,-0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 987 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,9.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 988 - components: - - rot: 3.141592653589793 rad - pos: 6.5,28.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 989 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,9.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 990 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,9.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 991 - components: - - rot: 3.141592653589793 rad - pos: -11.5,10.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 992 - components: - - rot: 3.141592653589793 rad - pos: -11.5,11.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 993 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 994 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 995 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 996 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 997 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 998 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 999 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1000 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1001 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1002 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1003 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1004 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1005 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1006 - components: - - rot: 3.141592653589793 rad - pos: 6.5,16.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1007 - components: - - rot: 3.141592653589793 rad - pos: 6.5,17.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1008 - components: - - pos: 6.5,24.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1009 - components: - - rot: 3.141592653589793 rad - pos: 6.5,19.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1010 - components: - - rot: 3.141592653589793 rad - pos: 6.5,20.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1011 - components: - - rot: 3.141592653589793 rad - pos: 6.5,21.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1012 - components: - - rot: 3.141592653589793 rad - pos: 6.5,22.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1013 - components: - - rot: 3.141592653589793 rad - pos: 6.5,23.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1014 - components: - - rot: 3.141592653589793 rad - pos: 6.5,25.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1015 - components: - - rot: 3.141592653589793 rad - pos: 6.5,27.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1016 - components: - - rot: 3.141592653589793 rad - pos: 6.5,29.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1017 - components: - - rot: 3.141592653589793 rad - pos: 6.5,30.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1018 - components: - - rot: 3.141592653589793 rad - pos: 6.5,31.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1019 - components: - - rot: 3.141592653589793 rad - pos: 6.5,32.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1020 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,14.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1021 - components: - - rot: 3.141592653589793 rad - pos: 6.5,33.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1022 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1023 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1024 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1025 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1026 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1027 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1028 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1029 - components: - - rot: 3.141592653589793 rad - pos: -5.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1030 - components: - - rot: 3.141592653589793 rad - pos: -5.5,16.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1031 - components: - - rot: 3.141592653589793 rad - pos: 6.5,11.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1032 - components: - - rot: 3.141592653589793 rad - pos: 6.5,10.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1033 - components: - - rot: 3.141592653589793 rad - pos: 6.5,9.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1034 - components: - - rot: 3.141592653589793 rad - pos: 6.5,7.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1035 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1036 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1037 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1038 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1039 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1040 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1041 - components: - - pos: 2.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1042 - components: - - pos: 2.5,16.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1043 - components: - - pos: 2.5,17.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1044 - components: - - pos: 2.5,18.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1045 - components: - - pos: 2.5,19.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1046 - components: - - pos: 2.5,20.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1047 - components: - - pos: 2.5,21.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1048 - components: - - pos: 2.5,22.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1049 - components: - - pos: 2.5,23.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1050 - components: - - rot: 3.141592653589793 rad - pos: -1.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1051 - components: - - rot: 3.141592653589793 rad - pos: -1.5,16.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1052 - components: - - rot: 3.141592653589793 rad - pos: -1.5,17.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1053 - components: - - rot: 3.141592653589793 rad - pos: -1.5,18.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1054 - components: - - pos: 0.5,4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1055 - components: - - pos: 0.5,3.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1056 - components: - - pos: 0.5,2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1057 - components: - - pos: 0.5,1.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1058 - components: - - pos: 0.5,-0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1059 - components: - - pos: 0.5,-1.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1060 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1061 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1062 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1063 - components: - - rot: 3.141592653589793 rad - pos: -6.5,3.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1064 - components: - - rot: 3.141592653589793 rad - pos: -6.5,1.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1065 - components: - - pos: -17.5,0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1066 - components: - - pos: -17.5,3.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1067 - components: - - rot: 3.141592653589793 rad - pos: -6.5,2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1068 - components: - - rot: 3.141592653589793 rad - pos: -6.5,4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1069 - components: - - pos: -17.5,4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1070 - components: - - pos: -17.5,2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1071 - components: - - pos: -17.5,1.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1072 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1073 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1074 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1075 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1076 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1077 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1078 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1079 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1080 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1081 - components: - - rot: 3.141592653589793 rad - pos: 17.5,16.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1082 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1083 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1084 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1085 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1086 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1087 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1088 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1089 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1090 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1091 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1092 - components: - - pos: -22.5,4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1093 - components: - - pos: -22.5,3.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1094 - components: - - pos: -22.5,2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1095 - components: - - pos: -22.5,1.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1096 - components: - - rot: 3.141592653589793 rad - pos: -22.5,0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1097 - components: - - rot: 3.141592653589793 rad - pos: -13.5,4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1098 - components: - - rot: 3.141592653589793 rad - pos: -13.5,3.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1099 - components: - - rot: 3.141592653589793 rad - pos: -13.5,2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1100 - components: - - rot: 3.141592653589793 rad - pos: -13.5,1.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1101 - components: - - rot: 3.141592653589793 rad - pos: -13.5,0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1102 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1103 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1104 - components: - - pos: -2.5,4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1105 - components: - - pos: -2.5,3.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1106 - components: - - pos: -2.5,2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1107 - components: - - pos: -2.5,1.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1108 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,8.5 - parent: 1 - type: Transform - - uid: 1109 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,8.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1110 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,8.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1111 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,8.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1112 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1113 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1114 - components: - - rot: 3.141592653589793 rad - pos: -9.5,8.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1115 - components: - - rot: 3.141592653589793 rad - pos: -9.5,9.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1116 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1117 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1118 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1119 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1120 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1121 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1122 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1123 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1124 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1125 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1126 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1127 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1128 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1129 - components: - - rot: 3.141592653589793 rad - pos: 8.5,9.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1130 - components: - - rot: 3.141592653589793 rad - pos: 8.5,8.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1131 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,8.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1132 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,8.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1133 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,8.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1134 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,8.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1135 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1136 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1137 - components: - - rot: 3.141592653589793 rad - pos: 11.5,9.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1138 - components: - - rot: 3.141592653589793 rad - pos: 11.5,10.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1139 - components: - - rot: 3.141592653589793 rad - pos: 11.5,11.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1140 - components: - - rot: 3.141592653589793 rad - pos: 10.5,8.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1141 - components: - - rot: 3.141592653589793 rad - pos: 10.5,9.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1142 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,11.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1143 - components: - - rot: 3.141592653589793 rad - pos: 10.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1144 - components: - - rot: 3.141592653589793 rad - pos: 8.5,6.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1145 - components: - - rot: 3.141592653589793 rad - pos: 8.5,5.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1146 - components: - - rot: 3.141592653589793 rad - pos: 8.5,4.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1147 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1148 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1149 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1150 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1151 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1152 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1153 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1154 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1155 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1156 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1157 - components: - - pos: -3.5,2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1158 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1159 - components: - - pos: -7.5,2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1160 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1161 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1162 - components: - - pos: -12.5,2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1163 - components: - - pos: -12.5,1.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1164 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1165 - components: - - pos: -16.5,1.5 - parent: 1 - type: Transform - - uid: 1166 - components: - - pos: -16.5,0.5 - parent: 1 - type: Transform - - uid: 1167 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1168 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1169 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1170 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1171 - components: - - pos: -21.5,2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1172 - components: - - pos: -21.5,1.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1173 - components: - - rot: 3.141592653589793 rad - pos: -4.5,6.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1174 - components: - - rot: 3.141592653589793 rad - pos: -5.5,4.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1175 - components: - - rot: 3.141592653589793 rad - pos: -5.5,5.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1176 - components: - - rot: 3.141592653589793 rad - pos: -5.5,6.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1177 - components: - - rot: 3.141592653589793 rad - pos: -5.5,7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1178 - components: - - pos: 8.5,11.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1179 - components: - - pos: 8.5,12.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1180 - components: - - pos: 8.5,13.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1181 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,14.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1182 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,14.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1183 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,14.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1184 - components: - - rot: 3.141592653589793 rad - pos: 12.5,15.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1185 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,14.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1186 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,14.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1187 - components: - - rot: 3.141592653589793 rad - pos: 16.5,15.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1188 - components: - - pos: 8.5,15.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1189 - components: - - pos: 8.5,17.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1190 - components: - - pos: 8.5,18.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1191 - components: - - pos: 8.5,32.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1192 - components: - - pos: 8.5,31.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1193 - components: - - pos: 8.5,30.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1194 - components: - - pos: 8.5,29.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1195 - components: - - pos: 8.5,28.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1196 - components: - - pos: 8.5,26.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1197 - components: - - pos: 8.5,25.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1198 - components: - - pos: 8.5,24.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1199 - components: - - pos: 8.5,23.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1200 - components: - - pos: 8.5,22.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1201 - components: - - pos: 8.5,21.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1202 - components: - - pos: 8.5,20.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1203 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1204 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1205 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1206 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1207 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1208 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1209 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1210 - components: - - pos: -0.5,17.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1211 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1212 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1213 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1214 - components: - - pos: 3.5,17.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1215 - components: - - pos: 3.5,18.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1216 - components: - - pos: 3.5,19.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1217 - components: - - pos: 3.5,20.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1218 - components: - - pos: 3.5,21.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1219 - components: - - pos: 3.5,22.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1220 - components: - - rot: 3.141592653589793 rad - pos: -10.5,13.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1221 - components: - - rot: 3.141592653589793 rad - pos: -10.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1222 - components: - - rot: 3.141592653589793 rad - pos: -10.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1223 - components: - - rot: 3.141592653589793 rad - pos: -7.5,11.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1224 - components: - - rot: 3.141592653589793 rad - pos: -7.5,12.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1225 - components: - - rot: 3.141592653589793 rad - pos: -7.5,13.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1226 - components: - - rot: 3.141592653589793 rad - pos: -7.5,14.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1227 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,15.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1228 - components: - - pos: 2.5,2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1229 - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1230 - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1231 - components: - - pos: 2.5,-1.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1232 - components: - - pos: 2.5,-2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1233 - components: - - pos: 2.5,-3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1234 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1235 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-4.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1236 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1237 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1238 - components: - - rot: 3.141592653589793 rad - pos: 17.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1239 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1240 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1241 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1242 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1243 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1244 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1245 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1246 - components: - - pos: 12.5,4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1247 - components: - - pos: -13.5,-1.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1248 - components: - - pos: -13.5,-2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1249 - components: - - pos: -13.5,-3.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1250 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1251 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1252 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1253 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1254 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1255 - components: - - pos: -12.5,-0.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1256 - components: - - pos: -12.5,-1.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1257 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1258 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1259 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1260 - components: - - pos: -15.5,11.5 - parent: 1 - type: Transform - - uid: 1261 - components: - - pos: -17.5,11.5 - parent: 1 - type: Transform -- proto: GasPipeTJunction - entities: - - uid: 1262 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,0.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1263 - components: - - pos: -12.5,9.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1264 - components: - - rot: 3.141592653589793 rad - pos: -10.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1265 - components: - - pos: -9.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1266 - components: - - pos: 4.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1267 - components: - - pos: -4.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1268 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1269 - components: - - pos: 1.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1270 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1271 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1272 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,18.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1273 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,26.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1274 - components: - - rot: 3.141592653589793 rad - pos: 4.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1275 - components: - - rot: 3.141592653589793 rad - pos: 2.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1276 - components: - - rot: 3.141592653589793 rad - pos: 0.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1277 - components: - - rot: 3.141592653589793 rad - pos: -1.5,14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1278 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1279 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,6.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1280 - components: - - rot: 3.141592653589793 rad - pos: 6.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1281 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,13.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1282 - components: - - pos: 0.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1283 - components: - - pos: -2.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1284 - components: - - pos: -6.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1285 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1286 - components: - - rot: 3.141592653589793 rad - pos: 11.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1287 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1288 - components: - - rot: 3.141592653589793 rad - pos: -4.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1289 - components: - - pos: -3.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1290 - components: - - pos: -7.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1291 - components: - - pos: -15.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1292 - components: - - pos: -17.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1293 - components: - - pos: -21.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1294 - components: - - pos: -13.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1295 - components: - - pos: -10.5,5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1296 - components: - - rot: 3.141592653589793 rad - pos: -11.5,7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1297 - components: - - rot: 3.141592653589793 rad - pos: -8.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1298 - components: - - rot: 3.141592653589793 rad - pos: -7.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1299 - components: - - rot: 3.141592653589793 rad - pos: -3.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1300 - components: - - rot: 3.141592653589793 rad - pos: 3.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1301 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1302 - components: - - rot: 3.141592653589793 rad - pos: 10.5,7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1303 - components: - - rot: 3.141592653589793 rad - pos: 11.5,8.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1304 - components: - - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1305 - components: - - pos: -3.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1306 - components: - - rot: 3.141592653589793 rad - pos: -4.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1307 - components: - - rot: 3.141592653589793 rad - pos: -5.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1308 - components: - - pos: -7.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1309 - components: - - rot: 3.141592653589793 rad - pos: -8.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1310 - components: - - rot: 3.141592653589793 rad - pos: -11.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1311 - components: - - pos: -12.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1312 - components: - - rot: 3.141592653589793 rad - pos: -14.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1313 - components: - - pos: -16.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1314 - components: - - rot: 3.141592653589793 rad - pos: -20.5,3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1315 - components: - - rot: 3.141592653589793 rad - pos: 12.5,14.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1316 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,14.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1317 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,27.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1318 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1319 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,19.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1320 - components: - - rot: 3.141592653589793 rad - pos: -18.5,13.5 - parent: 1 - type: Transform - - uid: 1321 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1322 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1323 - components: - - pos: -10.5,-2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- proto: GasPort - entities: - - uid: 1324 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 1 - type: Transform -- proto: GasPressurePump - entities: - - uid: 1325 - components: - - pos: -15.5,10.5 - parent: 1 - type: Transform - - uid: 1326 - components: - - pos: -17.5,10.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1327 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,8.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- proto: GasVentPump - entities: - - uid: 1328 - components: - - rot: 3.141592653589793 rad - pos: -12.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1329 - components: - - rot: 3.141592653589793 rad - pos: -9.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1330 - components: - - rot: 3.141592653589793 rad - pos: -4.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1331 - components: - - rot: 3.141592653589793 rad - pos: 4.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1332 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,24.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1333 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,17.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1334 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,19.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1335 - components: - - pos: 0.5,15.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1336 - components: - - pos: 4.5,15.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1337 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1338 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1339 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,34.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1340 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,18.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1341 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,26.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1342 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1343 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1344 - components: - - rot: 3.141592653589793 rad - pos: 1.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1345 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1346 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1347 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1348 - components: - - pos: 11.5,16.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1349 - components: - - rot: 3.141592653589793 rad - pos: -3.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1350 - components: - - rot: 3.141592653589793 rad - pos: -7.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1351 - components: - - rot: 3.141592653589793 rad - pos: -21.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1352 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1353 - components: - - rot: 3.141592653589793 rad - pos: -15.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1354 - components: - - rot: 3.141592653589793 rad - pos: -10.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1355 - components: - - pos: -10.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1356 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1357 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1358 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1359 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1360 - components: - - pos: -4.5,7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1361 - components: - - pos: -10.5,16.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1362 - components: - - rot: 3.141592653589793 rad - pos: 17.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1363 - components: - - rot: 3.141592653589793 rad - pos: 12.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1364 - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1365 - components: - - pos: -7.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0000FFFF' - type: AtmosPipeColor -- proto: GasVentScrubber - entities: - - uid: 1366 - components: - - pos: -11.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1367 - components: - - pos: -8.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1368 - components: - - pos: -3.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1369 - components: - - pos: 3.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1370 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1371 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1372 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1373 - components: - - pos: 2.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1374 - components: - - rot: 3.141592653589793 rad - pos: -3.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1375 - components: - - pos: -4.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1376 - components: - - rot: 3.141592653589793 rad - pos: -7.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1377 - components: - - pos: -8.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1378 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1379 - components: - - pos: -11.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1380 - components: - - pos: -14.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1381 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1382 - components: - - pos: -20.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1383 - components: - - rot: 3.141592653589793 rad - pos: -21.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1384 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1385 - components: - - pos: 12.5,16.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1386 - components: - - pos: 16.5,16.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1387 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1388 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1389 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,27.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1390 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1391 - components: - - rot: 3.141592653589793 rad - pos: 3.5,15.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1392 - components: - - rot: 3.141592653589793 rad - pos: -0.5,15.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1393 - components: - - pos: -0.5,18.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1394 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,16.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1395 - components: - - pos: 3.5,23.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 17 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1396 - components: - - pos: -9.5,16.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1397 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1398 - components: - - pos: -2.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1399 - components: - - rot: 3.141592653589793 rad - pos: 16.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1400 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1401 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor - - uid: 1402 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#FF0000FF' - type: AtmosPipeColor -- proto: PortableGeneratorSuperPacman - entities: - - uid: 1403 - components: - - pos: -11.5,13.5 - parent: 1 - type: Transform - - uid: 1404 - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform - - uid: 1405 - components: - - pos: -13.5,13.5 - parent: 1 - type: Transform -- proto: GravityGeneratorMini - entities: - - uid: 1406 - components: - - pos: -8.5,13.5 - parent: 1 - type: Transform -- proto: Grille - entities: - - uid: 1407 - components: - - rot: 3.141592653589793 rad - pos: -5.5,6.5 - parent: 1 - type: Transform - - uid: 1410 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,32.5 - parent: 1 - type: Transform - - uid: 1411 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,33.5 - parent: 1 - type: Transform - - uid: 1412 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,28.5 - parent: 1 - type: Transform - - uid: 1413 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,31.5 - parent: 1 - type: Transform - - uid: 1414 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,25.5 - parent: 1 - type: Transform - - uid: 1415 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,27.5 - parent: 1 - type: Transform - - uid: 1416 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,26.5 - parent: 1 - type: Transform - - uid: 1417 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,28.5 - parent: 1 - type: Transform - - uid: 1419 - components: - - pos: -1.5,23.5 - parent: 1 - type: Transform - - uid: 1420 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,27.5 - parent: 1 - type: Transform - - uid: 1421 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,22.5 - parent: 1 - type: Transform - - uid: 1422 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,35.5 - parent: 1 - type: Transform - - uid: 1423 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 1 - type: Transform - - uid: 1424 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-5.5 - parent: 1 - type: Transform - - uid: 1425 - components: - - rot: 3.141592653589793 rad - pos: 11.5,18.5 - parent: 1 - type: Transform - - uid: 1426 - components: - - rot: 3.141592653589793 rad - pos: -7.5,2.5 - parent: 1 - type: Transform - - uid: 1427 - components: - - rot: 3.141592653589793 rad - pos: -8.5,2.5 - parent: 1 - type: Transform - - uid: 1428 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 1 - type: Transform - - uid: 1429 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,4.5 - parent: 1 - type: Transform - - uid: 1430 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-1.5 - parent: 1 - type: Transform - - uid: 1431 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-1.5 - parent: 1 - type: Transform - - uid: 1432 - components: - - rot: 3.141592653589793 rad - pos: 10.5,18.5 - parent: 1 - type: Transform - - uid: 1433 - components: - - rot: 3.141592653589793 rad - pos: 12.5,18.5 - parent: 1 - type: Transform - - uid: 1434 - components: - - rot: 3.141592653589793 rad - pos: 13.5,18.5 - parent: 1 - type: Transform - - uid: 1435 - components: - - pos: 18.5,13.5 - parent: 1 - type: Transform - - uid: 1436 - components: - - pos: -12.5,16.5 - parent: 1 - type: Transform - - uid: 1437 - components: - - pos: -10.5,18.5 - parent: 1 - type: Transform - - uid: 1438 - components: - - pos: -9.5,18.5 - parent: 1 - type: Transform - - uid: 1439 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 1 - type: Transform - - uid: 1440 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 1 - type: Transform - - uid: 1441 - components: - - pos: 18.5,12.5 - parent: 1 - type: Transform - - uid: 1442 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-5.5 - parent: 1 - type: Transform - - uid: 1443 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-5.5 - parent: 1 - type: Transform - - uid: 1444 - components: - - rot: 3.141592653589793 rad - pos: 3.5,34.5 - parent: 1 - type: Transform - - uid: 1445 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-5.5 - parent: 1 - type: Transform - - uid: 1446 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-5.5 - parent: 1 - type: Transform - - uid: 1447 - components: - - rot: 3.141592653589793 rad - pos: 2.5,34.5 - parent: 1 - type: Transform - - uid: 1448 - components: - - rot: 3.141592653589793 rad - pos: 1.5,34.5 - parent: 1 - type: Transform - - uid: 1449 - components: - - rot: 3.141592653589793 rad - pos: 1.5,32.5 - parent: 1 - type: Transform - - uid: 1450 - components: - - rot: 3.141592653589793 rad - pos: 1.5,32.5 - parent: 1 - type: Transform - - uid: 1451 - components: - - rot: 3.141592653589793 rad - pos: 1.5,31.5 - parent: 1 - type: Transform - - uid: 1452 - components: - - rot: 3.141592653589793 rad - pos: 1.5,30.5 - parent: 1 - type: Transform - - uid: 1453 - components: - - rot: 3.141592653589793 rad - pos: 0.5,30.5 - parent: 1 - type: Transform - - uid: 1454 - components: - - rot: 3.141592653589793 rad - pos: -0.5,29.5 - parent: 1 - type: Transform - - uid: 1455 - components: - - rot: 3.141592653589793 rad - pos: -0.5,28.5 - parent: 1 - type: Transform - - uid: 1457 - components: - - pos: -3.5,21.5 - parent: 1 - type: Transform - - uid: 1458 - components: - - rot: 3.141592653589793 rad - pos: -10.5,23.5 - parent: 1 - type: Transform - - uid: 1459 - components: - - pos: -5.5,21.5 - parent: 1 - type: Transform - - uid: 1460 - components: - - pos: -4.5,21.5 - parent: 1 - type: Transform - - uid: 1464 - components: - - rot: 3.141592653589793 rad - pos: -7.5,23.5 - parent: 1 - type: Transform - - uid: 1465 - components: - - rot: 3.141592653589793 rad - pos: -12.5,23.5 - parent: 1 - type: Transform - - uid: 1466 - components: - - rot: 3.141592653589793 rad - pos: -13.5,23.5 - parent: 1 - type: Transform - - uid: 1467 - components: - - rot: 3.141592653589793 rad - pos: -11.5,23.5 - parent: 1 - type: Transform - - uid: 1468 - components: - - rot: 3.141592653589793 rad - pos: -8.5,23.5 - parent: 1 - type: Transform - - uid: 1469 - components: - - rot: 3.141592653589793 rad - pos: -9.5,23.5 - parent: 1 - type: Transform - - uid: 1470 - components: - - pos: -6.5,26.5 - parent: 1 - type: Transform - - uid: 1471 - components: - - rot: 3.141592653589793 rad - pos: -23.5,15.5 - parent: 1 - type: Transform - - uid: 1472 - components: - - rot: 3.141592653589793 rad - pos: -16.5,22.5 - parent: 1 - type: Transform - - uid: 1473 - components: - - rot: 3.141592653589793 rad - pos: -17.5,20.5 - parent: 1 - type: Transform - - uid: 1474 - components: - - rot: 3.141592653589793 rad - pos: -18.5,20.5 - parent: 1 - type: Transform - - uid: 1475 - components: - - rot: 3.141592653589793 rad - pos: -20.5,20.5 - parent: 1 - type: Transform - - uid: 1476 - components: - - rot: 3.141592653589793 rad - pos: -20.5,19.5 - parent: 1 - type: Transform - - uid: 1477 - components: - - rot: 3.141592653589793 rad - pos: -20.5,18.5 - parent: 1 - type: Transform - - uid: 1478 - components: - - rot: 3.141592653589793 rad - pos: -21.5,17.5 - parent: 1 - type: Transform - - uid: 1479 - components: - - rot: 3.141592653589793 rad - pos: -24.5,14.5 - parent: 1 - type: Transform - - uid: 1480 - components: - - rot: 3.141592653589793 rad - pos: -24.5,13.5 - parent: 1 - type: Transform - - uid: 1481 - components: - - rot: 3.141592653589793 rad - pos: -23.5,16.5 - parent: 1 - type: Transform - - uid: 1482 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-5.5 - parent: 1 - type: Transform - - uid: 1483 - components: - - rot: 3.141592653589793 rad - pos: -25.5,10.5 - parent: 1 - type: Transform - - uid: 1484 - components: - - rot: 3.141592653589793 rad - pos: -26.5,9.5 - parent: 1 - type: Transform - - uid: 1485 - components: - - rot: 3.141592653589793 rad - pos: -27.5,8.5 - parent: 1 - type: Transform - - uid: 1486 - components: - - rot: 3.141592653589793 rad - pos: -27.5,6.5 - parent: 1 - type: Transform - - uid: 1487 - components: - - rot: 3.141592653589793 rad - pos: -27.5,4.5 - parent: 1 - type: Transform - - uid: 1488 - components: - - rot: 3.141592653589793 rad - pos: -27.5,3.5 - parent: 1 - type: Transform - - uid: 1489 - components: - - rot: 3.141592653589793 rad - pos: -27.5,5.5 - parent: 1 - type: Transform - - uid: 1490 - components: - - rot: 3.141592653589793 rad - pos: -27.5,0.5 - parent: 1 - type: Transform - - uid: 1491 - components: - - rot: 3.141592653589793 rad - pos: -27.5,-0.5 - parent: 1 - type: Transform - - uid: 1492 - components: - - rot: 3.141592653589793 rad - pos: -27.5,-0.5 - parent: 1 - type: Transform - - uid: 1493 - components: - - rot: 3.141592653589793 rad - pos: -27.5,-1.5 - parent: 1 - type: Transform - - uid: 1494 - components: - - rot: 3.141592653589793 rad - pos: -27.5,-3.5 - parent: 1 - type: Transform - - uid: 1495 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-3.5 - parent: 1 - type: Transform - - uid: 1496 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-4.5 - parent: 1 - type: Transform - - uid: 1497 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-5.5 - parent: 1 - type: Transform - - uid: 1498 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-5.5 - parent: 1 - type: Transform - - uid: 1499 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-5.5 - parent: 1 - type: Transform - - uid: 1500 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-7.5 - parent: 1 - type: Transform - - uid: 1501 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-9.5 - parent: 1 - type: Transform - - uid: 1502 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-9.5 - parent: 1 - type: Transform - - uid: 1503 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-9.5 - parent: 1 - type: Transform - - uid: 1504 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-9.5 - parent: 1 - type: Transform - - uid: 1505 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-9.5 - parent: 1 - type: Transform - - uid: 1506 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-9.5 - parent: 1 - type: Transform - - uid: 1507 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-6.5 - parent: 1 - type: Transform - - uid: 1508 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-5.5 - parent: 1 - type: Transform - - uid: 1509 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-9.5 - parent: 1 - type: Transform - - uid: 1510 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-9.5 - parent: 1 - type: Transform - - uid: 1511 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-9.5 - parent: 1 - type: Transform - - uid: 1512 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-9.5 - parent: 1 - type: Transform - - uid: 1513 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-9.5 - parent: 1 - type: Transform - - uid: 1514 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-9.5 - parent: 1 - type: Transform - - uid: 1515 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-9.5 - parent: 1 - type: Transform - - uid: 1516 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-9.5 - parent: 1 - type: Transform - - uid: 1517 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-8.5 - parent: 1 - type: Transform - - uid: 1518 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-7.5 - parent: 1 - type: Transform - - uid: 1519 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-7.5 - parent: 1 - type: Transform - - uid: 1520 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-6.5 - parent: 1 - type: Transform - - uid: 1521 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-5.5 - parent: 1 - type: Transform - - uid: 1522 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-3.5 - parent: 1 - type: Transform - - uid: 1523 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-3.5 - parent: 1 - type: Transform - - uid: 1524 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-3.5 - parent: 1 - type: Transform - - uid: 1525 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-3.5 - parent: 1 - type: Transform - - uid: 1526 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-3.5 - parent: 1 - type: Transform - - uid: 1527 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-3.5 - parent: 1 - type: Transform - - uid: 1528 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-3.5 - parent: 1 - type: Transform - - uid: 1529 - components: - - rot: 3.141592653589793 rad - pos: 20.5,6.5 - parent: 1 - type: Transform - - uid: 1530 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-1.5 - parent: 1 - type: Transform - - uid: 1531 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-2.5 - parent: 1 - type: Transform - - uid: 1532 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-0.5 - parent: 1 - type: Transform - - uid: 1533 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-0.5 - parent: 1 - type: Transform - - uid: 1534 - components: - - rot: 3.141592653589793 rad - pos: 18.5,1.5 - parent: 1 - type: Transform - - uid: 1535 - components: - - rot: 3.141592653589793 rad - pos: 18.5,2.5 - parent: 1 - type: Transform - - uid: 1536 - components: - - rot: 3.141592653589793 rad - pos: 20.5,3.5 - parent: 1 - type: Transform - - uid: 1537 - components: - - rot: 3.141592653589793 rad - pos: 20.5,7.5 - parent: 1 - type: Transform - - uid: 1538 - components: - - rot: 3.141592653589793 rad - pos: 20.5,4.5 - parent: 1 - type: Transform - - uid: 1539 - components: - - rot: 3.141592653589793 rad - pos: 23.5,14.5 - parent: 1 - type: Transform - - uid: 1540 - components: - - rot: 3.141592653589793 rad - pos: 21.5,8.5 - parent: 1 - type: Transform - - uid: 1541 - components: - - rot: 3.141592653589793 rad - pos: 22.5,9.5 - parent: 1 - type: Transform - - uid: 1542 - components: - - rot: 3.141592653589793 rad - pos: 23.5,9.5 - parent: 1 - type: Transform - - uid: 1543 - components: - - rot: 3.141592653589793 rad - pos: 23.5,11.5 - parent: 1 - type: Transform - - uid: 1544 - components: - - rot: 3.141592653589793 rad - pos: 23.5,12.5 - parent: 1 - type: Transform - - uid: 1545 - components: - - rot: 3.141592653589793 rad - pos: 23.5,13.5 - parent: 1 - type: Transform - - uid: 1546 - components: - - rot: 3.141592653589793 rad - pos: 23.5,15.5 - parent: 1 - type: Transform - - uid: 1547 - components: - - rot: 3.141592653589793 rad - pos: 23.5,18.5 - parent: 1 - type: Transform - - uid: 1548 - components: - - rot: 3.141592653589793 rad - pos: 21.5,18.5 - parent: 1 - type: Transform - - uid: 1549 - components: - - rot: 3.141592653589793 rad - pos: 20.5,18.5 - parent: 1 - type: Transform - - uid: 1550 - components: - - rot: 3.141592653589793 rad - pos: 23.5,17.5 - parent: 1 - type: Transform - - uid: 1731 - components: - - pos: -6.5,24.5 - parent: 1 - type: Transform - - uid: 2321 - components: - - pos: -1.5,28.5 - parent: 1 - type: Transform - - uid: 2390 - components: - - pos: -0.5,23.5 - parent: 1 - type: Transform - - uid: 2391 - components: - - pos: 0.5,23.5 - parent: 1 - type: Transform - - uid: 2509 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,11.5 - parent: 1 - type: Transform - - uid: 2510 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,11.5 - parent: 1 - type: Transform -- proto: GrilleBroken - entities: - - uid: 1456 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,23.5 - parent: 1 - type: Transform - - uid: 1551 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 1 - type: Transform - - uid: 1552 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-3.5 - parent: 1 - type: Transform - - uid: 1553 - components: - - pos: 3.5,-9.5 - parent: 1 - type: Transform - - uid: 1554 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 1 - type: Transform - - uid: 1555 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-9.5 - parent: 1 - type: Transform - - uid: 1556 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-8.5 - parent: 1 - type: Transform - - uid: 1557 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-9.5 - parent: 1 - type: Transform - - uid: 1558 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,23.5 - parent: 1 - type: Transform - - uid: 1559 - components: - - pos: -27.5,-2.5 - parent: 1 - type: Transform - - uid: 1560 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,1.5 - parent: 1 - type: Transform - - uid: 1561 - components: - - rot: 3.141592653589793 rad - pos: -27.5,2.5 - parent: 1 - type: Transform - - uid: 1562 - components: - - rot: 3.141592653589793 rad - pos: -26.5,8.5 - parent: 1 - type: Transform - - uid: 1563 - components: - - pos: -25.5,11.5 - parent: 1 - type: Transform - - uid: 1564 - components: - - pos: -22.5,17.5 - parent: 1 - type: Transform - - uid: 1565 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,23.5 - parent: 1 - type: Transform - - uid: 1566 - components: - - pos: 1.5,33.5 - parent: 1 - type: Transform - - uid: 1568 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,34.5 - parent: 1 - type: Transform - - uid: 1569 - components: - - pos: 4.5,34.5 - parent: 1 - type: Transform - - uid: 1570 - components: - - rot: 3.141592653589793 rad - pos: 20.5,5.5 - parent: 1 - type: Transform - - uid: 1571 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,18.5 - parent: 1 - type: Transform - - uid: 1572 - components: - - rot: 3.141592653589793 rad - pos: 22.5,8.5 - parent: 1 - type: Transform - - uid: 1573 - components: - - pos: 20.5,5.5 - parent: 1 - type: Transform - - uid: 1574 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-1.5 - parent: 1 - type: Transform - - uid: 1575 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-3.5 - parent: 1 - type: Transform - - uid: 2387 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,25.5 - parent: 1 - type: Transform -- proto: HampterKrah - entities: - - uid: 1576 - components: - - pos: 2.4216707,-3.5797577 - parent: 1 - type: Transform -- proto: HampterMed - entities: - - uid: 1577 - components: - - pos: -3.5873346,5.6309385 - parent: 1 - type: Transform -- proto: HandheldGPSBasic - entities: - - uid: 142 - components: - - pos: 11.235489,10.511342 - parent: 1 - type: Transform - - uid: 143 - components: - - pos: 11.235489,10.511342 - parent: 1 - type: Transform - - uid: 1598 - components: - - pos: 11.235489,10.511342 - parent: 1 - type: Transform - - uid: 1599 - components: - - pos: 11.235489,10.511342 - parent: 1 - type: Transform - - uid: 1600 - components: - - pos: 11.235489,10.511342 - parent: 1 - type: Transform - - uid: 1601 - components: - - pos: 11.235489,10.511342 - parent: 1 - type: Transform - - uid: 2440 - components: - - pos: 11.235489,10.511342 - parent: 1 - type: Transform - - uid: 2516 - components: - - pos: 11.235489,10.511342 - parent: 1 - type: Transform -- proto: HighSecArmoryLocked - entities: - - uid: 1584 - components: - - pos: 9.5,7.5 - parent: 1 - type: Transform -- proto: HighSecCommandLocked - entities: - - uid: 1585 - components: - - pos: 14.5,15.5 - parent: 1 - type: Transform - - uid: 1586 - components: - - pos: 9.5,15.5 - parent: 1 - type: Transform -- proto: HolofanProjector - entities: - - uid: 1587 - components: - - pos: -13.541195,8.28056 - parent: 1 - type: Transform - - uid: 1588 - components: - - pos: -16.637148,7.8123646 - parent: 1 - type: Transform - - uid: 1589 - components: - - pos: -16.637148,7.6717396 - parent: 1 - type: Transform -- proto: Holoprojector - entities: - - uid: 1590 - components: - - rot: -1.5707963267948966 rad - pos: 11.913149,4.676386 - parent: 1 - type: Transform -- proto: HospitalCurtains - entities: - - uid: 1591 - components: - - pos: 4.5,24.5 - parent: 1 - type: Transform -- proto: HospitalCurtainsOpen - entities: - - uid: 1592 - components: - - pos: 2.5,24.5 - parent: 1 - type: Transform -- proto: Hypospray - entities: - - uid: 211 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 212 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 213 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 214 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 215 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 658 - components: - - flags: InContainer - type: MetaData - - parent: 649 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 668 - components: - - flags: InContainer - type: MetaData - - parent: 659 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2457 - components: - - flags: InContainer - type: MetaData - - parent: 2450 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2466 - components: - - flags: InContainer - type: MetaData - - parent: 2460 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: IntercomEngineering - entities: - - uid: 1593 - components: - - pos: -5.5,13.5 - parent: 1 - type: Transform -- proto: IntercomMedical - entities: - - uid: 1594 - components: - - pos: -0.5,6.5 - parent: 1 - type: Transform -- proto: JanitorialTrolley - entities: - - uid: 1595 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,2.5 - parent: 1 - type: Transform -- proto: JetpackBlackFilled - entities: - - uid: 2441 - components: - - pos: 11.641739,10.730092 - parent: 1 - type: Transform - - uid: 2442 - components: - - pos: 11.641739,10.730092 - parent: 1 - type: Transform - - uid: 2443 - components: - - pos: 11.641739,10.730092 - parent: 1 - type: Transform - - uid: 2444 - components: - - pos: 11.641739,10.730092 - parent: 1 - type: Transform - - uid: 2445 - components: - - pos: 11.641739,10.730092 - parent: 1 - type: Transform - - uid: 2446 - components: - - pos: 11.641739,10.730092 - parent: 1 - type: Transform - - uid: 2447 - components: - - pos: 11.641739,10.730092 - parent: 1 - type: Transform - - uid: 2448 - components: - - pos: 11.641739,10.730092 - parent: 1 - type: Transform -- proto: KitchenMicrowave - entities: - - uid: 1602 - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform -- proto: KitchenReagentGrinder - entities: - - uid: 1603 - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform - - uid: 1604 - components: - - pos: -22.5,4.5 - parent: 1 - type: Transform - - uid: 1605 - components: - - pos: -3.5,-4.5 - parent: 1 - type: Transform -- proto: Lamp - entities: - - uid: 1606 - components: - - rot: 1.5707963267948966 rad - pos: -13.515244,-3.9131765 - parent: 1 - type: Transform -- proto: Lighter - entities: - - uid: 1607 - components: - - pos: 12.103443,14.525698 - parent: 1 - type: Transform -- proto: LockerAtmosphericsFilled - entities: - - uid: 1608 - components: - - pos: -17.5,7.5 - parent: 1 - type: Transform -- proto: LockerCaptain - entities: - - uid: 705 - components: - - pos: 17.5,13.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1497 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 720 - - 714 - - 711 - - 710 - - 707 - - 715 - - 708 - - 718 - - 706 - - 719 - - 709 - - 717 - - 712 - - 716 - - 713 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 1609 - components: - - pos: -7.5,9.5 - parent: 1 - type: Transform -- proto: LockerEngineer - entities: - - uid: 626 - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1497 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 634 - - 633 - - 635 - - 629 - - 636 - - 631 - - 627 - - 632 - - 630 - - 628 - - 637 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 638 - components: - - pos: 0.5,17.5 - parent: 1 - type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 645 - - 639 - - 644 - - 646 - - 647 - - 640 - - 648 - - 641 - - 643 - - 642 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 2470 - components: - - pos: -1.5,21.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2474 - - 2473 - - 2472 - - 2471 - - 2475 - - 2476 - - 2477 - - 2478 - - 2479 - - 2480 - - 2481 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 2482 - components: - - pos: -1.5,22.5 - parent: 1 - type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2486 - - 2485 - - 2484 - - 2483 - - 2487 - - 2488 - - 2489 - - 2490 - - 2491 - - 2492 - - 2493 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerMedical - entities: - - uid: 649 - components: - - pos: 0.5,20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 654 - - 658 - - 650 - - 656 - - 653 - - 657 - - 655 - - 652 - - 651 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 659 - components: - - pos: 0.5,19.5 - parent: 1 - type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 661 - - 667 - - 665 - - 664 - - 662 - - 663 - - 666 - - 660 - - 668 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 2450 - components: - - pos: 0.5,21.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2459 - - 2458 - - 2457 - - 2456 - - 2455 - - 2454 - - 2451 - - 2452 - - 2453 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 2460 - components: - - pos: 0.5,22.5 - parent: 1 - type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2463 - - 2462 - - 2461 - - 2464 - - 2465 - - 2466 - - 2467 - - 2468 - - 2469 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerMedicine - entities: - - uid: 1610 - components: - - pos: -12.5,1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1617 - - 1618 - - 1611 - - 1619 - - 1612 - - 1613 - - 1614 - - 1615 - - 1616 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 1620 - components: - - pos: -11.5,1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1621 - - 1622 - - 1627 - - 1628 - - 1629 - - 1623 - - 1624 - - 1625 - - 1626 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerSecurity - entities: - - uid: 669 - components: - - pos: -1.5,18.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 670 - - 671 - - 672 - - 673 - - 674 - - 675 - - 676 - - 677 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 678 - components: - - pos: -1.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 679 - - 680 - - 681 - - 682 - - 683 - - 684 - - 685 - - 686 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 687 - components: - - pos: -1.5,20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 688 - - 689 - - 690 - - 691 - - 692 - - 693 - - 694 - - 695 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 696 - components: - - pos: -1.5,17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 697 - - 698 - - 699 - - 700 - - 701 - - 702 - - 703 - - 704 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerWallMedicalFilled - entities: - - uid: 1630 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,0.5 - parent: 1 - type: Transform - - uid: 1631 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,0.5 - parent: 1 - type: Transform -- proto: MaterialBiomass - entities: - - uid: 1632 - components: - - rot: -1.5707963267948966 rad - pos: -8.566401,1.2871039 - parent: 1 - type: Transform - - uid: 1633 - components: - - rot: -1.5707963267948966 rad - pos: -8.566401,1.2871039 - parent: 1 - type: Transform - - uid: 1634 - components: - - rot: -1.5707963267948966 rad - pos: -8.566401,1.2871039 - parent: 1 - type: Transform - - uid: 1635 - components: - - rot: -1.5707963267948966 rad - pos: -8.566401,1.2871039 - parent: 1 - type: Transform -- proto: MaterialCloth1 - entities: - - uid: 1636 - components: - - desc: Для вытирания своего тела, да - name: полотенце - type: MetaData - - pos: 3.4162674,24.561844 - parent: 1 - type: Transform -- proto: MedicalBed - entities: - - uid: 1637 - components: - - pos: -5.5,8.5 - parent: 1 - type: Transform - - uid: 1638 - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform - - uid: 1639 - components: - - pos: -3.5,8.5 - parent: 1 - type: Transform -- proto: MedicalScanner - entities: - - uid: 1640 - components: - - pos: -8.5,-0.5 - parent: 1 - type: Transform -- proto: MedkitBruteFilled - entities: - - uid: 1621 - components: - - flags: InContainer - type: MetaData - - parent: 1620 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1622 - components: - - flags: InContainer - type: MetaData - - parent: 1620 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1623 - components: - - flags: InContainer - type: MetaData - - parent: 1620 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MedkitBurnFilled - entities: - - uid: 1611 - components: - - flags: InContainer - type: MetaData - - parent: 1610 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1612 - components: - - flags: InContainer - type: MetaData - - parent: 1610 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1613 - components: - - flags: InContainer - type: MetaData - - parent: 1610 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MedkitCombatFilled - entities: - - uid: 1614 - components: - - flags: InContainer - type: MetaData - - parent: 1610 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1615 - components: - - flags: InContainer - type: MetaData - - parent: 1610 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1616 - components: - - flags: InContainer - type: MetaData - - parent: 1610 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MedkitOxygenFilled - entities: - - uid: 1624 - components: - - flags: InContainer - type: MetaData - - parent: 1620 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1625 - components: - - flags: InContainer - type: MetaData - - parent: 1620 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1626 - components: - - flags: InContainer - type: MetaData - - parent: 1620 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MedkitRadiationFilled - entities: - - uid: 1617 - components: - - flags: InContainer - type: MetaData - - parent: 1610 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1618 - components: - - flags: InContainer - type: MetaData - - parent: 1610 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1619 - components: - - flags: InContainer - type: MetaData - - parent: 1610 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MedkitToxinFilled - entities: - - uid: 1627 - components: - - flags: InContainer - type: MetaData - - parent: 1620 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1628 - components: - - flags: InContainer - type: MetaData - - parent: 1620 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1629 - components: - - flags: InContainer - type: MetaData - - parent: 1620 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: Mirror - entities: - - uid: 1641 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,21.5 - parent: 1 - type: Transform - - uid: 1642 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,17.5 - parent: 1 - type: Transform - - uid: 1643 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,19.5 - parent: 1 - type: Transform -- proto: MopBucket - entities: - - uid: 1644 - components: - - pos: 11.897524,3.7701359 - parent: 1 - type: Transform -- proto: Morgue - entities: - - uid: 1645 - components: - - pos: -9.5,-4.5 - parent: 1 - type: Transform - - uid: 1646 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-2.5 - parent: 1 - type: Transform - - uid: 1647 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-2.5 - parent: 1 - type: Transform - - uid: 1648 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-2.5 - parent: 1 - type: Transform - - uid: 1649 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-2.5 - parent: 1 - type: Transform - - uid: 1650 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-2.5 - parent: 1 - type: Transform - - uid: 1651 - components: - - pos: -5.5,-4.5 - parent: 1 - type: Transform - - uid: 1652 - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform - - uid: 1653 - components: - - pos: -6.5,-4.5 - parent: 1 - type: Transform - - uid: 1654 - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform -- proto: Multitool - entities: - - uid: 1655 - components: - - pos: -8.234255,1.2902579 - parent: 1 - type: Transform -- proto: NitrogenTankFilled - entities: - - uid: 12 - components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 716 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: NitrousOxideTankFilled - entities: - - uid: 1657 - components: - - pos: -15.231249,1.5843751 - parent: 1 - type: Transform -- proto: OperatingTable - entities: - - uid: 1658 - components: - - pos: -17.5,-0.5 - parent: 1 - type: Transform - - uid: 1659 - components: - - pos: -15.5,-0.5 - parent: 1 - type: Transform -- proto: OxygenCanister - entities: - - uid: 1660 - components: - - pos: 10.5,12.5 - parent: 1 - type: Transform -- proto: OxygenTankFilled - entities: - - uid: 717 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: PaperBin10 - entities: - - uid: 1661 - components: - - rot: 3.141592653589793 rad - pos: 13.351419,17.5873 - parent: 1 - type: Transform - - uid: 1662 - components: - - pos: -12.5,-4.5 - parent: 1 - type: Transform -- proto: Pen - entities: - - uid: 1663 - components: - - rot: -1.5707963267948966 rad - pos: -12.952744,-4.4131765 - parent: 1 - type: Transform -- proto: PinpointerUniversal - entities: - - uid: 718 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: PortableScrubber - entities: - - uid: 1664 - components: - - pos: -11.5,-2.5 - parent: 1 - type: Transform -- proto: PottedPlantBioluminscent - entities: - - uid: 1665 - components: - - pos: 6.5,28.5 - parent: 1 - type: Transform -- proto: PottedPlantRandom - entities: - - uid: 1666 - components: - - pos: 0.5,15.5 - parent: 1 - type: Transform - - uid: 1667 - components: - - pos: 13.5,14.5 - parent: 1 - type: Transform - - uid: 1668 - components: - - pos: -5.5,10.5 - parent: 1 - type: Transform - - uid: 1669 - components: - - pos: 8.5,2.5 - parent: 1 - type: Transform - - uid: 1671 - components: - - pos: 6.5,17.5 - parent: 1 - type: Transform -- proto: PottedPlantRandomPlastic - entities: - - uid: 1672 - components: - - pos: -17.5,5.5 - parent: 1 - type: Transform -- proto: PowerCellHyper - entities: - - uid: 1673 - components: - - pos: -13.68182,7.8899345 - parent: 1 - type: Transform - - uid: 1674 - components: - - pos: -13.384945,7.8899345 - parent: 1 - type: Transform - - uid: 1675 - components: - - pos: -16.730898,7.4061146 - parent: 1 - type: Transform - - uid: 1676 - components: - - pos: -16.590273,7.4061146 - parent: 1 - type: Transform - - uid: 1677 - components: - - pos: 12.288149,4.785761 - parent: 1 - type: Transform - - uid: 1678 - components: - - pos: 12.444399,4.785761 - parent: 1 - type: Transform - - uid: 2428 - components: - - pos: -13.384592,7.8890915 - parent: 1 - type: Transform - - uid: 2507 - components: - - pos: -13.384592,7.8890915 - parent: 1 - type: Transform - - uid: 2511 - components: - - pos: -13.681467,7.8890915 - parent: 1 - type: Transform - - uid: 2513 - components: - - pos: -13.665842,7.8890915 - parent: 1 - type: Transform -- proto: PowerCellRecharger - entities: - - uid: 1679 - components: - - pos: -12.5,7.5 - parent: 1 - type: Transform - - uid: 1680 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,7.5 - parent: 1 - type: Transform - - uid: 2424 - components: - - pos: 4.5,15.5 - parent: 1 - type: Transform -- proto: Poweredlight - entities: - - uid: 56 - components: - - pos: -5.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 57 - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 58 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1681 - components: - - pos: -22.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1682 - components: - - rot: 3.141592653589793 rad - pos: -19.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1683 - components: - - rot: 3.141592653589793 rad - pos: -22.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1684 - components: - - pos: -22.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1685 - components: - - pos: -19.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1686 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1687 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1688 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1689 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1690 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1691 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1692 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1693 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1694 - components: - - pos: -17.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1695 - components: - - pos: -10.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1696 - components: - - rot: 3.141592653589793 rad - pos: -10.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1697 - components: - - rot: 3.141592653589793 rad - pos: -17.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1698 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1699 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1700 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1701 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1702 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1703 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1704 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1705 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1706 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1707 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1708 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,17.5 - parent: 1 - type: Transform - - uid: 1709 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1710 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1711 - components: - - rot: 3.141592653589793 rad - pos: -12.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1712 - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1713 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1714 - components: - - pos: -8.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1715 - components: - - rot: 3.141592653589793 rad - pos: -8.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1716 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1717 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1718 - components: - - pos: -15.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1719 - components: - - pos: -17.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1720 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1721 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1722 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1723 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1724 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1725 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1726 - components: - - pos: 1.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1727 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,23.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1728 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1729 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1730 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1733 - components: - - rot: 3.141592653589793 rad - pos: -3.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1734 - components: - - rot: 3.141592653589793 rad - pos: -5.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1736 - components: - - rot: 3.141592653589793 rad - pos: 0.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1737 - components: - - rot: 3.141592653589793 rad - pos: -1.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1738 - components: - - pos: -1.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1739 - components: - - pos: 4.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1740 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,23.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1741 - components: - - pos: -0.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1742 - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1743 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1744 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1745 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1746 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1747 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1748 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1749 - components: - - rot: 3.141592653589793 rad - pos: 13.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1750 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,16.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1751 - components: - - rot: 3.141592653589793 rad - pos: 10.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1752 - components: - - rot: 3.141592653589793 rad - pos: 17.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1753 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,16.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1754 - components: - - pos: 10.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1755 - components: - - pos: 13.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1756 - components: - - pos: -0.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1757 - components: - - pos: 5.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1758 - components: - - rot: 3.141592653589793 rad - pos: 5.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1759 - components: - - rot: 3.141592653589793 rad - pos: 8.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1760 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1761 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1762 - components: - - rot: 3.141592653589793 rad - pos: 8.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1763 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1764 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1765 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1766 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1767 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1768 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1769 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,24.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1770 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,24.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1771 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1772 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1773 - components: - - pos: 2.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1774 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1775 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1776 - components: - - rot: 3.141592653589793 rad - pos: -5.5,10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1777 - components: - - pos: -1.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1778 - components: - - pos: -5.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1779 - components: - - pos: 5.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1780 - components: - - rot: 3.141592653589793 rad - pos: 5.5,10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1781 - components: - - rot: 3.141592653589793 rad - pos: 4.5,7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1782 - components: - - rot: 3.141592653589793 rad - pos: -1.5,7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1783 - components: - - pos: 14.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1784 - components: - - pos: 11.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1785 - components: - - rot: 3.141592653589793 rad - pos: 14.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1786 - components: - - rot: 3.141592653589793 rad - pos: 11.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1787 - components: - - pos: 11.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1788 - components: - - pos: 14.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1789 - components: - - rot: 3.141592653589793 rad - pos: 14.5,10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1790 - components: - - rot: 3.141592653589793 rad - pos: 11.5,10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1791 - components: - - pos: 11.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 1792 - components: - - rot: 3.141592653589793 rad - pos: 11.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 2416 - components: - - pos: 0.5,22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 2417 - components: - - pos: -1.5,22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 2418 - components: - - pos: -3.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 2419 - components: - - pos: -5.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 2439 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound -- proto: PoweredSmallLight - entities: - - uid: 1793 - components: - - pos: -8.5,9.5 - parent: 1 - type: Transform - - uid: 1794 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-0.5 - parent: 1 - type: Transform -- proto: Rack - entities: - - uid: 1580 - components: - - pos: 14.5,10.5 - parent: 1 - type: Transform - - uid: 1656 - components: - - pos: 11.5,10.5 - parent: 1 - type: Transform - - uid: 1795 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,7.5 - parent: 1 - type: Transform - - uid: 1796 - components: - - pos: 3.5,24.5 - parent: 1 - type: Transform - - uid: 1797 - components: - - pos: 14.5,8.5 - parent: 1 - type: Transform - - uid: 1798 - components: - - pos: 12.5,8.5 - parent: 1 - type: Transform - - uid: 1799 - components: - - pos: 13.5,8.5 - parent: 1 - type: Transform - - uid: 1800 - components: - - pos: 12.5,6.5 - parent: 1 - type: Transform - - uid: 1801 - components: - - pos: 13.5,6.5 - parent: 1 - type: Transform - - uid: 1802 - components: - - pos: 14.5,6.5 - parent: 1 - type: Transform - - uid: 1803 - components: - - rot: 3.141592653589793 rad - pos: 14.5,12.5 - parent: 1 - type: Transform - - uid: 1804 - components: - - rot: 3.141592653589793 rad - pos: 13.5,12.5 - parent: 1 - type: Transform - - uid: 1805 - components: - - rot: 3.141592653589793 rad - pos: 12.5,12.5 - parent: 1 - type: Transform - - uid: 1807 - components: - - rot: 3.141592653589793 rad - pos: 13.5,10.5 - parent: 1 - type: Transform - - uid: 1808 - components: - - rot: 3.141592653589793 rad - pos: 12.5,10.5 - parent: 1 - type: Transform - - uid: 1809 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-2.5 - parent: 1 - type: Transform -- proto: RandomFoodBakedSingle - entities: - - uid: 1810 - components: - - pos: 2.5,-0.5 - parent: 1 - type: Transform -- proto: RandomFoodBakedWhole - entities: - - uid: 1811 - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform -- proto: RandomFoodMeal - entities: - - uid: 1812 - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform - - uid: 1813 - components: - - pos: 1.5,-4.5 - parent: 1 - type: Transform -- proto: RandomFoodSingle - entities: - - uid: 1814 - components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform - - uid: 1815 - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform -- proto: RandomPosterLegit - entities: - - uid: 1816 - components: - - pos: 3.5,13.5 - parent: 1 - type: Transform - - uid: 1817 - components: - - pos: 5.5,6.5 - parent: 1 - type: Transform - - uid: 1818 - components: - - pos: -6.5,6.5 - parent: 1 - type: Transform - - uid: 1819 - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform - - uid: 1820 - components: - - pos: -23.5,0.5 - parent: 1 - type: Transform - - uid: 1821 - components: - - pos: -13.5,10.5 - parent: 1 - type: Transform - - uid: 1823 - components: - - pos: 17.5,14.5 - parent: 1 - type: Transform -- proto: RandomSoap - entities: - - uid: 1824 - components: - - pos: 2.5,23.5 - parent: 1 - type: Transform -- proto: RandomSpawner - entities: - - uid: 1825 - components: - - rot: 3.141592653589793 rad - pos: 6.5,2.5 - parent: 1 - type: Transform - - uid: 1826 - components: - - pos: -3.5,12.5 - parent: 1 - type: Transform - - uid: 1827 - components: - - pos: 8.5,13.5 - parent: 1 - type: Transform - - uid: 1828 - components: - - pos: 6.5,19.5 - parent: 1 - type: Transform - - uid: 1829 - components: - - pos: 8.5,33.5 - parent: 1 - type: Transform - - uid: 1830 - components: - - pos: -0.5,14.5 - parent: 1 - type: Transform - - uid: 1831 - components: - - pos: -10.5,12.5 - parent: 1 - type: Transform - - uid: 1832 - components: - - pos: -15.5,4.5 - parent: 1 - type: Transform -- proto: RandomVending - entities: - - uid: 1833 - components: - - pos: -10.5,5.5 - parent: 1 - type: Transform - - uid: 1834 - components: - - pos: -1.5,15.5 - parent: 1 - type: Transform - - uid: 1835 - components: - - pos: 10.5,14.5 - parent: 1 - type: Transform - - uid: 1836 - components: - - pos: -0.5,12.5 - parent: 1 - type: Transform - - uid: 1837 - components: - - pos: -0.5,3.5 - parent: 1 - type: Transform - - uid: 1838 - components: - - pos: 6.5,15.5 - parent: 1 - type: Transform -- proto: RCD - entities: - - uid: 633 - components: - - flags: InContainer - type: MetaData - - parent: 626 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 645 - components: - - flags: InContainer - type: MetaData - - parent: 638 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1839 - components: - - rot: -1.5707963267948966 rad - pos: -13.02557,7.5930595 - parent: 1 - type: Transform - - uid: 2481 - components: - - flags: InContainer - type: MetaData - - parent: 2470 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2493 - components: - - flags: InContainer - type: MetaData - - parent: 2482 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: RCDAmmo - entities: - - uid: 634 - components: - - flags: InContainer - type: MetaData - - parent: 626 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 635 - components: - - flags: InContainer - type: MetaData - - parent: 626 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 636 - components: - - flags: InContainer - type: MetaData - - parent: 626 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 646 - components: - - flags: InContainer - type: MetaData - - parent: 638 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 647 - components: - - flags: InContainer - type: MetaData - - parent: 638 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 648 - components: - - flags: InContainer - type: MetaData - - parent: 638 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1840 - components: - - rot: 1.5707963267948966 rad - pos: -12.36932,7.7961845 - parent: 1 - type: Transform - - uid: 1841 - components: - - rot: 1.5707963267948966 rad - pos: -12.36932,7.7961845 - parent: 1 - type: Transform - - uid: 1842 - components: - - rot: 1.5707963267948966 rad - pos: -12.36932,7.7961845 - parent: 1 - type: Transform - - uid: 1843 - components: - - rot: 1.5707963267948966 rad - pos: -12.36932,7.7961845 - parent: 1 - type: Transform - - uid: 1844 - components: - - rot: 1.5707963267948966 rad - pos: -12.36932,7.7961845 - parent: 1 - type: Transform - - uid: 2477 - components: - - flags: InContainer - type: MetaData - - parent: 2470 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2478 - components: - - flags: InContainer - type: MetaData - - parent: 2470 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2480 - components: - - flags: InContainer - type: MetaData - - parent: 2470 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2490 - components: - - flags: InContainer - type: MetaData - - parent: 2482 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2491 - components: - - flags: InContainer - type: MetaData - - parent: 2482 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2492 - components: - - flags: InContainer - type: MetaData - - parent: 2482 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ReinforcedPlasmaWindow - entities: - - uid: 1845 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,11.5 - parent: 1 - type: Transform - - uid: 1846 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,11.5 - parent: 1 - type: Transform -- proto: ReinforcedWindow - entities: - - uid: 1418 - components: - - pos: -1.5,23.5 - parent: 1 - type: Transform - - uid: 1847 - components: - - pos: -9.5,18.5 - parent: 1 - type: Transform - - uid: 1848 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,22.5 - parent: 1 - type: Transform - - uid: 1849 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,31.5 - parent: 1 - type: Transform - - uid: 1850 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,35.5 - parent: 1 - type: Transform - - uid: 1851 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 1 - type: Transform - - uid: 1852 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 1 - type: Transform - - uid: 1853 - components: - - rot: 3.141592653589793 rad - pos: -7.5,2.5 - parent: 1 - type: Transform - - uid: 1854 - components: - - rot: 3.141592653589793 rad - pos: -8.5,2.5 - parent: 1 - type: Transform - - uid: 1855 - components: - - rot: 3.141592653589793 rad - pos: -5.5,6.5 - parent: 1 - type: Transform - - uid: 1856 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-5.5 - parent: 1 - type: Transform - - uid: 1857 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-1.5 - parent: 1 - type: Transform - - uid: 1858 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 1 - type: Transform - - uid: 1859 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-1.5 - parent: 1 - type: Transform - - uid: 1860 - components: - - rot: 3.141592653589793 rad - pos: 13.5,18.5 - parent: 1 - type: Transform - - uid: 1861 - components: - - rot: 3.141592653589793 rad - pos: 12.5,18.5 - parent: 1 - type: Transform - - uid: 1862 - components: - - rot: 3.141592653589793 rad - pos: 11.5,18.5 - parent: 1 - type: Transform - - uid: 1863 - components: - - rot: 3.141592653589793 rad - pos: 10.5,18.5 - parent: 1 - type: Transform - - uid: 1864 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,4.5 - parent: 1 - type: Transform - - uid: 1865 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,33.5 - parent: 1 - type: Transform - - uid: 1866 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,32.5 - parent: 1 - type: Transform - - uid: 1867 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,28.5 - parent: 1 - type: Transform - - uid: 1868 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,27.5 - parent: 1 - type: Transform - - uid: 1869 - components: - - pos: -10.5,18.5 - parent: 1 - type: Transform - - uid: 1870 - components: - - pos: -12.5,16.5 - parent: 1 - type: Transform - - uid: 1873 - components: - - pos: 0.5,23.5 - parent: 1 - type: Transform - - uid: 1875 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,27.5 - parent: 1 - type: Transform - - uid: 1876 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,26.5 - parent: 1 - type: Transform - - uid: 1877 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,25.5 - parent: 1 - type: Transform - - uid: 1878 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,28.5 - parent: 1 - type: Transform - - uid: 1879 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 1 - type: Transform - - uid: 1880 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-5.5 - parent: 1 - type: Transform - - uid: 1881 - components: - - pos: 18.5,13.5 - parent: 1 - type: Transform - - uid: 1882 - components: - - pos: 18.5,12.5 - parent: 1 - type: Transform - - uid: 1883 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-5.5 - parent: 1 - type: Transform - - uid: 1884 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-5.5 - parent: 1 - type: Transform - - uid: 1885 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-5.5 - parent: 1 - type: Transform - - uid: 2142 - components: - - pos: -0.5,23.5 - parent: 1 - type: Transform -- proto: RiotBulletShield - entities: - - uid: 1886 - components: - - pos: 12.378235,6.6466303 - parent: 1 - type: Transform - - uid: 1887 - components: - - pos: 12.534485,6.6310053 - parent: 1 - type: Transform - - uid: 1888 - components: - - pos: 12.67511,6.6310053 - parent: 1 - type: Transform -- proto: RiotShield - entities: - - uid: 1889 - components: - - pos: 12.70636,6.4591303 - parent: 1 - type: Transform - - uid: 1890 - components: - - pos: 12.565735,6.4591303 - parent: 1 - type: Transform - - uid: 1891 - components: - - pos: 12.42511,6.4591303 - parent: 1 - type: Transform -- proto: RubberStampApproved - entities: - - uid: 1892 - components: - - pos: 13.757669,17.8373 - parent: 1 - type: Transform -- proto: RubberStampCentcom - entities: - - uid: 1893 - components: - - pos: 13.757669,17.540424 - parent: 1 - type: Transform -- proto: RubberStampDenied - entities: - - uid: 1894 - components: - - pos: 13.757669,17.7123 - parent: 1 - type: Transform -- proto: SheetGlass - entities: - - uid: 1895 - components: - - pos: -11.446348,7.5056324 - parent: 1 - type: Transform - - uid: 1896 - components: - - pos: -11.446348,7.5056324 - parent: 1 - type: Transform - - uid: 1897 - components: - - pos: -11.446348,7.5056324 - parent: 1 - type: Transform -- proto: SheetPlasma - entities: - - uid: 137 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 138 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 139 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 140 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 141 - components: - - flags: InContainer - type: MetaData - - parent: 122 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: SheetPlasteel - entities: - - uid: 1898 - components: - - pos: -11.470959,7.482976 - parent: 1 - type: Transform - - uid: 1899 - components: - - pos: -11.470959,7.482976 - parent: 1 - type: Transform - - uid: 1900 - components: - - pos: -11.470959,7.482976 - parent: 1 - type: Transform - - uid: 1901 - components: - - pos: -11.470959,7.482976 - parent: 1 - type: Transform - - uid: 1902 - components: - - pos: -11.470959,7.482976 - parent: 1 - type: Transform -- proto: SheetRGlass - entities: - - uid: 1903 - components: - - pos: -11.493223,7.4587574 - parent: 1 - type: Transform - - uid: 1904 - components: - - pos: -11.493223,7.4587574 - parent: 1 - type: Transform - - uid: 1905 - components: - - pos: -11.493223,7.4587574 - parent: 1 - type: Transform -- proto: SheetRPGlass - entities: - - uid: 1906 - components: - - pos: -11.477598,7.4431324 - parent: 1 - type: Transform - - uid: 1907 - components: - - pos: -11.477598,7.4431324 - parent: 1 - type: Transform - - uid: 1908 - components: - - pos: -11.477598,7.4431324 - parent: 1 - type: Transform -- proto: SheetSteel - entities: - - uid: 1909 - components: - - pos: -11.424084,7.498601 - parent: 1 - type: Transform - - uid: 1910 - components: - - pos: -11.424084,7.498601 - parent: 1 - type: Transform - - uid: 1911 - components: - - pos: -11.424084,7.498601 - parent: 1 - type: Transform - - uid: 1912 - components: - - pos: -11.424084,7.498601 - parent: 1 - type: Transform - - uid: 1913 - components: - - pos: -11.424084,7.498601 - parent: 1 - type: Transform -- proto: SignArmory - entities: - - uid: 1914 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,8.5 - parent: 1 - type: Transform -- proto: SignAtmos - entities: - - uid: 1915 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,8.5 - parent: 1 - type: Transform -- proto: SignBridge - entities: - - uid: 1916 - components: - - pos: 9.5,14.5 - parent: 1 - type: Transform -- proto: SignEngineering - entities: - - uid: 1917 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,12.5 - parent: 1 - type: Transform -- proto: SignEVA - entities: - - uid: 1918 - components: - - pos: 11.5,9.5 - parent: 1 - type: Transform -- proto: SignMedical - entities: - - uid: 1919 - components: - - pos: -1.5,5.5 - parent: 1 - type: Transform -- proto: SignMorgue - entities: - - uid: 1920 - components: - - pos: -12.5,-1.5 - parent: 1 - type: Transform -- proto: SignShipDock - entities: - - uid: 1921 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,16.5 - parent: 1 - type: Transform -- proto: SignSurgery - entities: - - uid: 1922 - components: - - pos: -15.5,2.5 - parent: 1 - type: Transform -- proto: SignVirology - entities: - - uid: 1923 - components: - - pos: -18.5,5.5 - parent: 1 - type: Transform -- proto: SinkWide - entities: - - uid: 1924 - components: - - pos: -17.5,1.5 - parent: 1 - type: Transform - - uid: 1925 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,17.5 - parent: 1 - type: Transform - - uid: 1926 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,21.5 - parent: 1 - type: Transform - - uid: 1927 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,19.5 - parent: 1 - type: Transform - - uid: 1928 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,3.5 - parent: 1 - type: Transform -- proto: SMESBasic - entities: - - uid: 1929 - components: - - pos: -11.5,11.5 - parent: 1 - type: Transform - - autoRechargeRate: 8000000 - autoRecharge: True - type: BatterySelfRecharger - - uid: 1930 - components: - - pos: -12.5,11.5 - parent: 1 - type: Transform - - autoRechargeRate: 8000000 - autoRecharge: True - type: BatterySelfRecharger - - uid: 1931 - components: - - pos: -13.5,11.5 - parent: 1 - type: Transform - - autoRechargeRate: 8000000 - autoRecharge: True - type: BatterySelfRecharger -- proto: SoapNT - entities: - - uid: 1932 - components: - - pos: 4.5256424,24.530594 - parent: 1 - type: Transform -- proto: SpawnMobCleanBot - entities: - - uid: 1933 - components: - - pos: 2.5,4.5 - parent: 1 - type: Transform - - uid: 1934 - components: - - pos: 7.5,24.5 - parent: 1 - type: Transform - - uid: 1935 - components: - - pos: 1.5,14.5 - parent: 1 - type: Transform -- proto: SpawnMobMedibot - entities: - - uid: 1936 - components: - - pos: -5.5,4.5 - parent: 1 - type: Transform -- proto: SpawnPointERTEventERTEngineerEVA - entities: - - uid: 2531 - components: - - pos: -9.5,17.5 - parent: 1 - type: Transform - - uid: 2532 - components: - - pos: -7.5,12.5 - parent: 1 - type: Transform - - uid: 2533 - components: - - pos: -11.5,9.5 - parent: 1 - type: Transform - - uid: 2534 - components: - - pos: -10.5,13.5 - parent: 1 - type: Transform -- proto: SpawnPointERTEventERTLeaderEVA - entities: - - uid: 2535 - components: - - pos: 1.5,10.5 - parent: 1 - type: Transform -- proto: SpawnPointERTEventERTMedicalEVA - entities: - - uid: 2527 - components: - - pos: -4.5,8.5 - parent: 1 - type: Transform - - uid: 2528 - components: - - pos: -2.5,0.5 - parent: 1 - type: Transform - - uid: 2529 - components: - - pos: -6.5,0.5 - parent: 1 - type: Transform - - uid: 2530 - components: - - pos: -12.5,4.5 - parent: 1 - type: Transform -- proto: SpawnPointERTEventERTSecurityEVA - entities: - - uid: 2523 - components: - - pos: 4.5,12.5 - parent: 1 - type: Transform - - uid: 2524 - components: - - pos: 3.5,12.5 - parent: 1 - type: Transform - - uid: 2525 - components: - - pos: -1.5,12.5 - parent: 1 - type: Transform - - uid: 2526 - components: - - pos: -2.5,12.5 - parent: 1 - type: Transform -- proto: SpawnVehicleJanicart - entities: - - uid: 1937 - components: - - rot: 3.141592653589793 rad - pos: 10.5,2.5 - parent: 1 - type: Transform -- proto: SprayBottleSpaceCleaner - entities: - - uid: 1938 - components: - - pos: 11.319399,4.723261 - parent: 1 - type: Transform - - uid: 1939 - components: - - pos: 11.506899,4.723261 - parent: 1 - type: Transform - - uid: 1940 - components: - - pos: 11.678774,4.707636 - parent: 1 - type: Transform - - uid: 1941 - components: - - pos: 11.678774,4.567011 - parent: 1 - type: Transform - - uid: 1942 - components: - - pos: 11.475649,4.567011 - parent: 1 - type: Transform - - uid: 1943 - components: - - pos: 11.335024,4.567011 - parent: 1 - type: Transform -- proto: StasisBed - entities: - - uid: 1944 - components: - - pos: -3.5,7.5 - parent: 1 - type: Transform -- proto: Stunbaton - entities: - - uid: 1945 - components: - - pos: 11.239096,8.59159 - parent: 1 - type: Transform - - uid: 1946 - components: - - pos: 11.239096,8.59159 - parent: 1 - type: Transform - - uid: 1947 - components: - - pos: 11.239096,8.59159 - parent: 1 - type: Transform - - uid: 1948 - components: - - pos: 11.239096,8.59159 - parent: 1 - type: Transform - - uid: 1949 - components: - - pos: 11.239096,8.59159 - parent: 1 - type: Transform - - uid: 1982 - components: - - pos: 11.239096,8.59159 - parent: 1 - type: Transform -- proto: SubstationBasic - entities: - - uid: 1951 - components: - - pos: -8.5,9.5 - parent: 1 - type: Transform - - uid: 1952 - components: - - pos: -7.5,13.5 - parent: 1 - type: Transform - - uid: 1953 - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 1954 - components: - - pos: 17.5,17.5 - parent: 1 - type: Transform -- proto: SyringeBluespace - entities: - - uid: 216 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 217 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 218 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 219 - components: - - flags: InContainer - type: MetaData - - parent: 184 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: TableReinforced - entities: - - uid: 603 - components: - - pos: 3.5,15.5 - parent: 1 - type: Transform - - uid: 604 - components: - - pos: 4.5,15.5 - parent: 1 - type: Transform - - uid: 1955 - components: - - rot: 3.141592653589793 rad - pos: -4.5,2.5 - parent: 1 - type: Transform - - uid: 1956 - components: - - pos: -2.5,5.5 - parent: 1 - type: Transform - - uid: 1957 - components: - - pos: -3.5,5.5 - parent: 1 - type: Transform - - uid: 1958 - components: - - pos: -15.5,1.5 - parent: 1 - type: Transform - - uid: 1959 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,8.5 - parent: 1 - type: Transform - - uid: 1960 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,7.5 - parent: 1 - type: Transform - - uid: 1961 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,7.5 - parent: 1 - type: Transform - - uid: 1962 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,7.5 - parent: 1 - type: Transform - - uid: 1963 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,7.5 - parent: 1 - type: Transform - - uid: 1964 - components: - - pos: -0.5,0.5 - parent: 1 - type: Transform - - uid: 1965 - components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform - - uid: 1966 - components: - - pos: 0.5,-0.5 - parent: 1 - type: Transform - - uid: 1967 - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform - - uid: 1968 - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform - - uid: 1969 - components: - - pos: 2.5,-0.5 - parent: 1 - type: Transform - - uid: 1970 - components: - - pos: 1.5,-4.5 - parent: 1 - type: Transform - - uid: 1971 - components: - - pos: 0.5,-4.5 - parent: 1 - type: Transform - - uid: 1972 - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform - - uid: 1973 - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform - - uid: 1974 - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform - - uid: 1975 - components: - - pos: -3.5,-4.5 - parent: 1 - type: Transform - - uid: 1976 - components: - - pos: -2.5,-4.5 - parent: 1 - type: Transform - - uid: 1977 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,17.5 - parent: 1 - type: Transform - - uid: 1978 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,17.5 - parent: 1 - type: Transform - - uid: 1979 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,14.5 - parent: 1 - type: Transform - - uid: 1980 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,14.5 - parent: 1 - type: Transform - - uid: 1981 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,8.5 - parent: 1 - type: Transform - - uid: 1983 - components: - - rot: 3.141592653589793 rad - pos: 12.5,4.5 - parent: 1 - type: Transform - - uid: 1984 - components: - - rot: 3.141592653589793 rad - pos: 11.5,4.5 - parent: 1 - type: Transform - - uid: 1985 - components: - - pos: -12.5,-4.5 - parent: 1 - type: Transform - - uid: 1986 - components: - - pos: -13.5,-4.5 - parent: 1 - type: Transform - - uid: 1987 - components: - - pos: -13.5,-3.5 - parent: 1 - type: Transform -- proto: TableReinforcedGlass - entities: - - uid: 1988 - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform - - uid: 1989 - components: - - pos: -4.5,0.5 - parent: 1 - type: Transform - - uid: 1990 - components: - - pos: -22.5,4.5 - parent: 1 - type: Transform - - uid: 1991 - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform - - uid: 1992 - components: - - pos: -20.5,5.5 - parent: 1 - type: Transform -- proto: TelecomServerFilled - entities: - - uid: 1993 - components: - - pos: 15.5,17.5 - parent: 1 - type: Transform - - uid: 1994 - components: - - pos: 15.5,16.5 - parent: 1 - type: Transform -- proto: ToiletEmpty - entities: - - uid: 1995 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,19.5 - parent: 1 - type: Transform - - uid: 1996 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,17.5 - parent: 1 - type: Transform - - uid: 1997 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,21.5 - parent: 1 - type: Transform -- proto: ToyFigurineMedicalDoctor - entities: - - uid: 1998 - components: - - pos: -12.694241,5.5293202 - parent: 1 - type: Transform -- proto: ToyRubberDuck - entities: - - uid: 1999 - components: - - pos: 2.4475174,24.655594 - parent: 1 - type: Transform -- proto: Truncheon - entities: - - uid: 144 - components: - - pos: 11.332846,8.513465 - parent: 1 - type: Transform - - uid: 145 - components: - - pos: 11.332846,8.513465 - parent: 1 - type: Transform - - uid: 1950 - components: - - pos: 11.332846,8.513465 - parent: 1 - type: Transform - - uid: 2000 - components: - - pos: 11.332846,8.513465 - parent: 1 - type: Transform - - uid: 2001 - components: - - pos: 11.332846,8.513465 - parent: 1 - type: Transform - - uid: 2002 - components: - - pos: 11.332846,8.513465 - parent: 1 - type: Transform -- proto: Vaccinator - entities: - - uid: 2003 - components: - - pos: -22.5,5.5 - parent: 1 - type: Transform -- proto: VehicleKeyJanicart - entities: - - uid: 2004 - components: - - pos: 12.515272,4.554459 - parent: 1 - type: Transform -- proto: VendingMachineAmmo - entities: - - uid: 151 - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,6.5 - parent: 1 - type: Transform -- proto: VendingMachineClothing - entities: - - uid: 2005 - components: - - flags: SessionSpecific - type: MetaData - - pos: -5.5,14.5 - parent: 1 - type: Transform -- proto: VendingMachineCoffee - entities: - - uid: 2006 - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,-2.5 - parent: 1 - type: Transform -- proto: VendingMachineCondiments - entities: - - uid: 2007 - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,0.5 - parent: 1 - type: Transform - - uid: 2008 - components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,-4.5 - parent: 1 - type: Transform -- proto: VendingMachineEngivend - entities: - - uid: 756 - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,16.5 - parent: 1 - type: Transform -- proto: VendingMachineMedical - entities: - - uid: 2009 - components: - - flags: SessionSpecific - type: MetaData - - pos: -7.5,6.5 - parent: 1 - type: Transform -- proto: VendingMachineSec - entities: - - uid: 2010 - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.5,6.5 - parent: 1 - type: Transform -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 2011 - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.5,12.5 - parent: 1 - type: Transform -- proto: VendingMachineWallMedical - entities: - - uid: 2012 - components: - - flags: SessionSpecific - type: MetaData - - pos: -4.5,9.5 - parent: 1 - type: Transform -- proto: VendingMachineYouTool - entities: - - uid: 754 - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,17.5 - parent: 1 - type: Transform -- proto: VirusologHampter - entities: - - uid: 2013 - components: - - pos: -19.93943,5.556874 - parent: 1 - type: Transform -- proto: WallReinforced - entities: - - uid: 1463 - components: - - pos: -2.5,22.5 - parent: 1 - type: Transform - - uid: 1567 - components: - - pos: -2.5,21.5 - parent: 1 - type: Transform - - uid: 2014 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 1 - type: Transform - - uid: 2015 - components: - - pos: -14.5,-3.5 - parent: 1 - type: Transform - - uid: 2016 - components: - - pos: -14.5,-2.5 - parent: 1 - type: Transform - - uid: 2017 - components: - - pos: -10.5,-5.5 - parent: 1 - type: Transform - - uid: 2018 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,0.5 - parent: 1 - type: Transform - - uid: 2019 - components: - - rot: 3.141592653589793 rad - pos: -12.5,14.5 - parent: 1 - type: Transform - - uid: 2020 - components: - - rot: 3.141592653589793 rad - pos: -14.5,14.5 - parent: 1 - type: Transform - - uid: 2021 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,13.5 - parent: 1 - type: Transform - - uid: 2022 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,9.5 - parent: 1 - type: Transform - - uid: 2023 - components: - - pos: -14.5,10.5 - parent: 1 - type: Transform - - uid: 2024 - components: - - rot: 3.141592653589793 rad - pos: -11.5,14.5 - parent: 1 - type: Transform - - uid: 2025 - components: - - pos: -12.5,17.5 - parent: 1 - type: Transform - - uid: 2026 - components: - - rot: 3.141592653589793 rad - pos: -13.5,14.5 - parent: 1 - type: Transform - - uid: 2027 - components: - - rot: 3.141592653589793 rad - pos: -8.5,14.5 - parent: 1 - type: Transform - - uid: 2028 - components: - - rot: 3.141592653589793 rad - pos: -7.5,14.5 - parent: 1 - type: Transform - - uid: 2029 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,13.5 - parent: 1 - type: Transform - - uid: 2030 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,8.5 - parent: 1 - type: Transform - - uid: 2031 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,6.5 - parent: 1 - type: Transform - - uid: 2032 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,14.5 - parent: 1 - type: Transform - - uid: 2033 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,14.5 - parent: 1 - type: Transform - - uid: 2034 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,13.5 - parent: 1 - type: Transform - - uid: 2035 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,12.5 - parent: 1 - type: Transform - - uid: 2036 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,6.5 - parent: 1 - type: Transform - - uid: 2037 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,6.5 - parent: 1 - type: Transform - - uid: 2038 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,6.5 - parent: 1 - type: Transform - - uid: 2039 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,7.5 - parent: 1 - type: Transform - - uid: 2040 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,10.5 - parent: 1 - type: Transform - - uid: 2041 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,10.5 - parent: 1 - type: Transform - - uid: 2042 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,10.5 - parent: 1 - type: Transform - - uid: 2043 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,13.5 - parent: 1 - type: Transform - - uid: 2044 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,14.5 - parent: 1 - type: Transform - - uid: 2045 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,10.5 - parent: 1 - type: Transform - - uid: 2046 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,6.5 - parent: 1 - type: Transform - - uid: 2047 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,9.5 - parent: 1 - type: Transform - - uid: 2048 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,12.5 - parent: 1 - type: Transform - - uid: 2049 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,12.5 - parent: 1 - type: Transform - - uid: 2050 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,12.5 - parent: 1 - type: Transform - - uid: 2051 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,9.5 - parent: 1 - type: Transform - - uid: 2052 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,8.5 - parent: 1 - type: Transform - - uid: 2053 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,7.5 - parent: 1 - type: Transform - - uid: 2054 - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform - - uid: 2055 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,11.5 - parent: 1 - type: Transform - - uid: 2056 - components: - - pos: -14.5,-0.5 - parent: 1 - type: Transform - - uid: 2057 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,11.5 - parent: 1 - type: Transform - - uid: 2058 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,10.5 - parent: 1 - type: Transform - - uid: 2059 - components: - - pos: 3.5,-2.5 - parent: 1 - type: Transform - - uid: 2060 - components: - - pos: -18.5,6.5 - parent: 1 - type: Transform - - uid: 2061 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,6.5 - parent: 1 - type: Transform - - uid: 2062 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,6.5 - parent: 1 - type: Transform - - uid: 2063 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,6.5 - parent: 1 - type: Transform - - uid: 2064 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,6.5 - parent: 1 - type: Transform - - uid: 2065 - components: - - pos: -14.5,7.5 - parent: 1 - type: Transform - - uid: 2066 - components: - - pos: -21.5,6.5 - parent: 1 - type: Transform - - uid: 2067 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,2.5 - parent: 1 - type: Transform - - uid: 2068 - components: - - pos: -14.5,0.5 - parent: 1 - type: Transform - - uid: 2069 - components: - - pos: -14.5,1.5 - parent: 1 - type: Transform - - uid: 2070 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,1.5 - parent: 1 - type: Transform - - uid: 2071 - components: - - pos: -9.5,-1.5 - parent: 1 - type: Transform - - uid: 2072 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-1.5 - parent: 1 - type: Transform - - uid: 2073 - components: - - rot: 3.141592653589793 rad - pos: 5.5,17.5 - parent: 1 - type: Transform - - uid: 2074 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 1 - type: Transform - - uid: 2075 - components: - - pos: 18.5,15.5 - parent: 1 - type: Transform - - uid: 2076 - components: - - rot: 3.141592653589793 rad - pos: -16.5,11.5 - parent: 1 - type: Transform - - uid: 2077 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-1.5 - parent: 1 - type: Transform - - uid: 2078 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-1.5 - parent: 1 - type: Transform - - uid: 2079 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-1.5 - parent: 1 - type: Transform - - uid: 2080 - components: - - pos: -1.5,3.5 - parent: 1 - type: Transform - - uid: 2081 - components: - - pos: -1.5,2.5 - parent: 1 - type: Transform - - uid: 2082 - components: - - pos: -1.5,0.5 - parent: 1 - type: Transform - - uid: 2083 - components: - - pos: -1.5,1.5 - parent: 1 - type: Transform - - uid: 2084 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 1 - type: Transform - - uid: 2085 - components: - - pos: -2.5,18.5 - parent: 1 - type: Transform - - uid: 2086 - components: - - pos: -6.5,16.5 - parent: 1 - type: Transform - - uid: 2087 - components: - - pos: -2.5,16.5 - parent: 1 - type: Transform - - uid: 2089 - components: - - pos: -10.5,2.5 - parent: 1 - type: Transform - - uid: 2090 - components: - - pos: -5.5,13.5 - parent: 1 - type: Transform - - uid: 2091 - components: - - pos: -1.5,-0.5 - parent: 1 - type: Transform - - uid: 2092 - components: - - pos: -6.5,18.5 - parent: 1 - type: Transform - - uid: 2093 - components: - - pos: -6.5,17.5 - parent: 1 - type: Transform - - uid: 2094 - components: - - pos: -1.5,5.5 - parent: 1 - type: Transform - - uid: 2095 - components: - - pos: -1.5,6.5 - parent: 1 - type: Transform - - uid: 2096 - components: - - pos: -1.5,-1.5 - parent: 1 - type: Transform - - uid: 2097 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,2.5 - parent: 1 - type: Transform - - uid: 2098 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,5.5 - parent: 1 - type: Transform - - uid: 2099 - components: - - pos: -3.5,9.5 - parent: 1 - type: Transform - - uid: 2100 - components: - - pos: -2.5,7.5 - parent: 1 - type: Transform - - uid: 2101 - components: - - pos: -2.5,8.5 - parent: 1 - type: Transform - - uid: 2102 - components: - - pos: -5.5,9.5 - parent: 1 - type: Transform - - uid: 2103 - components: - - pos: -4.5,9.5 - parent: 1 - type: Transform - - uid: 2104 - components: - - pos: -2.5,9.5 - parent: 1 - type: Transform - - uid: 2105 - components: - - pos: -2.5,19.5 - parent: 1 - type: Transform - - uid: 2106 - components: - - pos: 5.5,25.5 - parent: 1 - type: Transform - - uid: 2107 - components: - - pos: 5.5,23.5 - parent: 1 - type: Transform - - uid: 2108 - components: - - pos: 5.5,24.5 - parent: 1 - type: Transform - - uid: 2109 - components: - - pos: 4.5,6.5 - parent: 1 - type: Transform - - uid: 2110 - components: - - pos: 5.5,21.5 - parent: 1 - type: Transform - - uid: 2111 - components: - - pos: -12.5,15.5 - parent: 1 - type: Transform - - uid: 2112 - components: - - pos: 5.5,20.5 - parent: 1 - type: Transform - - uid: 2113 - components: - - pos: 5.5,31.5 - parent: 1 - type: Transform - - uid: 2114 - components: - - pos: 5.5,30.5 - parent: 1 - type: Transform - - uid: 2115 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,24.5 - parent: 1 - type: Transform - - uid: 2116 - components: - - pos: 5.5,29.5 - parent: 1 - type: Transform - - uid: 2117 - components: - - rot: 3.141592653589793 rad - pos: 4.5,16.5 - parent: 1 - type: Transform - - uid: 2118 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,20.5 - parent: 1 - type: Transform - - uid: 2119 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,29.5 - parent: 1 - type: Transform - - uid: 2120 - components: - - pos: 5.5,22.5 - parent: 1 - type: Transform - - uid: 2121 - components: - - rot: 3.141592653589793 rad - pos: 3.5,16.5 - parent: 1 - type: Transform - - uid: 2122 - components: - - pos: -6.5,15.5 - parent: 1 - type: Transform - - uid: 2123 - components: - - pos: -6.5,14.5 - parent: 1 - type: Transform - - uid: 2124 - components: - - pos: -2.5,15.5 - parent: 1 - type: Transform - - uid: 2125 - components: - - pos: -4.5,13.5 - parent: 1 - type: Transform - - uid: 2126 - components: - - pos: -3.5,13.5 - parent: 1 - type: Transform - - uid: 2127 - components: - - pos: -2.5,17.5 - parent: 1 - type: Transform - - uid: 2128 - components: - - pos: 2.5,13.5 - parent: 1 - type: Transform - - uid: 2129 - components: - - pos: 1.5,13.5 - parent: 1 - type: Transform - - uid: 2130 - components: - - pos: -0.5,13.5 - parent: 1 - type: Transform - - uid: 2131 - components: - - pos: -1.5,13.5 - parent: 1 - type: Transform - - uid: 2132 - components: - - pos: -2.5,13.5 - parent: 1 - type: Transform - - uid: 2133 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,33.5 - parent: 1 - type: Transform - - uid: 2134 - components: - - pos: 0.5,13.5 - parent: 1 - type: Transform - - uid: 2135 - components: - - pos: 4.5,25.5 - parent: 1 - type: Transform - - uid: 2136 - components: - - pos: -2.5,20.5 - parent: 1 - type: Transform - - uid: 2137 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,16.5 - parent: 1 - type: Transform - - uid: 2138 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,16.5 - parent: 1 - type: Transform - - uid: 2139 - components: - - pos: 5.5,16.5 - parent: 1 - type: Transform - - uid: 2140 - components: - - rot: 3.141592653589793 rad - pos: 5.5,19.5 - parent: 1 - type: Transform - - uid: 2141 - components: - - rot: 3.141592653589793 rad - pos: 5.5,18.5 - parent: 1 - type: Transform - - uid: 2143 - components: - - pos: 1.5,21.5 - parent: 1 - type: Transform - - uid: 2144 - components: - - pos: 1.5,24.5 - parent: 1 - type: Transform - - uid: 2145 - components: - - pos: 3.5,25.5 - parent: 1 - type: Transform - - uid: 2146 - components: - - pos: 2.5,25.5 - parent: 1 - type: Transform - - uid: 2147 - components: - - pos: 3.5,13.5 - parent: 1 - type: Transform - - uid: 2148 - components: - - pos: 4.5,13.5 - parent: 1 - type: Transform - - uid: 2149 - components: - - pos: 5.5,13.5 - parent: 1 - type: Transform - - uid: 2150 - components: - - pos: 5.5,15.5 - parent: 1 - type: Transform - - uid: 2151 - components: - - pos: 1.5,16.5 - parent: 1 - type: Transform - - uid: 2152 - components: - - pos: -1.5,16.5 - parent: 1 - type: Transform - - uid: 2153 - components: - - pos: 1.5,18.5 - parent: 1 - type: Transform - - uid: 2154 - components: - - pos: 1.5,19.5 - parent: 1 - type: Transform - - uid: 2155 - components: - - pos: 1.5,20.5 - parent: 1 - type: Transform - - uid: 2156 - components: - - pos: 1.5,17.5 - parent: 1 - type: Transform - - uid: 2157 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,16.5 - parent: 1 - type: Transform - - uid: 2158 - components: - - rot: 3.141592653589793 rad - pos: 3.5,18.5 - parent: 1 - type: Transform - - uid: 2159 - components: - - rot: 3.141592653589793 rad - pos: 4.5,18.5 - parent: 1 - type: Transform - - uid: 2160 - components: - - rot: 3.141592653589793 rad - pos: 4.5,20.5 - parent: 1 - type: Transform - - uid: 2161 - components: - - rot: 3.141592653589793 rad - pos: 3.5,20.5 - parent: 1 - type: Transform - - uid: 2162 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,34.5 - parent: 1 - type: Transform - - uid: 2163 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,26.5 - parent: 1 - type: Transform - - uid: 2164 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,34.5 - parent: 1 - type: Transform - - uid: 2165 - components: - - pos: 17.5,11.5 - parent: 1 - type: Transform - - uid: 2166 - components: - - pos: 1.5,23.5 - parent: 1 - type: Transform - - uid: 2167 - components: - - pos: 1.5,22.5 - parent: 1 - type: Transform - - uid: 2168 - components: - - pos: 4.5,22.5 - parent: 1 - type: Transform - - uid: 2169 - components: - - pos: 3.5,22.5 - parent: 1 - type: Transform - - uid: 2170 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,4.5 - parent: 1 - type: Transform - - uid: 2171 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,3.5 - parent: 1 - type: Transform - - uid: 2172 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,2.5 - parent: 1 - type: Transform - - uid: 2173 - components: - - pos: 12.5,5.5 - parent: 1 - type: Transform - - uid: 2174 - components: - - rot: 3.141592653589793 rad - pos: 10.5,1.5 - parent: 1 - type: Transform - - uid: 2175 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,13.5 - parent: 1 - type: Transform - - uid: 2176 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,13.5 - parent: 1 - type: Transform - - uid: 2177 - components: - - rot: 3.141592653589793 rad - pos: -13.5,10.5 - parent: 1 - type: Transform - - uid: 2178 - components: - - rot: 3.141592653589793 rad - pos: 9.5,1.5 - parent: 1 - type: Transform - - uid: 2179 - components: - - rot: 3.141592653589793 rad - pos: 5.5,1.5 - parent: 1 - type: Transform - - uid: 2180 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 1 - type: Transform - - uid: 2181 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-1.5 - parent: 1 - type: Transform - - uid: 2182 - components: - - rot: 3.141592653589793 rad - pos: 5.5,0.5 - parent: 1 - type: Transform - - uid: 2183 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-1.5 - parent: 1 - type: Transform - - uid: 2184 - components: - - pos: 5.5,6.5 - parent: 1 - type: Transform - - uid: 2185 - components: - - pos: 5.5,7.5 - parent: 1 - type: Transform - - uid: 2186 - components: - - pos: 3.5,6.5 - parent: 1 - type: Transform - - uid: 2187 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,2.5 - parent: 1 - type: Transform - - uid: 2188 - components: - - pos: 2.5,6.5 - parent: 1 - type: Transform - - uid: 2189 - components: - - pos: 5.5,8.5 - parent: 1 - type: Transform - - uid: 2190 - components: - - pos: 1.5,6.5 - parent: 1 - type: Transform - - uid: 2191 - components: - - pos: 5.5,9.5 - parent: 1 - type: Transform - - uid: 2192 - components: - - pos: 0.5,6.5 - parent: 1 - type: Transform - - uid: 2193 - components: - - pos: 9.5,14.5 - parent: 1 - type: Transform - - uid: 2194 - components: - - pos: 9.5,17.5 - parent: 1 - type: Transform - - uid: 2195 - components: - - pos: 9.5,19.5 - parent: 1 - type: Transform - - uid: 2196 - components: - - pos: 9.5,13.5 - parent: 1 - type: Transform - - uid: 2197 - components: - - pos: -0.5,6.5 - parent: 1 - type: Transform - - uid: 2198 - components: - - pos: 9.5,12.5 - parent: 1 - type: Transform - - uid: 2199 - components: - - pos: 9.5,11.5 - parent: 1 - type: Transform - - uid: 2200 - components: - - pos: 9.5,16.5 - parent: 1 - type: Transform - - uid: 2201 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,13.5 - parent: 1 - type: Transform - - uid: 2202 - components: - - pos: 9.5,10.5 - parent: 1 - type: Transform - - uid: 2203 - components: - - pos: 9.5,18.5 - parent: 1 - type: Transform - - uid: 2204 - components: - - pos: 9.5,5.5 - parent: 1 - type: Transform - - uid: 2205 - components: - - pos: 11.5,5.5 - parent: 1 - type: Transform - - uid: 2206 - components: - - pos: 10.5,5.5 - parent: 1 - type: Transform - - uid: 2207 - components: - - pos: -4.5,-3.5 - parent: 1 - type: Transform - - uid: 2208 - components: - - rot: 3.141592653589793 rad - pos: 12.5,1.5 - parent: 1 - type: Transform - - uid: 2209 - components: - - pos: -4.5,-2.5 - parent: 1 - type: Transform - - uid: 2210 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-1.5 - parent: 1 - type: Transform - - uid: 2211 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-1.5 - parent: 1 - type: Transform - - uid: 2212 - components: - - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 1 - type: Transform - - uid: 2213 - components: - - rot: 3.141592653589793 rad - pos: 11.5,1.5 - parent: 1 - type: Transform - - uid: 2214 - components: - - rot: 3.141592653589793 rad - pos: 7.5,1.5 - parent: 1 - type: Transform - - uid: 2215 - components: - - rot: 3.141592653589793 rad - pos: 8.5,1.5 - parent: 1 - type: Transform - - uid: 2216 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,8.5 - parent: 1 - type: Transform - - uid: 2217 - components: - - rot: 3.141592653589793 rad - pos: -12.5,10.5 - parent: 1 - type: Transform - - uid: 2218 - components: - - rot: 3.141592653589793 rad - pos: -11.5,10.5 - parent: 1 - type: Transform - - uid: 2219 - components: - - pos: 3.5,-0.5 - parent: 1 - type: Transform - - uid: 2220 - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform - - uid: 2221 - components: - - pos: 9.5,4.5 - parent: 1 - type: Transform - - uid: 2222 - components: - - pos: 3.5,1.5 - parent: 1 - type: Transform - - uid: 2223 - components: - - pos: 9.5,2.5 - parent: 1 - type: Transform - - uid: 2224 - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform - - uid: 2225 - components: - - pos: -0.5,2.5 - parent: 1 - type: Transform - - uid: 2226 - components: - - pos: 0.5,2.5 - parent: 1 - type: Transform - - uid: 2227 - components: - - pos: 2.5,2.5 - parent: 1 - type: Transform - - uid: 2228 - components: - - pos: -1.5,-5.5 - parent: 1 - type: Transform - - uid: 2229 - components: - - pos: 2.5,-5.5 - parent: 1 - type: Transform - - uid: 2230 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,13.5 - parent: 1 - type: Transform - - uid: 2231 - components: - - pos: 3.5,-4.5 - parent: 1 - type: Transform - - uid: 2232 - components: - - pos: 3.5,-3.5 - parent: 1 - type: Transform - - uid: 2233 - components: - - pos: -0.5,-5.5 - parent: 1 - type: Transform - - uid: 2234 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,13.5 - parent: 1 - type: Transform - - uid: 2235 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,12.5 - parent: 1 - type: Transform - - uid: 2236 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,10.5 - parent: 1 - type: Transform - - uid: 2237 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,7.5 - parent: 1 - type: Transform - - uid: 2238 - components: - - rot: 3.141592653589793 rad - pos: 14.5,5.5 - parent: 1 - type: Transform - - uid: 2239 - components: - - rot: 3.141592653589793 rad - pos: 15.5,6.5 - parent: 1 - type: Transform - - uid: 2240 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,5.5 - parent: 1 - type: Transform - - uid: 2241 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,8.5 - parent: 1 - type: Transform - - uid: 2242 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,9.5 - parent: 1 - type: Transform - - uid: 2243 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,11.5 - parent: 1 - type: Transform - - uid: 2244 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,9.5 - parent: 1 - type: Transform - - uid: 2245 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,6.5 - parent: 1 - type: Transform - - uid: 2246 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,8.5 - parent: 1 - type: Transform - - uid: 2247 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,9.5 - parent: 1 - type: Transform - - uid: 2248 - components: - - rot: 3.141592653589793 rad - pos: 14.5,9.5 - parent: 1 - type: Transform - - uid: 2249 - components: - - rot: 3.141592653589793 rad - pos: 13.5,9.5 - parent: 1 - type: Transform - - uid: 2250 - components: - - rot: 3.141592653589793 rad - pos: 12.5,9.5 - parent: 1 - type: Transform - - uid: 2251 - components: - - rot: 3.141592653589793 rad - pos: -6.5,8.5 - parent: 1 - type: Transform - - uid: 2252 - components: - - rot: 3.141592653589793 rad - pos: -6.5,7.5 - parent: 1 - type: Transform - - uid: 2253 - components: - - rot: 3.141592653589793 rad - pos: -6.5,6.5 - parent: 1 - type: Transform - - uid: 2254 - components: - - rot: 3.141592653589793 rad - pos: -2.5,6.5 - parent: 1 - type: Transform - - uid: 2255 - components: - - rot: 3.141592653589793 rad - pos: -3.5,6.5 - parent: 1 - type: Transform - - uid: 2256 - components: - - rot: 3.141592653589793 rad - pos: -7.5,7.5 - parent: 1 - type: Transform - - uid: 2257 - components: - - rot: 3.141592653589793 rad - pos: -5.5,1.5 - parent: 1 - type: Transform - - uid: 2258 - components: - - rot: 3.141592653589793 rad - pos: -3.5,2.5 - parent: 1 - type: Transform - - uid: 2259 - components: - - rot: 3.141592653589793 rad - pos: -5.5,0.5 - parent: 1 - type: Transform - - uid: 2260 - components: - - rot: 3.141592653589793 rad - pos: -5.5,2.5 - parent: 1 - type: Transform - - uid: 2261 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-0.5 - parent: 1 - type: Transform - - uid: 2262 - components: - - pos: -12.5,2.5 - parent: 1 - type: Transform - - uid: 2263 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-1.5 - parent: 1 - type: Transform - - uid: 2264 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-5.5 - parent: 1 - type: Transform - - uid: 2265 - components: - - pos: -14.5,-4.5 - parent: 1 - type: Transform - - uid: 2266 - components: - - pos: -22.5,6.5 - parent: 1 - type: Transform - - uid: 2267 - components: - - pos: -20.5,6.5 - parent: 1 - type: Transform - - uid: 2268 - components: - - pos: -23.5,2.5 - parent: 1 - type: Transform - - uid: 2269 - components: - - pos: -23.5,1.5 - parent: 1 - type: Transform - - uid: 2270 - components: - - pos: -23.5,3.5 - parent: 1 - type: Transform - - uid: 2271 - components: - - pos: -23.5,5.5 - parent: 1 - type: Transform - - uid: 2272 - components: - - pos: -19.5,6.5 - parent: 1 - type: Transform - - uid: 2273 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-1.5 - parent: 1 - type: Transform - - uid: 2274 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,0.5 - parent: 1 - type: Transform - - uid: 2275 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 1 - type: Transform - - uid: 2276 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-1.5 - parent: 1 - type: Transform - - uid: 2277 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-1.5 - parent: 1 - type: Transform - - uid: 2278 - components: - - pos: -18.5,0.5 - parent: 1 - type: Transform - - uid: 2279 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,2.5 - parent: 1 - type: Transform - - uid: 2280 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,18.5 - parent: 1 - type: Transform - - uid: 2281 - components: - - pos: 18.5,17.5 - parent: 1 - type: Transform - - uid: 2282 - components: - - pos: 16.5,18.5 - parent: 1 - type: Transform - - uid: 2283 - components: - - pos: 17.5,18.5 - parent: 1 - type: Transform - - uid: 2284 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,13.5 - parent: 1 - type: Transform - - uid: 2285 - components: - - pos: 15.5,18.5 - parent: 1 - type: Transform - - uid: 2286 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-1.5 - parent: 1 - type: Transform - - uid: 2287 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-0.5 - parent: 1 - type: Transform - - uid: 2288 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-1.5 - parent: 1 - type: Transform - - uid: 2289 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,1.5 - parent: 1 - type: Transform - - uid: 2290 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,2.5 - parent: 1 - type: Transform - - uid: 2291 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,3.5 - parent: 1 - type: Transform - - uid: 2292 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,5.5 - parent: 1 - type: Transform - - uid: 2293 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,2.5 - parent: 1 - type: Transform - - uid: 2294 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,2.5 - parent: 1 - type: Transform - - uid: 2295 - components: - - pos: 16.5,11.5 - parent: 1 - type: Transform - - uid: 2296 - components: - - pos: 18.5,16.5 - parent: 1 - type: Transform - - uid: 2297 - components: - - pos: 18.5,14.5 - parent: 1 - type: Transform - - uid: 2298 - components: - - pos: 15.5,14.5 - parent: 1 - type: Transform - - uid: 2299 - components: - - rot: 3.141592653589793 rad - pos: 14.5,14.5 - parent: 1 - type: Transform - - uid: 2300 - components: - - rot: 3.141592653589793 rad - pos: 14.5,17.5 - parent: 1 - type: Transform - - uid: 2301 - components: - - rot: 3.141592653589793 rad - pos: -19.5,10.5 - parent: 1 - type: Transform - - uid: 2302 - components: - - rot: 3.141592653589793 rad - pos: -20.5,9.5 - parent: 1 - type: Transform - - uid: 2303 - components: - - rot: 3.141592653589793 rad - pos: -20.5,8.5 - parent: 1 - type: Transform - - uid: 2304 - components: - - rot: 3.141592653589793 rad - pos: -20.5,7.5 - parent: 1 - type: Transform - - uid: 2305 - components: - - rot: 3.141592653589793 rad - pos: 0.5,16.5 - parent: 1 - type: Transform - - uid: 2306 - components: - - pos: -11.5,18.5 - parent: 1 - type: Transform - - uid: 2307 - components: - - pos: -8.5,18.5 - parent: 1 - type: Transform - - uid: 2308 - components: - - pos: -7.5,18.5 - parent: 1 - type: Transform - - uid: 2309 - components: - - rot: 3.141592653589793 rad - pos: 17.5,14.5 - parent: 1 - type: Transform - - uid: 2310 - components: - - pos: -4.5,-5.5 - parent: 1 - type: Transform - - uid: 2311 - components: - - pos: -9.5,-5.5 - parent: 1 - type: Transform - - uid: 2312 - components: - - pos: -5.5,-5.5 - parent: 1 - type: Transform - - uid: 2313 - components: - - pos: -8.5,-5.5 - parent: 1 - type: Transform - - uid: 2314 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-1.5 - parent: 1 - type: Transform - - uid: 2315 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-1.5 - parent: 1 - type: Transform - - uid: 2316 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-1.5 - parent: 1 - type: Transform - - uid: 2317 - components: - - pos: -4.5,-4.5 - parent: 1 - type: Transform - - uid: 2320 - components: - - pos: -6.5,19.5 - parent: 1 - type: Transform - - uid: 2414 - components: - - pos: -6.5,20.5 - parent: 1 - type: Transform -- proto: WallSolidDiagonal - entities: - - uid: 1735 - components: - - pos: -6.5,21.5 - parent: 1 - type: Transform - - uid: 2318 - components: - - pos: -18.5,14.5 - parent: 1 - type: Transform - - uid: 2319 - components: - - pos: -12.5,18.5 - parent: 1 - type: Transform - - uid: 2322 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,35.5 - parent: 1 - type: Transform - - uid: 2323 - components: - - pos: 5.5,35.5 - parent: 1 - type: Transform - - uid: 2324 - components: - - pos: 1.5,25.5 - parent: 1 - type: Transform - - uid: 2325 - components: - - rot: 3.141592653589793 rad - pos: 13.5,1.5 - parent: 1 - type: Transform - - uid: 2326 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-1.5 - parent: 1 - type: Transform - - uid: 2327 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-5.5 - parent: 1 - type: Transform - - uid: 2328 - components: - - rot: 3.141592653589793 rad - pos: 15.5,5.5 - parent: 1 - type: Transform - - uid: 2329 - components: - - pos: -23.5,6.5 - parent: 1 - type: Transform - - uid: 2330 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,18.5 - parent: 1 - type: Transform - - uid: 2331 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-1.5 - parent: 1 - type: Transform - - uid: 2332 - components: - - pos: -20.5,10.5 - parent: 1 - type: Transform - - uid: 2333 - components: - - rot: 3.141592653589793 rad - pos: 18.5,11.5 - parent: 1 - type: Transform - - uid: 2334 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-5.5 - parent: 1 - type: Transform - - uid: 2386 - components: - - pos: -2.5,23.5 - parent: 1 - type: Transform -- proto: WallWeaponCapacitorRecharger - entities: - - uid: 149 - components: - - pos: 9.5,11.5 - parent: 1 - type: Transform - - uid: 150 - components: - - pos: 9.5,10.5 - parent: 1 - type: Transform -- proto: WaterCooler - entities: - - uid: 2335 - components: - - pos: -8.5,3.5 - parent: 1 - type: Transform -- proto: WeaponCapacitorRecharger - entities: - - uid: 2336 - components: - - pos: -13.5,7.5 - parent: 1 - type: Transform - - uid: 2337 - components: - - pos: 11.5,8.5 - parent: 1 - type: Transform - - uid: 2495 - components: - - pos: 3.5,15.5 - parent: 1 - type: Transform -- proto: WeaponDisabler - entities: - - uid: 13 - components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 671 - components: - - flags: InContainer - type: MetaData - - parent: 669 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 684 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 691 - components: - - flags: InContainer - type: MetaData - - parent: 687 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 702 - components: - - flags: InContainer - type: MetaData - - parent: 696 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 719 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: WeaponPulseCarbine - entities: - - uid: 2338 - components: - - pos: 13.48761,8.662255 - parent: 1 - type: Transform - - uid: 2339 - components: - - pos: 13.48761,8.537255 - parent: 1 - type: Transform -- proto: WeaponPulsePistol - entities: - - uid: 720 - components: - - flags: InContainer - type: MetaData - - parent: 705 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2340 - components: - - pos: 13.378235,8.36538 - parent: 1 - type: Transform - - uid: 2341 - components: - - pos: 13.58136,8.36538 - parent: 1 - type: Transform -- proto: WeaponPulseRifle - entities: - - uid: 2342 - components: - - pos: 12.534485,8.724755 - parent: 1 - type: Transform - - uid: 2343 - components: - - pos: 12.534485,8.568505 - parent: 1 - type: Transform - - uid: 2344 - components: - - pos: 12.534485,8.381005 - parent: 1 - type: Transform -- proto: WeaponRifleLecter - entities: - - uid: 2345 - components: - - pos: 14.440735,8.506005 - parent: 1 - type: Transform - - uid: 2346 - components: - - pos: 14.440735,8.381005 - parent: 1 - type: Transform - - uid: 2347 - components: - - pos: 14.458244,8.619274 - parent: 1 - type: Transform -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 2348 - components: - - pos: 13.51886,6.6310053 - parent: 1 - type: Transform - - uid: 2349 - components: - - pos: 13.51886,6.5216303 - parent: 1 - type: Transform - - uid: 2350 - components: - - pos: 13.51886,6.4278803 - parent: 1 - type: Transform -- proto: WeldingFuelTankHighCapacity - entities: - - uid: 2351 - components: - - pos: -10.5,7.5 - parent: 1 - type: Transform -- proto: WetFloorSign - entities: - - uid: 2352 - components: - - pos: 12.381899,3.9263859 - parent: 1 - type: Transform - - uid: 2353 - components: - - pos: 12.569399,3.9263859 - parent: 1 - type: Transform - - uid: 2354 - components: - - pos: 12.741274,3.9420109 - parent: 1 - type: Transform -- proto: WindoorSecureArmoryLocked - entities: - - uid: 2355 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,7.5 - parent: 1 - type: Transform -- proto: WindoorSecureChemistryLocked - entities: - - uid: 2356 - components: - - pos: -4.5,2.5 - parent: 1 - type: Transform - - uid: 2357 - components: - - rot: 3.141592653589793 rad - pos: -4.5,2.5 - parent: 1 - type: Transform -- proto: WindoorSecureCommandLocked - entities: - - uid: 2358 - components: - - pos: -4.5,15.5 - parent: 1 - type: Transform - - uid: 2359 - components: - - pos: 4.5,24.5 - parent: 1 - type: Transform - - uid: 2360 - components: - - pos: 2.5,24.5 - parent: 1 - type: Transform - - uid: 2361 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,11.5 - parent: 1 - type: Transform -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 2362 - components: - - pos: -8.5,9.5 - parent: 1 - type: Transform - - uid: 2363 - components: - - pos: -7.5,9.5 - parent: 1 - type: Transform - - uid: 2364 - components: - - pos: -8.5,13.5 - parent: 1 - type: Transform - - uid: 2365 - components: - - pos: -7.5,13.5 - parent: 1 - type: Transform - - uid: 2366 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,12.5 - parent: 1 - type: Transform - - uid: 2367 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-0.5 - parent: 1 - type: Transform -- proto: WindoorSecureMedicalLocked - entities: - - uid: 2368 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,0.5 - parent: 1 - type: Transform - - uid: 2369 - components: - - pos: -21.5,2.5 - parent: 1 - type: Transform - - uid: 2370 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-3.5 - parent: 1 - type: Transform -- proto: Window - entities: - - uid: 1461 - components: - - pos: -3.5,21.5 - parent: 1 - type: Transform - - uid: 1462 - components: - - pos: -5.5,21.5 - parent: 1 - type: Transform - - uid: 1732 - components: - - pos: -4.5,21.5 - parent: 1 - type: Transform -- proto: WindowReinforcedDirectional - entities: - - uid: 1408 - components: - - rot: 3.141592653589793 rad - pos: 0.5,22.5 - parent: 1 - type: Transform - - uid: 1409 - components: - - rot: 3.141592653589793 rad - pos: -5.5,20.5 - parent: 1 - type: Transform - - uid: 1872 - components: - - rot: 3.141592653589793 rad - pos: -1.5,22.5 - parent: 1 - type: Transform - - uid: 1874 - components: - - rot: 3.141592653589793 rad - pos: -3.5,20.5 - parent: 1 - type: Transform - - uid: 2371 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,13.5 - parent: 1 - type: Transform - - uid: 2372 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,11.5 - parent: 1 - type: Transform - - uid: 2373 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,9.5 - parent: 1 - type: Transform - - uid: 2374 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,9.5 - parent: 1 - type: Transform - - uid: 2375 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,13.5 - parent: 1 - type: Transform - - uid: 2376 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,13.5 - parent: 1 - type: Transform - - uid: 2377 - components: - - rot: 3.141592653589793 rad - pos: -5.5,8.5 - parent: 1 - type: Transform - - uid: 2378 - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform - - uid: 2379 - components: - - rot: 3.141592653589793 rad - pos: -3.5,8.5 - parent: 1 - type: Transform - - uid: 2380 - components: - - pos: -3.5,7.5 - parent: 1 - type: Transform - - uid: 2381 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 1 - type: Transform - - uid: 2382 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 1 - type: Transform - - uid: 2383 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,1.5 - parent: 1 - type: Transform - - uid: 2384 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 1 - type: Transform - - uid: 2385 - components: - - pos: -20.5,2.5 - parent: 1 - type: Transform - - uid: 2388 - components: - - pos: -3.5,15.5 - parent: 1 - type: Transform - - uid: 2389 - components: - - pos: -5.5,15.5 - parent: 1 - type: Transform - - uid: 2392 - components: - - pos: 0.5,17.5 - parent: 1 - type: Transform - - uid: 2393 - components: - - pos: -1.5,17.5 - parent: 1 - type: Transform - - uid: 2394 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,24.5 - parent: 1 - type: Transform - - uid: 2395 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,24.5 - parent: 1 - type: Transform - - uid: 2396 - components: - - rot: 3.141592653589793 rad - pos: -0.5,1.5 - parent: 1 - type: Transform - - uid: 2397 - components: - - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 1 - type: Transform - - uid: 2398 - components: - - pos: 0.5,-1.5 - parent: 1 - type: Transform - - uid: 2399 - components: - - pos: -0.5,-1.5 - parent: 1 - type: Transform - - uid: 2400 - components: - - pos: 2.5,-1.5 - parent: 1 - type: Transform - - uid: 2401 - components: - - rot: 3.141592653589793 rad - pos: 2.5,1.5 - parent: 1 - type: Transform - - uid: 2402 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 1 - type: Transform - - uid: 2403 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 1 - type: Transform - - uid: 2404 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 1 - type: Transform - - uid: 2405 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 1 - type: Transform - - uid: 2406 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,8.5 - parent: 1 - type: Transform - - uid: 2407 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,6.5 - parent: 1 - type: Transform - - uid: 2408 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,8.5 - parent: 1 - type: Transform - - uid: 2409 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,6.5 - parent: 1 - type: Transform - - uid: 2410 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,12.5 - parent: 1 - type: Transform - - uid: 2411 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,10.5 - parent: 1 - type: Transform - - uid: 2412 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 1 - type: Transform - - uid: 2413 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-4.5 - parent: 1 - type: Transform -- proto: YellowOxygenTankFilled - entities: - - uid: 14 - components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -... diff --git a/Resources/Maps/ERT/ERTStation.yml b/Resources/Maps/White/ERTStation.yml similarity index 97% rename from Resources/Maps/ERT/ERTStation.yml rename to Resources/Maps/White/ERTStation.yml index 9e4b93eeb4..c1676f2968 100644 --- a/Resources/Maps/ERT/ERTStation.yml +++ b/Resources/Maps/White/ERTStation.yml @@ -22,6 +22,7 @@ entities: name: ERT station "Theta-19" - type: Transform - type: Map + mapPaused: True - type: PhysicsMap - type: GridTree - type: MovedGrids @@ -149,13 +150,13 @@ entities: color: '#00B400B2' id: Bot decals: - 1510: 41,73 - 1511: 40,73 - 1512: 39,72 - 1513: 43,76 - 1514: 45,73 - 1515: 46,73 - 1516: 47,72 + 1509: 41,73 + 1510: 40,73 + 1511: 39,72 + 1512: 43,76 + 1513: 45,73 + 1514: 46,73 + 1515: 47,72 - node: color: '#80C71FB2' id: Bot @@ -175,7 +176,7 @@ entities: 1082: 20,49 1129: 16,48 1130: 15,48 - 1476: 53,68 + 1475: 53,68 - node: color: '#DE3A3AB2' id: Bot @@ -213,7 +214,7 @@ entities: 1176: 36,47 1177: 34,48 1178: 34,47 - 1477: 54,68 + 1476: 54,68 - node: color: '#EFB341B2' id: Bot @@ -245,19 +246,19 @@ entities: 169: 31,22 170: 31,20 907: 23,44 - 1478: 55,68 - 1843: 36,69 - 1847: 58,40 + 1477: 55,68 + 1837: 36,69 + 1841: 58,40 - node: color: '#EFB346B2' id: Bot decals: - 1932: 41,18 + 1926: 41,18 - node: color: '#334E6DB2' id: BotGreyscale decals: - 1479: 54,66 + 1478: 54,66 - node: color: '#52B4E9B2' id: BotGreyscale @@ -291,31 +292,31 @@ entities: 820: 12,44 821: 16,44 822: 16,42 - 1480: 56,68 - 1490: 51,68 + 1479: 56,68 + 1489: 51,68 - node: color: '#8932B8B2' id: BotGreyscale decals: - 2068: 33,54 - 2070: 37,54 - 2071: 36,54 + 2059: 33,54 + 2061: 37,54 + 2062: 36,54 - node: color: '#9FED58B2' id: BotGreyscale decals: - 1481: 53,66 + 1480: 53,66 - node: color: '#D381C9B2' id: BotGreyscale decals: - 1482: 55,66 + 1481: 55,66 - node: color: '#D4D4D4B2' id: BotGreyscale decals: - 1483: 56,66 - 1489: 51,69 + 1482: 56,66 + 1488: 51,69 - node: color: '#A46106B2' id: BotLeft @@ -362,18 +363,18 @@ entities: color: '#FFFFFFFF' id: BotRightGreyscale decals: - 1468: 51,54 - 1469: 53,54 + 1467: 51,54 + 1468: 53,54 - node: color: '#00B400B2' id: Box decals: - 1428: 56,52 - 1429: 55,52 - 1430: 51,52 - 1431: 50,52 - 1432: 46,48 - 1441: 46,47 + 1427: 56,52 + 1428: 55,52 + 1429: 51,52 + 1430: 50,52 + 1431: 46,48 + 1440: 46,47 - node: color: '#80C71FB2' id: Box @@ -415,7 +416,7 @@ entities: 904: 18,42 905: 19,42 906: 20,42 - 1844: 37,69 + 1838: 37,69 - node: color: '#00FFFF66' id: BoxGreyscale @@ -428,7 +429,7 @@ entities: color: '#334E6DB2' id: BoxGreyscale decals: - 1557: 39,67 + 1556: 39,67 - node: color: '#52B4E9B2' id: BoxGreyscale @@ -446,67 +447,67 @@ entities: color: '#8932B8B2' id: BoxGreyscale decals: - 2069: 33,55 + 2060: 33,55 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 1442: 49,57 + 1441: 49,57 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 1443: 48,57 - 1444: 47,56 + 1442: 48,57 + 1443: 47,56 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 1447: 49,54 + 1446: 49,54 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 1445: 47,55 - 1446: 48,54 + 1444: 47,55 + 1445: 48,54 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 1450: 48,56 + 1449: 48,56 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 1451: 48,55 + 1450: 48,55 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 1448: 49,55 - 1449: 49,56 + 1447: 49,55 + 1448: 49,56 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 1584: 53,61 + 1583: 53,61 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 1334: 39,65 - 1571: 46,61 + 1333: 39,65 + 1570: 46,61 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: 1224: 24,36 - 2059: 25,21 + 2053: 25,21 - node: color: '#FFFFFFFF' id: BrickTileSteelEndW decals: - 1575: 43,59 + 1574: 43,59 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe @@ -516,12 +517,12 @@ entities: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 1592: 46,59 + 1591: 46,59 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 1370: 41,63 + 1369: 41,63 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw @@ -541,25 +542,25 @@ entities: 1218: 27,39 1219: 27,40 1268: 41,45 - 1342: 51,65 - 1354: 41,62 - 1355: 41,61 - 1356: 41,60 - 1357: 41,59 - 1358: 41,58 - 1359: 41,57 - 1360: 41,56 - 1361: 41,55 - 1362: 41,54 - 1363: 41,53 - 1364: 41,52 - 1365: 41,51 - 1366: 41,50 - 1367: 41,49 - 1368: 41,48 - 1369: 41,47 - 1583: 53,59 - 1585: 53,60 + 1341: 51,65 + 1353: 41,62 + 1354: 41,61 + 1355: 41,60 + 1356: 41,59 + 1357: 41,58 + 1358: 41,57 + 1359: 41,56 + 1360: 41,55 + 1361: 41,54 + 1362: 41,53 + 1363: 41,52 + 1364: 41,51 + 1365: 41,50 + 1366: 41,49 + 1367: 41,48 + 1368: 41,47 + 1582: 53,59 + 1584: 53,60 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -584,37 +585,37 @@ entities: 1285: 56,44 1286: 57,44 1287: 58,44 - 1335: 40,65 - 1336: 41,65 - 1337: 42,65 + 1334: 40,65 + 1335: 41,65 + 1336: 42,65 + 1337: 43,65 1338: 43,65 - 1339: 43,65 - 1340: 44,65 - 1341: 48,65 - 1573: 45,59 - 1574: 44,59 - 1586: 52,61 - 1587: 51,61 - 1588: 50,61 - 1589: 49,61 - 1590: 48,61 - 1591: 47,61 + 1339: 44,65 + 1340: 48,65 + 1572: 45,59 + 1573: 44,59 + 1585: 52,61 + 1586: 51,61 + 1587: 50,61 + 1588: 49,61 + 1589: 48,61 + 1590: 47,61 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 1760: 60,44 - 1761: 61,44 - 1762: 62,44 - 1763: 63,44 - 1764: 67,44 - 1765: 71,44 - 1766: 72,44 - 1767: 73,44 - 1768: 75,44 - 1769: 74,44 - 1770: 76,44 + 1759: 60,44 + 1760: 61,44 + 1761: 62,44 + 1762: 63,44 + 1763: 67,44 + 1764: 71,44 + 1765: 72,44 + 1766: 73,44 + 1767: 75,44 + 1768: 74,44 + 1769: 76,44 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS @@ -648,42 +649,42 @@ entities: 1301: 45,42 1302: 44,42 1303: 43,42 - 1343: 51,63 + 1342: 51,63 + 1343: 50,63 1344: 50,63 - 1345: 50,63 - 1346: 49,63 - 1347: 48,63 - 1348: 47,63 - 1349: 46,63 - 1350: 45,63 - 1351: 44,63 - 1352: 43,63 - 1353: 42,63 - 1576: 44,59 - 1577: 45,59 - 1578: 46,59 - 1579: 47,59 - 1580: 48,59 - 1581: 49,59 - 1582: 50,59 + 1345: 49,63 + 1346: 48,63 + 1347: 47,63 + 1348: 46,63 + 1349: 45,63 + 1350: 44,63 + 1351: 43,63 + 1352: 42,63 + 1575: 44,59 + 1576: 45,59 + 1577: 46,59 + 1578: 47,59 + 1579: 48,59 + 1580: 49,59 + 1581: 50,59 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 1771: 76,42 - 1772: 75,42 - 1773: 74,42 - 1774: 73,42 - 1775: 72,42 - 1776: 71,42 - 1777: 67,42 - 1778: 66,42 - 1779: 65,42 - 1780: 63,42 - 1781: 62,42 - 1782: 61,42 - 1783: 60,42 + 1770: 76,42 + 1771: 75,42 + 1772: 74,42 + 1773: 73,42 + 1774: 72,42 + 1775: 71,42 + 1776: 67,42 + 1777: 66,42 + 1778: 65,42 + 1779: 63,42 + 1780: 62,42 + 1781: 61,42 + 1782: 60,42 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW @@ -702,44 +703,44 @@ entities: 1320: 39,51 1321: 39,53 1322: 39,52 - 1324: 39,55 - 1325: 39,56 - 1326: 39,57 - 1327: 39,58 - 1328: 39,59 - 1329: 39,60 - 1330: 39,61 - 1331: 39,62 - 1332: 39,63 - 1333: 39,64 - 1572: 46,60 - 2058: 25,22 + 1323: 39,55 + 1324: 39,56 + 1325: 39,57 + 1326: 39,58 + 1327: 39,59 + 1328: 39,60 + 1329: 39,61 + 1330: 39,62 + 1331: 39,63 + 1332: 39,64 + 1571: 46,60 + 2052: 25,22 - node: color: '#EFB341B2' id: BrickTileWhiteBox decals: - 1848: 58,38 + 1842: 58,38 - node: color: '#EFB346B2' id: BrickTileWhiteBox decals: - 1931: 41,16 + 1925: 41,16 - node: color: '#00B400B2' id: BrickTileWhiteCornerNe decals: - 1380: 46,52 - 1391: 51,48 - 1400: 56,48 - 1495: 47,73 - 1496: 45,76 - 1539: 47,70 + 1379: 46,52 + 1390: 51,48 + 1399: 56,48 + 1494: 47,73 + 1495: 45,76 + 1538: 47,70 - node: color: '#334E6DB2' id: BrickTileWhiteCornerNe decals: - 1548: 43,70 - 1559: 40,68 + 1547: 43,70 + 1558: 40,68 - node: color: '#52B4E9B2' id: BrickTileWhiteCornerNe @@ -761,7 +762,7 @@ entities: color: '#8932B8B2' id: BrickTileWhiteCornerNe decals: - 2061: 37,56 + 2054: 37,56 - node: color: '#A46106B2' id: BrickTileWhiteCornerNe @@ -796,25 +797,25 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: - 1471: 53,57 - 2011: 45,61 + 1470: 53,57 + 2005: 45,61 - node: color: '#00B400B2' id: BrickTileWhiteCornerNw decals: - 1377: 43,52 - 1388: 48,48 - 1401: 53,48 - 1416: 45,48 - 1500: 41,76 - 1503: 39,73 - 1538: 45,70 + 1376: 43,52 + 1387: 48,48 + 1400: 53,48 + 1415: 45,48 + 1499: 41,76 + 1502: 39,73 + 1537: 45,70 - node: color: '#334E6DB2' id: BrickTileWhiteCornerNw decals: - 1549: 42,70 - 1556: 39,68 + 1548: 42,70 + 1555: 39,68 - node: color: '#52B4E9B2' id: BrickTileWhiteCornerNw @@ -837,7 +838,7 @@ entities: color: '#8932B8B2' id: BrickTileWhiteCornerNw decals: - 2080: 34,56 + 2069: 34,56 - node: color: '#A46106B2' id: BrickTileWhiteCornerNw @@ -880,27 +881,27 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 1462: 43,57 - 1470: 51,57 - 2012: 43,61 + 1461: 43,57 + 1469: 51,57 + 2006: 43,61 - node: color: '#00B400B2' id: BrickTileWhiteCornerSe decals: - 1382: 46,50 - 1393: 51,46 - 1399: 56,46 - 1408: 56,50 - 1413: 51,50 - 1418: 46,46 - 1542: 47,67 + 1381: 46,50 + 1392: 51,46 + 1398: 56,46 + 1407: 56,50 + 1412: 51,50 + 1417: 46,46 + 1541: 47,67 - node: color: '#334E6DB2' id: BrickTileWhiteCornerSe decals: - 1488: 51,67 - 1552: 43,67 - 1560: 40,67 + 1487: 51,67 + 1551: 43,67 + 1559: 40,67 - node: color: '#52B4E9B2' id: BrickTileWhiteCornerSe @@ -963,25 +964,25 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 1472: 53,56 - 2016: 45,60 + 1471: 53,56 + 2010: 45,60 - node: color: '#00B400B2' id: BrickTileWhiteCornerSw decals: - 1385: 43,50 - 1397: 48,46 - 1398: 53,46 - 1409: 55,50 - 1415: 50,50 - 1417: 45,46 - 1543: 45,67 + 1384: 43,50 + 1396: 48,46 + 1397: 53,46 + 1408: 55,50 + 1414: 50,50 + 1416: 45,46 + 1542: 45,67 - node: color: '#334E6DB2' id: BrickTileWhiteCornerSw decals: - 1486: 49,67 - 1553: 42,67 + 1485: 49,67 + 1552: 42,67 - node: color: '#52B4E9B2' id: BrickTileWhiteCornerSw @@ -1041,22 +1042,22 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: - 1459: 43,54 - 1473: 51,56 - 2014: 43,60 + 1458: 43,54 + 1472: 51,56 + 2008: 43,60 - node: color: '#EFB341B2' id: BrickTileWhiteEndE decals: - 1846: 35,68 + 1840: 35,68 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndE decals: 418: 50,28 - 1454: 47,57 - 1455: 47,54 - 1563: 40,70 + 1453: 47,57 + 1454: 47,54 + 1562: 40,70 - node: color: '#DE3A3AB2' id: BrickTileWhiteEndS @@ -1067,19 +1068,19 @@ entities: id: BrickTileWhiteEndS decals: 1139: 16,50 - 1419: 43,46 - 1423: 53,50 - 1426: 48,50 + 1418: 43,46 + 1422: 53,50 + 1425: 48,50 - node: color: '#EFB341B2' id: BrickTileWhiteEndW decals: - 1845: 34,68 + 1839: 34,68 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndW decals: - 1564: 39,70 + 1563: 39,70 - node: color: '#52B4E9B2' id: BrickTileWhiteInnerNe @@ -1101,7 +1102,7 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 1467: 46,54 + 1466: 46,54 - node: color: '#DE3A3AB2' id: BrickTileWhiteInnerNw @@ -1129,7 +1130,7 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe decals: - 1466: 46,57 + 1465: 46,57 - node: color: '#52B4E9B2' id: BrickTileWhiteInnerSw @@ -1140,21 +1141,21 @@ entities: color: '#00B400B2' id: BrickTileWhiteLineE decals: - 1381: 46,51 - 1392: 51,47 - 1404: 56,47 - 1410: 56,51 - 1414: 51,51 - 1497: 45,75 - 1498: 45,74 - 1540: 47,69 - 1541: 47,68 + 1380: 46,51 + 1391: 51,47 + 1403: 56,47 + 1409: 56,51 + 1413: 51,51 + 1496: 45,75 + 1497: 45,74 + 1539: 47,69 + 1540: 47,68 - node: color: '#334E6DB2' id: BrickTileWhiteLineE decals: - 1550: 43,69 - 1551: 43,68 + 1549: 43,69 + 1550: 43,68 - node: color: '#52B4E9B2' id: BrickTileWhiteLineE @@ -1198,7 +1199,7 @@ entities: color: '#8932B8B2' id: BrickTileWhiteLineE decals: - 2062: 37,55 + 2055: 37,55 - node: color: '#A46106B2' id: BrickTileWhiteLineE @@ -1265,35 +1266,35 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 1420: 43,47 - 1424: 53,51 - 1425: 48,51 - 1452: 46,56 - 1453: 46,55 + 1419: 43,47 + 1423: 53,51 + 1424: 48,51 + 1451: 46,56 + 1452: 46,55 - node: color: '#00B400B2' id: BrickTileWhiteLineN decals: - 1378: 45,52 - 1379: 44,52 - 1389: 49,48 - 1390: 50,48 - 1402: 54,48 - 1403: 55,48 - 1499: 44,76 - 1517: 42,76 - 1547: 46,70 - 1565: 45,65 - 1566: 47,65 - 1567: 46,65 - 1568: 49,65 - 1569: 50,65 - 1570: 51,65 + 1377: 45,52 + 1378: 44,52 + 1388: 49,48 + 1389: 50,48 + 1401: 54,48 + 1402: 55,48 + 1498: 44,76 + 1516: 42,76 + 1546: 46,70 + 1564: 45,65 + 1565: 47,65 + 1566: 46,65 + 1567: 49,65 + 1568: 50,65 + 1569: 51,65 - node: color: '#334E6DB2' id: BrickTileWhiteLineN decals: - 1484: 50,69 + 1483: 50,69 - node: color: '#52B4E9B2' id: BrickTileWhiteLineN @@ -1361,8 +1362,8 @@ entities: color: '#8932B8B2' id: BrickTileWhiteLineN decals: - 2063: 36,56 - 2081: 35,56 + 2056: 36,56 + 2070: 35,56 - node: color: '#A46106B2' id: BrickTileWhiteLineN @@ -1429,35 +1430,35 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 1463: 44,57 - 1464: 45,57 - 1465: 46,57 - 1475: 52,57 - 2013: 44,61 + 1462: 44,57 + 1463: 45,57 + 1464: 46,57 + 1474: 52,57 + 2007: 44,61 - node: color: '#00B400B2' id: BrickTileWhiteLineS decals: - 1383: 45,50 - 1384: 44,50 - 1394: 50,46 - 1395: 49,46 - 1396: 37,52 - 1405: 55,46 - 1406: 54,46 - 1504: 41,72 - 1505: 42,72 - 1506: 43,72 - 1507: 44,72 - 1508: 45,72 - 1509: 46,72 - 1532: 40,72 - 1544: 46,67 + 1382: 45,50 + 1383: 44,50 + 1393: 50,46 + 1394: 49,46 + 1395: 37,52 + 1404: 55,46 + 1405: 54,46 + 1503: 41,72 + 1504: 42,72 + 1505: 43,72 + 1506: 44,72 + 1507: 45,72 + 1508: 46,72 + 1531: 40,72 + 1543: 46,67 - node: color: '#334E6DB2' id: BrickTileWhiteLineS decals: - 1487: 50,67 + 1486: 50,67 - node: color: '#52B4E9B2' id: BrickTileWhiteLineS @@ -1531,8 +1532,8 @@ entities: color: '#8932B8B2' id: BrickTileWhiteLineS decals: - 2066: 35,54 - 2067: 34,54 + 2057: 35,54 + 2058: 34,54 - node: color: '#A46106B2' id: BrickTileWhiteLineS @@ -1607,34 +1608,34 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 1456: 46,54 - 1457: 45,54 - 1458: 44,54 - 1474: 52,56 - 1593: 51,59 - 1594: 52,59 - 1595: 53,59 - 2015: 44,60 + 1455: 46,54 + 1456: 45,54 + 1457: 44,54 + 1473: 52,56 + 1592: 51,59 + 1593: 52,59 + 1594: 53,59 + 2009: 44,60 - node: color: '#00B400B2' id: BrickTileWhiteLineW decals: - 1386: 43,51 - 1387: 48,47 - 1407: 53,47 - 1411: 55,51 - 1412: 50,51 - 1501: 41,75 - 1502: 41,74 - 1545: 45,68 - 1546: 45,69 + 1385: 43,51 + 1386: 48,47 + 1406: 53,47 + 1410: 55,51 + 1411: 50,51 + 1500: 41,75 + 1501: 41,74 + 1544: 45,68 + 1545: 45,69 - node: color: '#334E6DB2' id: BrickTileWhiteLineW decals: - 1485: 49,68 - 1554: 42,68 - 1555: 42,69 + 1484: 49,68 + 1553: 42,68 + 1554: 42,69 - node: color: '#52B4E9B2' id: BrickTileWhiteLineW @@ -1742,21 +1743,21 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 1421: 43,47 - 1422: 53,51 - 1427: 48,51 - 1460: 43,55 - 1461: 43,56 + 1420: 43,47 + 1421: 53,51 + 1426: 48,51 + 1459: 43,55 + 1460: 43,56 - node: color: '#52B4E996' id: CheckerNESW decals: - 2005: 43,60 - 2006: 43,61 - 2007: 44,61 - 2008: 44,60 - 2009: 45,60 - 2010: 45,61 + 1999: 43,60 + 2000: 43,61 + 2001: 44,61 + 2002: 44,60 + 2003: 45,60 + 2004: 45,61 - node: color: '#DE3A3ACC' id: Delivery @@ -1772,13 +1773,13 @@ entities: color: '#EFB341C5' id: Delivery decals: - 2051: 52,63 - 2052: 52,64 - 2053: 24,40 - 2054: 24,39 - 2055: 64,44 - 2056: 65,44 - 2057: 66,44 + 2045: 52,63 + 2046: 52,64 + 2047: 24,40 + 2048: 24,39 + 2049: 64,44 + 2050: 65,44 + 2051: 66,44 - node: color: '#EFB341CC' id: Delivery @@ -1893,127 +1894,127 @@ entities: 1154: 13,48 1155: 12,46 1156: 14,50 - 1884: 55,34 - 1885: 54,29 - 1886: 53,27 - 1887: 51,37 - 1888: 55,38 - 1889: 54,40 - 1890: 53,24 - 1891: 49,20 - 1892: 47,21 - 1893: 43,22 - 1894: 41,20 - 1915: 34,15 - 1916: 34,18 - 1917: 38,17 - 1918: 38,16 - 1919: 39,18 - 1920: 33,9 - 1970: 18,21 - 1971: 22,22 - 1972: 20,22 - 1973: 10,22 - 1974: 5,21 - 1975: 2,21 - 1977: -1,21 - 1978: -1,25 - 1979: 1,27 - 1980: 1,25 - 1988: -3,27 - 1989: -6,32 - 1990: -5,37 - 1991: -6,41 - 2004: -6,32 - 2039: 0,47 - 2040: -2,51 - 2041: 7,46 - 2042: 6,49 - 2043: 10,48 - 2044: 8,49 - 2045: -2,47 - 2046: 9,49 - 2047: 1,46 - 2048: 2,47 - 2049: 6,47 - 2050: 2,46 - 2087: 35,54 - 2088: 36,56 - 2089: 37,55 + 1878: 55,34 + 1879: 54,29 + 1880: 53,27 + 1881: 51,37 + 1882: 55,38 + 1883: 54,40 + 1884: 53,24 + 1885: 49,20 + 1886: 47,21 + 1887: 43,22 + 1888: 41,20 + 1909: 34,15 + 1910: 34,18 + 1911: 38,17 + 1912: 38,16 + 1913: 39,18 + 1914: 33,9 + 1964: 18,21 + 1965: 22,22 + 1966: 20,22 + 1967: 10,22 + 1968: 5,21 + 1969: 2,21 + 1971: -1,21 + 1972: -1,25 + 1973: 1,27 + 1974: 1,25 + 1982: -3,27 + 1983: -6,32 + 1984: -5,37 + 1985: -6,41 + 1998: -6,32 + 2033: 0,47 + 2034: -2,51 + 2035: 7,46 + 2036: 6,49 + 2037: 10,48 + 2038: 8,49 + 2039: -2,47 + 2040: 9,49 + 2041: 1,46 + 2042: 2,47 + 2043: 6,47 + 2044: 2,46 + 2076: 35,54 + 2077: 36,56 + 2078: 37,55 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 1609: 28,24 - 1610: 23,28 - 1611: 26,30 - 1612: 25,25 - 1613: 27,21 - 1614: 27,25 - 1624: 27,33 - 1625: 25,36 - 1626: 27,38 - 1627: 25,40 - 1628: 26,36 - 1629: 26,32 - 1630: 24,36 - 1640: 37,43 - 1641: 30,44 - 1642: 29,42 - 1643: 25,44 - 1644: 27,47 - 1645: 26,48 - 1646: 28,42 - 1655: 40,42 - 1656: 40,45 - 1674: 39,55 - 1675: 41,51 - 1676: 39,47 - 1677: 41,58 - 1678: 41,65 - 1679: 40,63 - 1680: 49,65 - 1681: 47,63 - 1682: 41,55 - 1691: 47,67 - 1692: 46,70 - 1693: 45,72 - 1694: 42,75 - 1695: 44,75 - 1696: 41,72 - 1697: 45,76 - 1704: 43,70 - 1705: 43,67 - 1706: 42,68 - 1707: 42,69 - 1721: 46,60 - 1722: 51,59 - 1723: 45,59 - 1724: 52,61 - 1725: 52,60 - 1726: 48,56 - 1727: 49,54 - 1728: 45,55 - 1739: 51,57 - 1740: 53,56 - 1752: 49,42 - 1753: 55,44 - 1754: 57,42 - 1755: 47,44 - 1756: 44,42 - 1757: 45,44 - 1758: 47,42 - 1759: 51,44 - 1805: 73,42 - 1806: 67,44 - 1807: 64,42 - 1808: 60,44 - 1809: 73,44 - 1828: 35,64 - 1829: 36,63 - 1830: 34,57 - 1833: 36,60 + 1608: 28,24 + 1609: 23,28 + 1610: 26,30 + 1611: 25,25 + 1612: 27,21 + 1613: 27,25 + 1623: 27,33 + 1624: 25,36 + 1625: 27,38 + 1626: 25,40 + 1627: 26,36 + 1628: 26,32 + 1629: 24,36 + 1639: 37,43 + 1640: 30,44 + 1641: 29,42 + 1642: 25,44 + 1643: 27,47 + 1644: 26,48 + 1645: 28,42 + 1654: 40,42 + 1655: 40,45 + 1673: 39,55 + 1674: 41,51 + 1675: 39,47 + 1676: 41,58 + 1677: 41,65 + 1678: 40,63 + 1679: 49,65 + 1680: 47,63 + 1681: 41,55 + 1690: 47,67 + 1691: 46,70 + 1692: 45,72 + 1693: 42,75 + 1694: 44,75 + 1695: 41,72 + 1696: 45,76 + 1703: 43,70 + 1704: 43,67 + 1705: 42,68 + 1706: 42,69 + 1720: 46,60 + 1721: 51,59 + 1722: 45,59 + 1723: 52,61 + 1724: 52,60 + 1725: 48,56 + 1726: 49,54 + 1727: 45,55 + 1738: 51,57 + 1739: 53,56 + 1751: 49,42 + 1752: 55,44 + 1753: 57,42 + 1754: 47,44 + 1755: 44,42 + 1756: 45,44 + 1757: 47,42 + 1758: 51,44 + 1804: 73,42 + 1805: 67,44 + 1806: 64,42 + 1807: 60,44 + 1808: 73,44 + 1824: 35,64 + 1825: 36,63 + 1826: 34,57 + 1827: 36,60 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -2044,59 +2045,59 @@ entities: 1097: 22,47 1098: 22,51 1099: 21,48 - 1863: 48,21 - 1864: 43,22 - 1865: 41,20 - 1866: 44,22 - 1883: 54,34 - 1926: 33,9 - 1927: 34,17 - 1928: 34,18 - 1929: 38,17 - 1930: 39,18 - 1954: 1,25 - 1955: 1,27 - 1956: -1,25 - 1957: -1,23 - 1958: 9,22 - 1959: 2,20 - 1960: 3,21 - 1961: 4,21 - 1962: 2,21 - 1963: 17,21 - 1964: 20,22 - 1965: 22,22 - 1986: -3,27 - 1987: -2,27 - 1999: -5,37 - 2000: -7,36 - 2026: 7,46 - 2027: 7,46 - 2028: 10,48 - 2029: 7,50 - 2030: 6,49 - 2031: -2,47 - 2032: 0,47 - 2033: -2,51 + 1857: 48,21 + 1858: 43,22 + 1859: 41,20 + 1860: 44,22 + 1877: 54,34 + 1920: 33,9 + 1921: 34,17 + 1922: 34,18 + 1923: 38,17 + 1924: 39,18 + 1948: 1,25 + 1949: 1,27 + 1950: -1,25 + 1951: -1,23 + 1952: 9,22 + 1953: 2,20 + 1954: 3,21 + 1955: 4,21 + 1956: 2,21 + 1957: 17,21 + 1958: 20,22 + 1959: 22,22 + 1980: -3,27 + 1981: -2,27 + 1993: -5,37 + 1994: -7,36 + 2020: 7,46 + 2021: 7,46 + 2022: 10,48 + 2023: 7,50 + 2024: 6,49 + 2025: -2,47 + 2026: 0,47 + 2027: -2,51 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 1653: 39,43 - 1654: 41,45 - 1717: 43,59 - 1718: 48,60 - 1719: 49,59 - 1720: 53,60 - 1738: 52,56 - 1751: 48,42 - 1824: 34,57 - 1826: 36,63 - 1827: 36,63 - 1840: 36,54 - 1841: 37,56 - 1842: 33,55 + 1652: 39,43 + 1653: 41,45 + 1716: 43,59 + 1717: 48,60 + 1718: 49,59 + 1719: 53,60 + 1737: 52,56 + 1750: 48,42 + 1821: 34,57 + 1822: 36,63 + 1823: 36,63 + 1834: 36,54 + 1835: 37,56 + 1836: 33,55 - node: color: '#FFFFFFFF' id: DirtHeavyMonotile @@ -2130,46 +2131,46 @@ entities: 985: 15,44 986: 12,42 1151: 13,46 - 1874: 47,21 - 1875: 52,22 - 1876: 54,29 - 1877: 55,34 - 1878: 55,34 - 1879: 51,37 - 1895: 48,36 - 1896: 48,36 - 1907: 34,17 - 1908: 37,17 - 1909: 39,18 - 1976: 4,21 - 2024: 10,48 - 2025: 8,46 - 2085: 36,55 - 2086: 34,55 + 1868: 47,21 + 1869: 52,22 + 1870: 54,29 + 1871: 55,34 + 1872: 55,34 + 1873: 51,37 + 1889: 48,36 + 1890: 48,36 + 1901: 34,17 + 1902: 37,17 + 1903: 39,18 + 1970: 4,21 + 2018: 10,48 + 2019: 8,46 + 2074: 36,55 + 2075: 34,55 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 1615: 25,32 - 1616: 27,36 - 1617: 26,40 - 1618: 25,36 - 1619: 27,35 - 1662: 41,57 - 1663: 39,60 - 1664: 44,63 - 1665: 42,65 - 1670: 43,63 - 1671: 39,64 - 1672: 39,58 - 1673: 39,53 - 1702: 41,72 - 1703: 44,74 - 1737: 53,57 - 1810: 73,44 - 1811: 68,42 - 1812: 63,44 + 1614: 25,32 + 1615: 27,36 + 1616: 26,40 + 1617: 25,36 + 1618: 27,35 + 1661: 41,57 + 1662: 39,60 + 1663: 44,63 + 1664: 42,65 + 1669: 43,63 + 1670: 39,64 + 1671: 39,58 + 1672: 39,53 + 1701: 41,72 + 1702: 44,74 + 1736: 53,57 + 1809: 73,44 + 1810: 68,42 + 1811: 63,44 - node: color: '#FFFFFFFF' id: DirtLight @@ -2245,78 +2246,78 @@ entities: 1112: 19,53 1113: 19,56 1114: 23,56 - 1853: 51,37 - 1854: 55,34 - 1855: 54,34 - 1860: 50,22 - 1861: 51,20 - 1862: 47,21 - 1871: 53,27 - 1872: 49,20 - 1873: 49,20 - 1903: 38,16 - 1904: 37,17 - 1905: 34,17 - 1906: 34,15 - 1914: 36,13 - 1924: 32,9 - 1925: 33,9 - 1945: 3,21 - 1946: 5,21 - 1947: 6,21 - 1948: 6,21 - 1949: -1,21 - 1950: -1,24 - 1951: -1,24 - 1952: -1,24 - 1953: 1,26 - 1966: 12,20 - 1967: 12,17 - 1981: -4,28 - 1982: -2,27 - 1983: -4,27 - 2001: -6,32 - 2002: -6,41 - 2003: -6,40 - 2034: 0,48 - 2082: 36,56 - 2083: 34,54 - 2084: 37,55 + 1847: 51,37 + 1848: 55,34 + 1849: 54,34 + 1854: 50,22 + 1855: 51,20 + 1856: 47,21 + 1865: 53,27 + 1866: 49,20 + 1867: 49,20 + 1897: 38,16 + 1898: 37,17 + 1899: 34,17 + 1900: 34,15 + 1908: 36,13 + 1918: 32,9 + 1919: 33,9 + 1939: 3,21 + 1940: 5,21 + 1941: 6,21 + 1942: 6,21 + 1943: -1,21 + 1944: -1,24 + 1945: -1,24 + 1946: -1,24 + 1947: 1,26 + 1960: 12,20 + 1961: 12,17 + 1975: -4,28 + 1976: -2,27 + 1977: -4,27 + 1995: -6,32 + 1996: -6,41 + 1997: -6,40 + 2028: 0,48 + 2071: 36,56 + 2072: 34,54 + 2073: 37,55 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 1600: 27,22 - 1601: 25,26 - 1602: 27,28 - 1603: 27,19 - 1604: 27,20 - 1605: 26,18 - 1620: 26,36 - 1621: 25,38 - 1622: 26,40 - 1623: 25,33 - 1631: 24,37 - 1632: 29,44 - 1633: 25,45 - 1634: 27,48 - 1683: 41,53 - 1684: 40,51 - 1685: 46,67 - 1686: 45,70 - 1687: 47,69 - 1741: 44,44 - 1742: 54,44 - 1743: 54,42 - 1744: 46,42 - 1745: 48,44 - 1796: 71,44 - 1797: 66,42 - 1798: 74,42 - 1817: 34,60 - 1818: 34,57 - 1822: 34,57 + 1599: 27,22 + 1600: 25,26 + 1601: 27,28 + 1602: 27,19 + 1603: 27,20 + 1604: 26,18 + 1619: 26,36 + 1620: 25,38 + 1621: 26,40 + 1622: 25,33 + 1630: 24,37 + 1631: 29,44 + 1632: 25,45 + 1633: 27,48 + 1682: 41,53 + 1683: 40,51 + 1684: 46,67 + 1685: 45,70 + 1686: 47,69 + 1740: 44,44 + 1741: 54,44 + 1742: 54,42 + 1743: 46,42 + 1744: 48,44 + 1795: 71,44 + 1796: 66,42 + 1797: 74,42 + 1816: 34,60 + 1817: 34,57 + 1819: 34,57 - node: color: '#A46106A7' id: DirtMedium @@ -2366,147 +2367,147 @@ entities: 1149: 15,46 1150: 12,48 1152: 13,48 - 1849: 55,38 - 1850: 55,38 - 1851: 57,39 - 1852: 54,40 - 1856: 54,29 - 1857: 54,34 - 1858: 53,27 - 1859: 53,23 - 1867: 50,22 - 1868: 50,22 - 1869: 53,24 - 1870: 53,24 - 1880: 57,39 - 1881: 57,39 - 1882: 51,37 - 1897: 48,36 - 1898: 36,14 - 1899: 34,15 - 1900: 34,18 - 1901: 38,17 - 1902: 39,18 - 1910: 37,17 - 1911: 36,17 - 1912: 36,14 - 1913: 36,13 - 1921: 33,9 - 1922: 33,9 - 1923: 32,9 - 1933: 21,22 - 1934: 18,21 - 1935: 22,22 - 1936: 12,20 - 1937: 10,22 - 1938: 5,21 - 1939: -1,24 - 1940: 1,27 - 1941: -2,27 - 1942: -1,21 - 1943: 2,21 - 1944: 9,22 - 1968: 12,17 - 1969: 17,21 - 1984: -4,27 - 1985: -4,28 - 1992: -6,40 - 1993: -6,40 - 1994: -5,37 - 1995: -7,36 - 1996: -6,32 - 1997: -6,32 - 1998: -6,32 - 2017: -2,51 - 2018: 0,48 - 2019: -2,47 - 2020: 6,48 - 2021: 6,48 - 2022: 7,50 - 2023: 8,49 - 2035: 6,48 - 2036: 7,50 - 2037: 10,49 - 2038: 8,46 + 1843: 55,38 + 1844: 55,38 + 1845: 57,39 + 1846: 54,40 + 1850: 54,29 + 1851: 54,34 + 1852: 53,27 + 1853: 53,23 + 1861: 50,22 + 1862: 50,22 + 1863: 53,24 + 1864: 53,24 + 1874: 57,39 + 1875: 57,39 + 1876: 51,37 + 1891: 48,36 + 1892: 36,14 + 1893: 34,15 + 1894: 34,18 + 1895: 38,17 + 1896: 39,18 + 1904: 37,17 + 1905: 36,17 + 1906: 36,14 + 1907: 36,13 + 1915: 33,9 + 1916: 33,9 + 1917: 32,9 + 1927: 21,22 + 1928: 18,21 + 1929: 22,22 + 1930: 12,20 + 1931: 10,22 + 1932: 5,21 + 1933: -1,24 + 1934: 1,27 + 1935: -2,27 + 1936: -1,21 + 1937: 2,21 + 1938: 9,22 + 1962: 12,17 + 1963: 17,21 + 1978: -4,27 + 1979: -4,28 + 1986: -6,40 + 1987: -6,40 + 1988: -5,37 + 1989: -7,36 + 1990: -6,32 + 1991: -6,32 + 1992: -6,32 + 2011: -2,51 + 2012: 0,48 + 2013: -2,47 + 2014: 6,48 + 2015: 6,48 + 2016: 7,50 + 2017: 8,49 + 2029: 6,48 + 2030: 7,50 + 2031: 10,49 + 2032: 8,46 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 1596: 29,26 - 1597: 22,29 - 1598: 26,30 - 1599: 25,22 - 1606: 25,21 - 1607: 25,29 - 1608: 25,26 - 1635: 26,42 - 1636: 25,48 - 1637: 31,42 - 1638: 35,44 - 1639: 36,42 - 1647: 32,44 - 1648: 33,42 - 1649: 27,44 - 1650: 37,44 - 1651: 39,45 - 1652: 41,42 - 1657: 41,48 - 1658: 39,52 - 1659: 41,56 - 1660: 41,50 - 1661: 39,48 - 1666: 41,61 - 1667: 47,65 - 1668: 51,63 - 1669: 51,65 - 1688: 47,70 - 1689: 45,68 - 1690: 47,67 - 1698: 43,72 - 1699: 43,75 - 1700: 41,76 - 1701: 46,72 - 1708: 42,69 - 1709: 43,68 - 1710: 42,67 - 1711: 43,70 - 1712: 40,68 - 1713: 51,61 - 1714: 45,59 - 1715: 49,61 - 1716: 50,59 - 1729: 44,57 - 1730: 45,54 - 1731: 43,56 - 1732: 45,55 - 1733: 48,54 - 1734: 48,57 - 1735: 49,54 - 1736: 51,56 - 1746: 51,42 - 1747: 50,44 - 1748: 43,42 - 1749: 58,44 - 1750: 56,42 - 1799: 62,44 - 1800: 60,42 - 1801: 67,44 - 1802: 66,42 - 1803: 75,42 - 1804: 76,44 - 1813: 34,61 - 1814: 36,60 - 1815: 36,63 - 1816: 35,64 - 1821: 38,57 - 1823: 34,57 - 1834: 35,66 - 1835: 33,61 - 1836: 35,60 - 1837: 34,60 - 1838: 37,63 - 1839: 34,58 + 1595: 29,26 + 1596: 22,29 + 1597: 26,30 + 1598: 25,22 + 1605: 25,21 + 1606: 25,29 + 1607: 25,26 + 1634: 26,42 + 1635: 25,48 + 1636: 31,42 + 1637: 35,44 + 1638: 36,42 + 1646: 32,44 + 1647: 33,42 + 1648: 27,44 + 1649: 37,44 + 1650: 39,45 + 1651: 41,42 + 1656: 41,48 + 1657: 39,52 + 1658: 41,56 + 1659: 41,50 + 1660: 39,48 + 1665: 41,61 + 1666: 47,65 + 1667: 51,63 + 1668: 51,65 + 1687: 47,70 + 1688: 45,68 + 1689: 47,67 + 1697: 43,72 + 1698: 43,75 + 1699: 41,76 + 1700: 46,72 + 1707: 42,69 + 1708: 43,68 + 1709: 42,67 + 1710: 43,70 + 1711: 40,68 + 1712: 51,61 + 1713: 45,59 + 1714: 49,61 + 1715: 50,59 + 1728: 44,57 + 1729: 45,54 + 1730: 43,56 + 1731: 45,55 + 1732: 48,54 + 1733: 48,57 + 1734: 49,54 + 1735: 51,56 + 1745: 51,42 + 1746: 50,44 + 1747: 43,42 + 1748: 58,44 + 1749: 56,42 + 1798: 62,44 + 1799: 60,42 + 1800: 67,44 + 1801: 66,42 + 1802: 75,42 + 1803: 76,44 + 1812: 34,61 + 1813: 36,60 + 1814: 36,63 + 1815: 35,64 + 1818: 38,57 + 1820: 34,57 + 1828: 35,66 + 1829: 33,61 + 1830: 35,60 + 1831: 34,60 + 1832: 37,63 + 1833: 34,58 - node: color: '#00FFFF66' id: WarnCornerGreyscaleNW @@ -2521,7 +2522,7 @@ entities: color: '#00B400CC' id: WarnCornerNE decals: - 1527: 46,72 + 1526: 46,72 - node: color: '#EFB341CC' id: WarnCornerNE @@ -2532,12 +2533,12 @@ entities: color: '#00B400CC' id: WarnCornerNW decals: - 1533: 40,72 + 1532: 40,72 - node: color: '#00B400CC' id: WarnCornerSE decals: - 1525: 39,73 + 1524: 39,73 - node: color: '#DE3A3ACC' id: WarnCornerSE @@ -2547,12 +2548,12 @@ entities: color: '#00B400CC' id: WarnCornerSW decals: - 1526: 47,73 + 1525: 47,73 - node: color: '#334E6DB2' id: WarnCornerSmallGreyscaleNE decals: - 1494: 50,67 + 1493: 50,67 - node: color: '#52B4E9CC' id: WarnCornerSmallGreyscaleNE @@ -2596,7 +2597,7 @@ entities: color: '#8932B8CC' id: WarnCornerSmallGreyscaleSE decals: - 2077: 35,55 + 2068: 35,55 - node: color: '#00FFFF66' id: WarnCornerSmallGreyscaleSW @@ -2606,7 +2607,7 @@ entities: color: '#334E6DCC' id: WarnCornerSmallGreyscaleSW decals: - 1562: 40,68 + 1561: 40,68 - node: color: '#52B4E9CC' id: WarnCornerSmallGreyscaleSW @@ -2620,9 +2621,9 @@ entities: color: '#00B400CC' id: WarnCornerSmallNE decals: - 1440: 45,46 - 1536: 42,75 - 1537: 44,72 + 1439: 45,46 + 1535: 42,75 + 1536: 44,72 - node: color: '#A46106CC' id: WarnCornerSmallNE @@ -2651,8 +2652,8 @@ entities: color: '#00B400CC' id: WarnCornerSmallNW decals: - 1534: 42,72 - 1535: 44,75 + 1533: 42,72 + 1534: 44,75 - node: color: '#80C71FCC' id: WarnCornerSmallNW @@ -2677,7 +2678,7 @@ entities: color: '#00B400CC' id: WarnCornerSmallSE decals: - 1529: 44,74 + 1528: 44,74 - node: color: '#A46106CC' id: WarnCornerSmallSE @@ -2699,7 +2700,7 @@ entities: color: '#00B400CC' id: WarnCornerSmallSW decals: - 1531: 42,74 + 1530: 42,74 - node: color: '#DE3A3ACC' id: WarnCornerSmallSW @@ -2722,10 +2723,10 @@ entities: color: '#00B400CC' id: WarnLineE decals: - 1437: 45,47 - 1438: 45,48 - 1523: 44,73 - 1524: 42,76 + 1436: 45,47 + 1437: 45,48 + 1522: 44,73 + 1523: 42,76 - node: color: '#80C71FCC' id: WarnLineE @@ -2795,14 +2796,14 @@ entities: color: '#EFB341CC' id: WarnLineE decals: - 1787: 76,44 - 1788: 76,43 - 1789: 76,42 + 1786: 76,44 + 1787: 76,43 + 1788: 76,42 - node: color: '#334E6DB2' id: WarnLineGreyscaleE decals: - 1492: 50,68 + 1491: 50,68 - node: color: '#52B4E9CC' id: WarnLineGreyscaleE @@ -2828,12 +2829,12 @@ entities: color: '#8932B8CC' id: WarnLineGreyscaleE decals: - 2076: 35,54 + 2067: 35,54 - node: color: '#D4D4D4B2' id: WarnLineGreyscaleE decals: - 1491: 50,69 + 1490: 50,69 - node: color: '#00FFFF66' id: WarnLineGreyscaleN @@ -2846,7 +2847,7 @@ entities: color: '#334E6DB2' id: WarnLineGreyscaleN decals: - 1493: 51,67 + 1492: 51,67 - node: color: '#52B4E9CC' id: WarnLineGreyscaleN @@ -2875,7 +2876,7 @@ entities: color: '#334E6DCC' id: WarnLineGreyscaleS decals: - 1558: 39,68 + 1557: 39,68 - node: color: '#52B4E9CC' id: WarnLineGreyscaleS @@ -2894,8 +2895,8 @@ entities: color: '#8932B8CC' id: WarnLineGreyscaleS decals: - 2074: 37,55 - 2075: 36,55 + 2065: 37,55 + 2066: 36,55 - node: color: '#00FFFF66' id: WarnLineGreyscaleW @@ -2909,7 +2910,7 @@ entities: color: '#334E6DCC' id: WarnLineGreyscaleW decals: - 1561: 40,67 + 1560: 40,67 - node: color: '#52B4E9CC' id: WarnLineGreyscaleW @@ -2938,14 +2939,14 @@ entities: color: '#8932B8CC' id: WarnLineGreyscaleW decals: - 2072: 34,54 - 2073: 34,55 + 2063: 34,54 + 2064: 34,55 - node: color: '#00B400CC' id: WarnLineN decals: - 1528: 45,74 - 1530: 41,74 + 1527: 45,74 + 1529: 41,74 - node: color: '#A46106CC' id: WarnLineN @@ -2979,23 +2980,23 @@ entities: 1264: 25,32 1265: 26,32 1266: 27,32 - 1371: 39,47 - 1372: 40,47 - 1373: 41,47 + 1370: 39,47 + 1371: 40,47 + 1372: 41,47 - node: cleanable: True color: '#EFB341CC' id: WarnLineN decals: - 1790: 70,42 - 1791: 69,42 - 1792: 68,42 + 1789: 70,42 + 1790: 69,42 + 1791: 68,42 - node: color: '#00B400CC' id: WarnLineS decals: - 1521: 42,73 - 1522: 44,76 + 1520: 42,73 + 1521: 44,76 - node: color: '#80C71FCC' id: WarnLineS @@ -3011,9 +3012,9 @@ entities: color: '#DE3A3AB2' id: WarnLineS decals: - 1374: 39,48 - 1375: 39,49 - 1376: 39,50 + 1373: 39,48 + 1374: 39,49 + 1375: 39,50 - node: color: '#DE3A3ACC' id: WarnLineS @@ -3061,21 +3062,21 @@ entities: color: '#EFB341CC' id: WarnLineS decals: - 1793: 60,42 - 1794: 60,43 - 1795: 60,44 + 1792: 60,42 + 1793: 60,43 + 1794: 60,44 - node: color: '#00B400CC' id: WarnLineW decals: - 1433: 51,51 - 1434: 50,51 - 1435: 56,51 - 1436: 55,51 - 1439: 46,46 - 1518: 41,72 - 1519: 45,72 - 1520: 43,75 + 1432: 51,51 + 1433: 50,51 + 1434: 56,51 + 1435: 55,51 + 1438: 46,46 + 1517: 41,72 + 1518: 45,72 + 1519: 43,75 - node: color: '#80C71FCC' id: WarnLineW @@ -3144,9 +3145,9 @@ entities: color: '#EFB341CC' id: WarnLineW decals: - 1784: 68,44 - 1785: 70,44 - 1786: 69,44 + 1783: 68,44 + 1784: 70,44 + 1785: 69,44 - type: GridAtmosphere version: 2 data: @@ -4551,8 +4552,6 @@ entities: - 2198 - 2277 - 6057 - - type: AtmosDevice - joinedGrid: 2 - uid: 4111 components: - type: Transform @@ -4564,8 +4563,6 @@ entities: - 2192 - 2272 - 4025 - - type: AtmosDevice - joinedGrid: 2 - uid: 4383 components: - type: Transform @@ -4593,8 +4590,6 @@ entities: - 2232 - 4331 - 4338 - - type: AtmosDevice - joinedGrid: 2 - uid: 4384 components: - type: Transform @@ -4621,8 +4616,6 @@ entities: - 2290 - 2231 - 2291 - - type: AtmosDevice - joinedGrid: 2 - uid: 4385 components: - type: Transform @@ -4640,8 +4633,6 @@ entities: - 2240 - 2241 - 4300 - - type: AtmosDevice - joinedGrid: 2 - uid: 4386 components: - type: Transform @@ -4658,8 +4649,6 @@ entities: - 4340 - 2296 - 2235 - - type: AtmosDevice - joinedGrid: 2 - uid: 4387 components: - type: Transform @@ -4673,8 +4662,6 @@ entities: - 4355 - 6059 - 6058 - - type: AtmosDevice - joinedGrid: 2 - uid: 4388 components: - type: Transform @@ -4688,8 +4675,6 @@ entities: - 2294 - 4339 - 4338 - - type: AtmosDevice - joinedGrid: 2 - uid: 5000 components: - type: Transform @@ -4705,8 +4690,6 @@ entities: - 2334 - 2208 - 4998 - - type: AtmosDevice - joinedGrid: 2 - uid: 5001 components: - type: Transform @@ -4721,8 +4704,6 @@ entities: - 2210 - 2337 - 2336 - - type: AtmosDevice - joinedGrid: 2 - uid: 5002 components: - type: Transform @@ -4753,8 +4734,6 @@ entities: - 2218 - 2351 - 2217 - - type: AtmosDevice - joinedGrid: 2 - uid: 5003 components: - type: Transform @@ -4767,8 +4746,6 @@ entities: - 2341 - 4797 - 4798 - - type: AtmosDevice - joinedGrid: 2 - uid: 5004 components: - type: Transform @@ -4781,8 +4758,6 @@ entities: - 4806 - 4805 - 4799 - - type: AtmosDevice - joinedGrid: 2 - uid: 5005 components: - type: Transform @@ -4795,8 +4770,6 @@ entities: - 4807 - 4801 - 4798 - - type: AtmosDevice - joinedGrid: 2 - uid: 5006 components: - type: Transform @@ -4811,8 +4784,6 @@ entities: - 4797 - 4801 - 4804 - - type: AtmosDevice - joinedGrid: 2 - uid: 5007 components: - type: Transform @@ -4827,8 +4798,6 @@ entities: - 2214 - 2344 - 4802 - - type: AtmosDevice - joinedGrid: 2 - uid: 5008 components: - type: Transform @@ -4843,8 +4812,6 @@ entities: - 4804 - 4808 - 4809 - - type: AtmosDevice - joinedGrid: 2 - uid: 5009 components: - type: Transform @@ -4856,8 +4823,6 @@ entities: - 2215 - 2348 - 4791 - - type: AtmosDevice - joinedGrid: 2 - uid: 5010 components: - type: Transform @@ -4868,8 +4833,6 @@ entities: - 2333 - 2225 - 4872 - - type: AtmosDevice - joinedGrid: 2 - uid: 5033 components: - type: Transform @@ -4886,8 +4849,6 @@ entities: - 5101 - 2332 - 2257 - - type: AtmosDevice - joinedGrid: 2 - uid: 5299 components: - type: Transform @@ -4902,16 +4863,12 @@ entities: - 2254 - 2313 - 2314 - - type: AtmosDevice - joinedGrid: 2 - uid: 5300 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5339 components: - type: Transform @@ -4928,8 +4885,6 @@ entities: - 2310 - 2252 - 2312 - - type: AtmosDevice - joinedGrid: 2 - uid: 5552 components: - type: Transform @@ -4942,8 +4897,6 @@ entities: - 5121 - 2206 - 2306 - - type: AtmosDevice - joinedGrid: 2 - uid: 5553 components: - type: Transform @@ -4960,8 +4913,6 @@ entities: - 5118 - 2303 - 2203 - - type: AtmosDevice - joinedGrid: 2 - uid: 5554 components: - type: Transform @@ -4982,8 +4933,6 @@ entities: - 5116 - 2302 - 2202 - - type: AtmosDevice - joinedGrid: 2 - uid: 5555 components: - type: Transform @@ -4998,8 +4947,6 @@ entities: - 2300 - 5113 - 5114 - - type: AtmosDevice - joinedGrid: 2 - uid: 5556 components: - type: Transform @@ -5017,8 +4964,6 @@ entities: - 6057 - 5111 - 5112 - - type: AtmosDevice - joinedGrid: 2 - uid: 5557 components: - type: Transform @@ -5039,8 +4984,6 @@ entities: - 5433 - 5676 - 5099 - - type: AtmosDevice - joinedGrid: 2 - uid: 5558 components: - type: Transform @@ -5059,16 +5002,12 @@ entities: - 2264 - 2321 - 5676 - - type: AtmosDevice - joinedGrid: 2 - uid: 5559 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,67.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5560 components: - type: Transform @@ -5086,8 +5025,6 @@ entities: - 5435 - 6055 - 5436 - - type: AtmosDevice - joinedGrid: 2 - uid: 6060 components: - type: Transform @@ -5101,8 +5038,6 @@ entities: - 4795 - 4793 - 4796 - - type: AtmosDevice - joinedGrid: 2 - uid: 6061 components: - type: Transform @@ -5116,8 +5051,6 @@ entities: - 2262 - 5360 - 5359 - - type: AtmosDevice - joinedGrid: 2 - uid: 6566 components: - type: Transform @@ -5143,8 +5076,6 @@ entities: - 6749 - 6831 - 6819 - - type: AtmosDevice - joinedGrid: 6565 - uid: 6567 components: - type: Transform @@ -5159,8 +5090,6 @@ entities: - 6827 - 6750 - 6754 - - type: AtmosDevice - joinedGrid: 6565 - proto: AirCanister entities: - uid: 5993 @@ -5168,22 +5097,22 @@ entities: - type: Transform pos: 22.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: AirCanister - uid: 5994 components: - type: Transform pos: 12.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: AirCanister - uid: 6568 components: - type: Transform pos: -2.5,-3.5 parent: 6565 - - type: AtmosDevice - joinedGrid: 6565 + - type: PolymorphableCanister + currentPrototype: AirCanister - proto: AirlockArmoryLocked entities: - uid: 4360 @@ -5521,6 +5450,10 @@ entities: - type: Docking dockJointId: docking138610 dockedWith: 6574 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True - uid: 5538 components: - type: Transform @@ -5530,6 +5463,10 @@ entities: - type: Docking dockJointId: docking138611 dockedWith: 6573 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True - uid: 5542 components: - type: Transform @@ -5573,6 +5510,10 @@ entities: - type: Docking dockJointId: docking138611 dockedWith: 5538 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True - uid: 6574 components: - type: Transform @@ -5582,6 +5523,10 @@ entities: - type: Docking dockJointId: docking138610 dockedWith: 5383 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True - proto: AirlockFreezer entities: - uid: 4362 @@ -6262,11 +6207,13 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-7.5 parent: 6565 - - uid: 6576 +- proto: APCHyperCapacity + entities: + - uid: 4609 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,7.5 + pos: -2.5,8.5 parent: 6565 - proto: AppraisalTool entities: @@ -11576,6 +11523,11 @@ entities: - type: Transform pos: 36.5,57.5 parent: 2 + - uid: 4613 + components: + - type: Transform + pos: -2.5,8.5 + parent: 6565 - uid: 5488 components: - type: Transform @@ -15825,6 +15777,11 @@ entities: - type: Transform pos: 58.5,37.5 parent: 2 + - uid: 4641 + components: + - type: Transform + pos: -2.5,8.5 + parent: 6565 - uid: 5490 components: - type: Transform @@ -15987,15 +15944,15 @@ entities: - type: Transform pos: 41.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: CarbonDioxideCanister - uid: 5991 components: - type: Transform pos: 10.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: CarbonDioxideCanister - proto: Carpet entities: - uid: 4485 @@ -18370,18 +18327,6 @@ entities: rot: 1.5707963267948966 rad pos: 44.63566,52.07726 parent: 2 -- proto: chem_master - entities: - - uid: 4499 - components: - - type: Transform - pos: 3.5,28.5 - parent: 2 - - uid: 6713 - components: - - type: Transform - pos: -0.5,4.5 - parent: 6565 - proto: ChemDispenser entities: - uid: 4497 @@ -18411,6 +18356,18 @@ entities: - type: Transform pos: 44.5,54.5 parent: 2 +- proto: ChemMaster + entities: + - uid: 4499 + components: + - type: Transform + pos: 3.5,28.5 + parent: 2 + - uid: 6713 + components: + - type: Transform + pos: -0.5,4.5 + parent: 6565 - proto: ChessBoard entities: - uid: 4763 @@ -18658,11 +18615,11 @@ entities: showEnts: False occludes: True ents: - - 6717 + - 6718 - 6720 - 6719 - 6716 - - 6718 + - 6717 - uid: 6726 components: - type: Transform @@ -19536,11 +19493,6 @@ entities: - type: Transform pos: 43.5,76.5 parent: 2 - - uid: 5400 - components: - - type: Transform - pos: 40.5,73.5 - parent: 2 - uid: 6737 components: - type: Transform @@ -19572,6 +19524,13 @@ entities: - type: Transform pos: 46.5,73.5 parent: 2 +- proto: ComputerDeepSpaceCom + entities: + - uid: 4605 + components: + - type: Transform + pos: 40.5,73.5 + parent: 2 - proto: ComputerId entities: - uid: 5398 @@ -20011,6 +19970,9 @@ entities: - type: Transform pos: 51.5,68.5 parent: 2 + - type: SingletonDeviceNetServer + active: False + available: False - proto: CryogenicSleepUnit entities: - uid: 6496 @@ -20029,6 +19991,14 @@ entities: - type: Transform pos: 51.5,48.5 parent: 2 +- proto: DeepSpaceComWallMount + entities: + - uid: 4617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 6565 - proto: Defibrillator entities: - uid: 270 @@ -22013,6 +21983,16 @@ entities: canCollide: False - proto: ExtinguisherCabinetFilled entities: + - uid: 4645 + components: + - type: Transform + pos: 3.5,8.5 + parent: 6565 + - uid: 5042 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 6565 - uid: 6190 components: - type: Transform @@ -23075,8 +23055,6 @@ entities: - type: Transform pos: 18.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMinerOxygenStationLarge entities: - uid: 1245 @@ -23084,8 +23062,6 @@ entities: - type: Transform pos: 16.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMixerFlipped entities: - uid: 1249 @@ -23094,8 +23070,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasPassiveVent entities: - uid: 1247 @@ -23103,23 +23077,17 @@ entities: - type: Transform pos: 18.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 1248 components: - type: Transform pos: 16.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 1723 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 6756 @@ -23128,8 +23096,6 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-6.5 parent: 6565 - - type: AtmosDevice - joinedGrid: 6565 - proto: GasPipeBend entities: - uid: 895 @@ -30894,8 +30860,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 3972 @@ -30904,8 +30868,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 6816 @@ -30914,8 +30876,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-3.5 parent: 6565 - - type: AtmosDevice - joinedGrid: 6565 - proto: GasPressurePump entities: - uid: 1250 @@ -30923,23 +30883,17 @@ entities: - type: Transform pos: 18.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 1251 components: - type: Transform pos: 16.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 1256 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6817 @@ -30948,8 +30902,6 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-3.5 parent: 6565 - - type: AtmosDevice - joinedGrid: 6565 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6818 @@ -30958,8 +30910,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-4.5 parent: 6565 - - type: AtmosDevice - joinedGrid: 6565 - type: AtmosPipeColor color: '#E32636FF' - proto: GasValve @@ -30969,8 +30919,6 @@ entities: - type: Transform pos: 19.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - proto: GasVentPump @@ -30983,8 +30931,6 @@ entities: - type: DeviceNetwork deviceLists: - 4107 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2272 @@ -30996,8 +30942,6 @@ entities: - type: DeviceNetwork deviceLists: - 4111 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2273 @@ -31009,8 +30953,6 @@ entities: - type: DeviceNetwork deviceLists: - 4107 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2274 @@ -31022,8 +30964,6 @@ entities: - type: DeviceNetwork deviceLists: - 4107 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2275 @@ -31035,8 +30975,6 @@ entities: - type: DeviceNetwork deviceLists: - 4107 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2276 @@ -31047,8 +30985,6 @@ entities: - type: DeviceNetwork deviceLists: - 4107 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2277 @@ -31060,8 +30996,6 @@ entities: - type: DeviceNetwork deviceLists: - 4107 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2278 @@ -31070,8 +31004,6 @@ entities: rot: 3.141592653589793 rad pos: 34.5,21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2279 @@ -31083,8 +31015,6 @@ entities: - type: DeviceNetwork deviceLists: - 4387 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2280 @@ -31096,8 +31026,6 @@ entities: - type: DeviceNetwork deviceLists: - 4383 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2281 @@ -31109,8 +31037,6 @@ entities: - type: DeviceNetwork deviceLists: - 4385 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2282 @@ -31122,8 +31048,6 @@ entities: - type: DeviceNetwork deviceLists: - 4385 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2283 @@ -31135,8 +31059,6 @@ entities: - type: DeviceNetwork deviceLists: - 4386 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2284 @@ -31147,8 +31069,6 @@ entities: - type: DeviceNetwork deviceLists: - 4383 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2285 @@ -31159,8 +31079,6 @@ entities: - type: DeviceNetwork deviceLists: - 4383 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2286 @@ -31172,8 +31090,6 @@ entities: - type: DeviceNetwork deviceLists: - 4384 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2287 @@ -31185,8 +31101,6 @@ entities: - type: DeviceNetwork deviceLists: - 4384 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2288 @@ -31198,8 +31112,6 @@ entities: - type: DeviceNetwork deviceLists: - 4384 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2289 @@ -31210,8 +31122,6 @@ entities: - type: DeviceNetwork deviceLists: - 4384 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2290 @@ -31222,8 +31132,6 @@ entities: - type: DeviceNetwork deviceLists: - 4384 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2291 @@ -31234,8 +31142,6 @@ entities: - type: DeviceNetwork deviceLists: - 4384 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2292 @@ -31247,8 +31153,6 @@ entities: - type: DeviceNetwork deviceLists: - 4384 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2293 @@ -31259,8 +31163,6 @@ entities: - type: DeviceNetwork deviceLists: - 4383 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2294 @@ -31271,8 +31173,6 @@ entities: - type: DeviceNetwork deviceLists: - 4388 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2295 @@ -31284,8 +31184,6 @@ entities: - type: DeviceNetwork deviceLists: - 4388 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2296 @@ -31297,8 +31195,6 @@ entities: - type: DeviceNetwork deviceLists: - 4386 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2297 @@ -31310,8 +31206,6 @@ entities: - type: DeviceNetwork deviceLists: - 4386 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2298 @@ -31323,8 +31217,6 @@ entities: - type: DeviceNetwork deviceLists: - 4383 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2299 @@ -31335,8 +31227,6 @@ entities: - type: DeviceNetwork deviceLists: - 5556 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2300 @@ -31347,8 +31237,6 @@ entities: - type: DeviceNetwork deviceLists: - 5555 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2301 @@ -31359,8 +31247,6 @@ entities: - type: DeviceNetwork deviceLists: - 5554 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2302 @@ -31372,8 +31258,6 @@ entities: - type: DeviceNetwork deviceLists: - 5554 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2303 @@ -31385,8 +31269,6 @@ entities: - type: DeviceNetwork deviceLists: - 5553 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2304 @@ -31398,8 +31280,6 @@ entities: - type: DeviceNetwork deviceLists: - 5553 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2305 @@ -31410,8 +31290,6 @@ entities: - type: DeviceNetwork deviceLists: - 5552 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2306 @@ -31422,8 +31300,6 @@ entities: - type: DeviceNetwork deviceLists: - 5552 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2307 @@ -31432,8 +31308,6 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2308 @@ -31441,8 +31315,6 @@ entities: - type: Transform pos: 55.5,51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2309 @@ -31453,8 +31325,6 @@ entities: - type: DeviceNetwork deviceLists: - 5339 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2310 @@ -31465,8 +31335,6 @@ entities: - type: DeviceNetwork deviceLists: - 5339 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2311 @@ -31474,8 +31342,6 @@ entities: - type: Transform pos: 53.5,51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2312 @@ -31487,8 +31353,6 @@ entities: - type: DeviceNetwork deviceLists: - 5339 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2313 @@ -31500,8 +31364,6 @@ entities: - type: DeviceNetwork deviceLists: - 5299 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2314 @@ -31513,8 +31375,6 @@ entities: - type: DeviceNetwork deviceLists: - 5299 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2315 @@ -31525,8 +31385,6 @@ entities: - type: DeviceNetwork deviceLists: - 5299 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2316 @@ -31534,8 +31392,6 @@ entities: - type: Transform pos: 40.5,48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2317 @@ -31546,8 +31402,6 @@ entities: - type: DeviceNetwork deviceLists: - 5557 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2318 @@ -31559,8 +31413,6 @@ entities: - type: DeviceNetwork deviceLists: - 5558 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2319 @@ -31572,8 +31424,6 @@ entities: - type: DeviceNetwork deviceLists: - 5558 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2320 @@ -31585,8 +31435,6 @@ entities: - type: DeviceNetwork deviceLists: - 5558 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2321 @@ -31598,8 +31446,6 @@ entities: - type: DeviceNetwork deviceLists: - 5558 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2322 @@ -31611,8 +31457,6 @@ entities: - type: DeviceNetwork deviceLists: - 5557 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2323 @@ -31624,8 +31468,6 @@ entities: - type: DeviceNetwork deviceLists: - 5557 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2324 @@ -31636,8 +31478,6 @@ entities: - type: DeviceNetwork deviceLists: - 6061 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2325 @@ -31649,8 +31489,6 @@ entities: - type: DeviceNetwork deviceLists: - 6061 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2326 @@ -31662,8 +31500,6 @@ entities: - type: DeviceNetwork deviceLists: - 5560 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2327 @@ -31674,8 +31510,6 @@ entities: - type: DeviceNetwork deviceLists: - 5560 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2328 @@ -31684,8 +31518,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,67.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2329 @@ -31694,8 +31526,6 @@ entities: rot: 3.141592653589793 rad pos: 39.5,67.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2330 @@ -31703,8 +31533,6 @@ entities: - type: Transform pos: 39.5,70.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2331 @@ -31716,8 +31544,6 @@ entities: - type: DeviceNetwork deviceLists: - 5033 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2332 @@ -31729,8 +31555,6 @@ entities: - type: DeviceNetwork deviceLists: - 5033 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2333 @@ -31742,8 +31566,6 @@ entities: - type: DeviceNetwork deviceLists: - 5010 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2334 @@ -31754,8 +31576,6 @@ entities: - type: DeviceNetwork deviceLists: - 5000 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2335 @@ -31766,8 +31586,6 @@ entities: - type: DeviceNetwork deviceLists: - 5000 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2336 @@ -31778,8 +31596,6 @@ entities: - type: DeviceNetwork deviceLists: - 5001 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2337 @@ -31790,8 +31606,6 @@ entities: - type: DeviceNetwork deviceLists: - 5001 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2338 @@ -31803,8 +31617,6 @@ entities: - type: DeviceNetwork deviceLists: - 5001 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2339 @@ -31816,8 +31628,6 @@ entities: - type: DeviceNetwork deviceLists: - 5006 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2340 @@ -31829,8 +31639,6 @@ entities: - type: DeviceNetwork deviceLists: - 5005 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2341 @@ -31842,8 +31650,6 @@ entities: - type: DeviceNetwork deviceLists: - 5003 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2342 @@ -31855,8 +31661,6 @@ entities: - type: DeviceNetwork deviceLists: - 5007 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2343 @@ -31867,8 +31671,6 @@ entities: - type: DeviceNetwork deviceLists: - 5002 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2344 @@ -31880,8 +31682,6 @@ entities: - type: DeviceNetwork deviceLists: - 5007 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2345 @@ -31893,8 +31693,6 @@ entities: - type: DeviceNetwork deviceLists: - 5002 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2346 @@ -31906,8 +31704,6 @@ entities: - type: DeviceNetwork deviceLists: - 5002 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2347 @@ -31919,8 +31715,6 @@ entities: - type: DeviceNetwork deviceLists: - 6060 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2348 @@ -31931,8 +31725,6 @@ entities: - type: DeviceNetwork deviceLists: - 5009 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2349 @@ -31944,8 +31736,6 @@ entities: - type: DeviceNetwork deviceLists: - 5002 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2350 @@ -31957,8 +31747,6 @@ entities: - type: DeviceNetwork deviceLists: - 5002 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2351 @@ -31970,8 +31758,6 @@ entities: - type: DeviceNetwork deviceLists: - 5002 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2352 @@ -31982,8 +31768,6 @@ entities: - type: DeviceNetwork deviceLists: - 5004 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2353 @@ -31995,8 +31779,6 @@ entities: - type: DeviceNetwork deviceLists: - 5008 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2354 @@ -32005,8 +31787,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4300 @@ -32017,8 +31797,6 @@ entities: - type: DeviceNetwork deviceLists: - 4385 - - type: AtmosDevice - joinedGrid: 2 - uid: 6819 components: - type: Transform @@ -32027,8 +31805,6 @@ entities: - type: DeviceNetwork deviceLists: - 6566 - - type: AtmosDevice - joinedGrid: 6565 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6820 @@ -32040,8 +31816,6 @@ entities: - type: DeviceNetwork deviceLists: - 6566 - - type: AtmosDevice - joinedGrid: 6565 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6821 @@ -32053,8 +31827,6 @@ entities: - type: DeviceNetwork deviceLists: - 6566 - - type: AtmosDevice - joinedGrid: 6565 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6822 @@ -32066,8 +31838,6 @@ entities: - type: DeviceNetwork deviceLists: - 6566 - - type: AtmosDevice - joinedGrid: 6565 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6823 @@ -32079,8 +31849,6 @@ entities: - type: DeviceNetwork deviceLists: - 6566 - - type: AtmosDevice - joinedGrid: 6565 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6824 @@ -32092,8 +31860,6 @@ entities: - type: DeviceNetwork deviceLists: - 6566 - - type: AtmosDevice - joinedGrid: 6565 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6825 @@ -32105,8 +31871,6 @@ entities: - type: DeviceNetwork deviceLists: - 6567 - - type: AtmosDevice - joinedGrid: 6565 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6826 @@ -32118,8 +31882,6 @@ entities: - type: DeviceNetwork deviceLists: - 6567 - - type: AtmosDevice - joinedGrid: 6565 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentScrubber @@ -32133,8 +31895,6 @@ entities: - type: DeviceNetwork deviceLists: - 4111 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2193 @@ -32146,8 +31906,6 @@ entities: - type: DeviceNetwork deviceLists: - 4107 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2194 @@ -32159,8 +31917,6 @@ entities: - type: DeviceNetwork deviceLists: - 4107 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2195 @@ -32172,8 +31928,6 @@ entities: - type: DeviceNetwork deviceLists: - 4107 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2196 @@ -32184,8 +31938,6 @@ entities: - type: DeviceNetwork deviceLists: - 4107 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2197 @@ -32196,8 +31948,6 @@ entities: - type: DeviceNetwork deviceLists: - 4107 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2198 @@ -32209,8 +31959,6 @@ entities: - type: DeviceNetwork deviceLists: - 4107 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2199 @@ -32221,8 +31969,6 @@ entities: - type: DeviceNetwork deviceLists: - 5556 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2200 @@ -32233,8 +31979,6 @@ entities: - type: DeviceNetwork deviceLists: - 5555 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2201 @@ -32245,8 +31989,6 @@ entities: - type: DeviceNetwork deviceLists: - 5554 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2202 @@ -32258,8 +32000,6 @@ entities: - type: DeviceNetwork deviceLists: - 5554 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2203 @@ -32271,8 +32011,6 @@ entities: - type: DeviceNetwork deviceLists: - 5553 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2204 @@ -32284,8 +32022,6 @@ entities: - type: DeviceNetwork deviceLists: - 5553 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2205 @@ -32296,8 +32032,6 @@ entities: - type: DeviceNetwork deviceLists: - 5552 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2206 @@ -32308,8 +32042,6 @@ entities: - type: DeviceNetwork deviceLists: - 5552 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2207 @@ -32320,8 +32052,6 @@ entities: - type: DeviceNetwork deviceLists: - 5000 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2208 @@ -32332,8 +32062,6 @@ entities: - type: DeviceNetwork deviceLists: - 5000 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2209 @@ -32345,8 +32073,6 @@ entities: - type: DeviceNetwork deviceLists: - 5001 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2210 @@ -32357,8 +32083,6 @@ entities: - type: DeviceNetwork deviceLists: - 5001 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2211 @@ -32370,8 +32094,6 @@ entities: - type: DeviceNetwork deviceLists: - 5005 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2212 @@ -32383,8 +32105,6 @@ entities: - type: DeviceNetwork deviceLists: - 5003 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2213 @@ -32396,8 +32116,6 @@ entities: - type: DeviceNetwork deviceLists: - 5007 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2214 @@ -32409,8 +32127,6 @@ entities: - type: DeviceNetwork deviceLists: - 5007 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2215 @@ -32421,8 +32137,6 @@ entities: - type: DeviceNetwork deviceLists: - 5009 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2216 @@ -32434,8 +32148,6 @@ entities: - type: DeviceNetwork deviceLists: - 6060 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2217 @@ -32447,8 +32159,6 @@ entities: - type: DeviceNetwork deviceLists: - 5002 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2218 @@ -32460,8 +32170,6 @@ entities: - type: DeviceNetwork deviceLists: - 5002 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2219 @@ -32473,8 +32181,6 @@ entities: - type: DeviceNetwork deviceLists: - 5008 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2220 @@ -32486,8 +32192,6 @@ entities: - type: DeviceNetwork deviceLists: - 5006 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2221 @@ -32498,8 +32202,6 @@ entities: - type: DeviceNetwork deviceLists: - 5002 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2222 @@ -32510,8 +32212,6 @@ entities: - type: DeviceNetwork deviceLists: - 5002 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2223 @@ -32523,8 +32223,6 @@ entities: - type: DeviceNetwork deviceLists: - 5002 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2224 @@ -32535,8 +32233,6 @@ entities: - type: DeviceNetwork deviceLists: - 5004 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2225 @@ -32548,8 +32244,6 @@ entities: - type: DeviceNetwork deviceLists: - 5010 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2226 @@ -32560,8 +32254,6 @@ entities: - type: DeviceNetwork deviceLists: - 4384 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2227 @@ -32572,8 +32264,6 @@ entities: - type: DeviceNetwork deviceLists: - 4384 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2228 @@ -32585,8 +32275,6 @@ entities: - type: DeviceNetwork deviceLists: - 4384 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2229 @@ -32598,8 +32286,6 @@ entities: - type: DeviceNetwork deviceLists: - 4384 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2230 @@ -32611,8 +32297,6 @@ entities: - type: DeviceNetwork deviceLists: - 4384 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2231 @@ -32623,8 +32307,6 @@ entities: - type: DeviceNetwork deviceLists: - 4384 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2232 @@ -32635,8 +32317,6 @@ entities: - type: DeviceNetwork deviceLists: - 4383 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2233 @@ -32648,8 +32328,6 @@ entities: - type: DeviceNetwork deviceLists: - 4388 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2234 @@ -32660,8 +32338,6 @@ entities: - type: DeviceNetwork deviceLists: - 4388 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2235 @@ -32673,8 +32349,6 @@ entities: - type: DeviceNetwork deviceLists: - 4386 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2236 @@ -32686,8 +32360,6 @@ entities: - type: DeviceNetwork deviceLists: - 4386 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2237 @@ -32698,8 +32370,6 @@ entities: - type: DeviceNetwork deviceLists: - 4386 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2238 @@ -32711,8 +32381,6 @@ entities: - type: DeviceNetwork deviceLists: - 4383 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2239 @@ -32724,8 +32392,6 @@ entities: - type: DeviceNetwork deviceLists: - 4385 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2240 @@ -32737,8 +32403,6 @@ entities: - type: DeviceNetwork deviceLists: - 4385 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2241 @@ -32749,8 +32413,6 @@ entities: - type: DeviceNetwork deviceLists: - 4385 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2242 @@ -32762,8 +32424,6 @@ entities: - type: DeviceNetwork deviceLists: - 4383 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2243 @@ -32774,8 +32434,6 @@ entities: - type: DeviceNetwork deviceLists: - 4383 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2244 @@ -32786,8 +32444,6 @@ entities: - type: DeviceNetwork deviceLists: - 4383 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2245 @@ -32799,8 +32455,6 @@ entities: - type: DeviceNetwork deviceLists: - 4387 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2246 @@ -32809,8 +32463,6 @@ entities: rot: 3.141592653589793 rad pos: 35.5,21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2247 @@ -32821,8 +32473,6 @@ entities: - type: DeviceNetwork deviceLists: - 4384 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2249 @@ -32834,8 +32484,6 @@ entities: - type: DeviceNetwork deviceLists: - 5002 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2250 @@ -32844,8 +32492,6 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2251 @@ -32853,8 +32499,6 @@ entities: - type: Transform pos: 56.5,51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2252 @@ -32866,8 +32510,6 @@ entities: - type: DeviceNetwork deviceLists: - 5339 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2253 @@ -32878,8 +32520,6 @@ entities: - type: DeviceNetwork deviceLists: - 5339 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2254 @@ -32891,8 +32531,6 @@ entities: - type: DeviceNetwork deviceLists: - 5299 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2255 @@ -32904,8 +32542,6 @@ entities: - type: DeviceNetwork deviceLists: - 5299 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2256 @@ -32917,8 +32553,6 @@ entities: - type: DeviceNetwork deviceLists: - 5033 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2257 @@ -32930,8 +32564,6 @@ entities: - type: DeviceNetwork deviceLists: - 5033 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2258 @@ -32939,8 +32571,6 @@ entities: - type: Transform pos: 41.5,48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2259 @@ -32951,8 +32581,6 @@ entities: - type: DeviceNetwork deviceLists: - 5557 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2260 @@ -32964,8 +32592,6 @@ entities: - type: DeviceNetwork deviceLists: - 5557 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2261 @@ -32977,8 +32603,6 @@ entities: - type: DeviceNetwork deviceLists: - 5557 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2262 @@ -32990,8 +32614,6 @@ entities: - type: DeviceNetwork deviceLists: - 6061 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2263 @@ -33002,8 +32624,6 @@ entities: - type: DeviceNetwork deviceLists: - 6061 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2264 @@ -33015,8 +32635,6 @@ entities: - type: DeviceNetwork deviceLists: - 5558 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2265 @@ -33028,8 +32646,6 @@ entities: - type: DeviceNetwork deviceLists: - 5558 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2266 @@ -33041,8 +32657,6 @@ entities: - type: DeviceNetwork deviceLists: - 5558 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2267 @@ -33054,8 +32668,6 @@ entities: - type: DeviceNetwork deviceLists: - 5558 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2268 @@ -33067,8 +32679,6 @@ entities: - type: DeviceNetwork deviceLists: - 5560 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2269 @@ -33079,8 +32689,6 @@ entities: - type: DeviceNetwork deviceLists: - 5560 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2270 @@ -33089,8 +32697,6 @@ entities: rot: 3.141592653589793 rad pos: 40.5,67.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2271 @@ -33099,8 +32705,6 @@ entities: rot: 3.141592653589793 rad pos: 42.5,67.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 2355 @@ -33109,8 +32713,6 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#E32636FF' - uid: 6827 @@ -33122,8 +32724,6 @@ entities: - type: DeviceNetwork deviceLists: - 6567 - - type: AtmosDevice - joinedGrid: 6565 - type: AtmosPipeColor color: '#E32636FF' - uid: 6828 @@ -33135,8 +32735,6 @@ entities: - type: DeviceNetwork deviceLists: - 6566 - - type: AtmosDevice - joinedGrid: 6565 - type: AtmosPipeColor color: '#E32636FF' - uid: 6829 @@ -33148,8 +32746,6 @@ entities: - type: DeviceNetwork deviceLists: - 6566 - - type: AtmosDevice - joinedGrid: 6565 - type: AtmosPipeColor color: '#E32636FF' - uid: 6830 @@ -33161,8 +32757,6 @@ entities: - type: DeviceNetwork deviceLists: - 6566 - - type: AtmosDevice - joinedGrid: 6565 - type: AtmosPipeColor color: '#E32636FF' - uid: 6831 @@ -33173,8 +32767,6 @@ entities: - type: DeviceNetwork deviceLists: - 6566 - - type: AtmosDevice - joinedGrid: 6565 - type: AtmosPipeColor color: '#E32636FF' - uid: 6832 @@ -33185,8 +32777,6 @@ entities: - type: DeviceNetwork deviceLists: - 6566 - - type: AtmosDevice - joinedGrid: 6565 - type: AtmosPipeColor color: '#E32636FF' - uid: 6833 @@ -33198,8 +32788,6 @@ entities: - type: DeviceNetwork deviceLists: - 6567 - - type: AtmosDevice - joinedGrid: 6565 - type: AtmosPipeColor color: '#E32636FF' - uid: 6834 @@ -33211,8 +32799,6 @@ entities: - type: DeviceNetwork deviceLists: - 6566 - - type: AtmosDevice - joinedGrid: 6565 - type: AtmosPipeColor color: '#E32636FF' - proto: GeneratorBasic15kW @@ -35217,8 +34803,8 @@ entities: - type: Transform pos: -1.5,51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: HydrogenCanister - proto: JetpackBlueFilled entities: - uid: 4865 @@ -35284,6 +34870,9 @@ entities: - type: Transform pos: 15.5,13.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - proto: LockerChemistryFilled entities: - uid: 4506 @@ -35291,6 +34880,9 @@ entities: - type: Transform pos: 3.5,25.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - proto: LockerEngineer entities: - uid: 4074 @@ -35298,6 +34890,9 @@ entities: - type: Transform pos: 27.5,12.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - type: EntityStorage air: volume: 200 @@ -35344,6 +34939,9 @@ entities: - type: Transform pos: 27.5,11.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - type: EntityStorage air: volume: 200 @@ -35390,6 +34988,9 @@ entities: - type: Transform pos: 27.5,9.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - type: EntityStorage air: volume: 200 @@ -35436,6 +35037,9 @@ entities: - type: Transform pos: 27.500174,8.500924 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - type: EntityStorage air: volume: 200 @@ -35484,46 +35088,73 @@ entities: - type: Transform pos: 36.5,24.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - uid: 4147 components: - type: Transform pos: 35.5,24.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - uid: 4234 components: - type: Transform pos: 31.5,37.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - uid: 4235 components: - type: Transform pos: 35.5,37.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - uid: 4236 components: - type: Transform pos: 39.5,37.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - uid: 4237 components: - type: Transform pos: 37.5,35.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - uid: 4238 components: - type: Transform pos: 29.5,35.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - uid: 4240 components: - type: Transform pos: 33.5,35.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - uid: 4370 components: - type: Transform pos: 45.5,27.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - type: EntityStorage air: volume: 200 @@ -35557,6 +35188,9 @@ entities: - type: Transform pos: 43.5,56.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - proto: LockerMedical entities: - uid: 231 @@ -35564,6 +35198,9 @@ entities: - type: Transform pos: 3.5,30.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - type: EntityStorage air: volume: 200 @@ -35613,6 +35250,9 @@ entities: - type: Transform pos: 3.5,33.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - type: EntityStorage air: volume: 200 @@ -35662,6 +35302,9 @@ entities: - type: Transform pos: 3.5,34.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - type: EntityStorage air: volume: 200 @@ -35711,6 +35354,9 @@ entities: - type: Transform pos: 3.5,31.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - type: EntityStorage air: volume: 200 @@ -35762,11 +35408,17 @@ entities: - type: Transform pos: 12.5,30.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - uid: 4703 components: - type: Transform pos: 18.5,40.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - proto: LockerQuarterMasterFilled entities: - uid: 4979 @@ -35774,6 +35426,9 @@ entities: - type: Transform pos: 12.5,50.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - type: EntityStorage air: volume: 200 @@ -35828,6 +35483,9 @@ entities: - type: Transform pos: 46.5,48.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - type: EntityStorage air: volume: 200 @@ -35884,6 +35542,9 @@ entities: - type: Transform pos: 55.5,52.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - type: EntityStorage air: volume: 200 @@ -35940,6 +35601,9 @@ entities: - type: Transform pos: 50.5,52.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - type: EntityStorage air: volume: 200 @@ -35996,6 +35660,9 @@ entities: - type: Transform pos: 39.50126,67.50116 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - type: EntityStorage air: volume: 200 @@ -36050,6 +35717,9 @@ entities: - type: Transform pos: 45.5,33.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - type: EntityStorage air: volume: 200 @@ -36098,6 +35768,9 @@ entities: - type: Transform pos: 45.5,34.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - type: EntityStorage air: volume: 200 @@ -36146,6 +35819,9 @@ entities: - type: Transform pos: 45.5,31.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - type: EntityStorage air: volume: 200 @@ -36194,6 +35870,9 @@ entities: - type: Transform pos: 45.5,30.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - type: EntityStorage air: volume: 200 @@ -36299,6 +35978,9 @@ entities: - type: Transform pos: 50.5,24.5 parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True - type: EntityStorage air: volume: 200 @@ -36801,29 +36483,29 @@ entities: - type: Transform pos: 54.5,40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: NitrogenCanister - uid: 5912 components: - type: Transform pos: 39.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: NitrogenCanister - uid: 5924 components: - type: Transform pos: -0.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: NitrogenCanister - uid: 6042 components: - type: Transform pos: -1.5,50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: NitrogenCanister - proto: NitrousOxideCanister entities: - uid: 3992 @@ -36831,15 +36513,15 @@ entities: - type: Transform pos: 11.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: NitrousOxideCanister - uid: 5992 components: - type: Transform pos: 9.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: NitrousOxideCanister - proto: NitrousOxideTankFilled entities: - uid: 4706 @@ -36878,29 +36560,29 @@ entities: - type: Transform pos: 53.5,40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: OxygenCanister - uid: 5859 components: - type: Transform pos: 41.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: OxygenCanister - uid: 5913 components: - type: Transform pos: 38.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: OxygenCanister - uid: 5989 components: - type: Transform pos: -0.5,24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: OxygenCanister - proto: PaperBin10 entities: - uid: 5148 @@ -36997,29 +36679,29 @@ entities: - type: Transform pos: 14.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: PlasmaCanister - uid: 5860 components: - type: Transform pos: 42.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: PlasmaCanister - uid: 5990 components: - type: Transform pos: -5.5,27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: PlasmaCanister - uid: 6044 components: - type: Transform pos: -1.5,49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: PlasmaCanister - proto: PlasticFlapsAirtightClear entities: - uid: 4928 @@ -37250,6 +36932,8 @@ entities: components: - type: Transform parent: 6715 + - type: PointLight + enabled: True - type: Physics canCollide: False - type: InsideEntityStorage @@ -37257,6 +36941,8 @@ entities: components: - type: Transform parent: 6715 + - type: PointLight + enabled: True - type: Physics canCollide: False - type: InsideEntityStorage @@ -37264,6 +36950,8 @@ entities: components: - type: Transform parent: 6715 + - type: PointLight + enabled: True - type: Physics canCollide: False - type: InsideEntityStorage @@ -37271,6 +36959,8 @@ entities: components: - type: Transform parent: 6715 + - type: PointLight + enabled: True - type: Physics canCollide: False - type: InsideEntityStorage @@ -37278,6 +36968,8 @@ entities: components: - type: Transform parent: 6715 + - type: PointLight + enabled: True - type: Physics canCollide: False - type: InsideEntityStorage @@ -37285,6 +36977,8 @@ entities: components: - type: Transform parent: 6726 + - type: PointLight + enabled: True - type: Physics canCollide: False - type: InsideEntityStorage @@ -37292,6 +36986,8 @@ entities: components: - type: Transform parent: 6726 + - type: PointLight + enabled: True - type: Physics canCollide: False - type: InsideEntityStorage @@ -37299,6 +36995,8 @@ entities: components: - type: Transform parent: 6726 + - type: PointLight + enabled: True - type: Physics canCollide: False - type: InsideEntityStorage @@ -37306,6 +37004,8 @@ entities: components: - type: Transform parent: 6726 + - type: PointLight + enabled: True - type: Physics canCollide: False - type: InsideEntityStorage @@ -37313,6 +37013,8 @@ entities: components: - type: Transform parent: 6726 + - type: PointLight + enabled: True - type: Physics canCollide: False - type: InsideEntityStorage @@ -37338,6 +37040,8 @@ entities: components: - type: Transform parent: 231 + - type: PointLight + enabled: True - type: Physics canCollide: False - type: InsideEntityStorage @@ -37345,6 +37049,8 @@ entities: components: - type: Transform parent: 231 + - type: PointLight + enabled: True - type: Physics canCollide: False - type: InsideEntityStorage @@ -37352,6 +37058,8 @@ entities: components: - type: Transform parent: 371 + - type: PointLight + enabled: True - type: Physics canCollide: False - type: InsideEntityStorage @@ -37359,6 +37067,8 @@ entities: components: - type: Transform parent: 371 + - type: PointLight + enabled: True - type: Physics canCollide: False - type: InsideEntityStorage @@ -37366,6 +37076,8 @@ entities: components: - type: Transform parent: 838 + - type: PointLight + enabled: True - type: Physics canCollide: False - type: InsideEntityStorage @@ -37373,6 +37085,8 @@ entities: components: - type: Transform parent: 838 + - type: PointLight + enabled: True - type: Physics canCollide: False - type: InsideEntityStorage @@ -37380,6 +37094,8 @@ entities: components: - type: Transform parent: 1236 + - type: PointLight + enabled: True - type: Physics canCollide: False - type: InsideEntityStorage @@ -37387,6 +37103,8 @@ entities: components: - type: Transform parent: 1236 + - type: PointLight + enabled: True - type: Physics canCollide: False - type: InsideEntityStorage @@ -37395,6 +37113,8 @@ entities: - type: Transform pos: 34.924313,56.487045 parent: 2 + - type: PointLight + enabled: True - proto: PowerCellHyper entities: - uid: 4003 @@ -37402,6 +37122,8 @@ entities: - type: Transform pos: 15.239505,14.481647 parent: 2 + - type: PointLight + enabled: True - proto: PowerCellRecharger entities: - uid: 1040 @@ -38924,41 +38646,57 @@ entities: - type: Transform pos: 15.78638,15.122272 parent: 2 + - type: RCDAmmo + charges: 45 - uid: 4000 components: - type: Transform pos: 15.78638,14.966022 parent: 2 + - type: RCDAmmo + charges: 45 - uid: 4057 components: - type: Transform pos: 23.280857,14.713973 parent: 2 + - type: RCDAmmo + charges: 45 - uid: 4058 components: - type: Transform pos: 23.280857,14.635848 parent: 2 + - type: RCDAmmo + charges: 45 - uid: 4059 components: - type: Transform pos: 23.280857,14.557723 parent: 2 + - type: RCDAmmo + charges: 45 - uid: 4060 components: - type: Transform pos: 23.452732,14.713973 parent: 2 + - type: RCDAmmo + charges: 45 - uid: 4061 components: - type: Transform pos: 23.452732,14.620223 parent: 2 + - type: RCDAmmo + charges: 45 - uid: 4062 components: - type: Transform pos: 23.452732,14.557723 parent: 2 + - type: RCDAmmo + charges: 45 - proto: Recycler entities: - uid: 6470 @@ -39766,6 +39504,9 @@ entities: - type: Transform pos: -2.5370512,36.56543 parent: 2 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} - proto: ScalpelLaser entities: - uid: 4684 @@ -39858,31 +39599,43 @@ entities: - type: Transform pos: 47.56637,24.567667 parent: 2 + - type: RCDAmmo + charges: 15 - uid: 4380 components: - type: Transform pos: 47.56637,24.567667 parent: 2 + - type: RCDAmmo + charges: 15 - uid: 4381 components: - type: Transform pos: 47.56637,24.567667 parent: 2 + - type: RCDAmmo + charges: 15 - uid: 4594 components: - type: Transform pos: 5.565196,36.518917 parent: 2 + - type: RCDAmmo + charges: 15 - uid: 4615 components: - type: Transform pos: 5.565196,36.518917 parent: 2 + - type: RCDAmmo + charges: 15 - uid: 4647 components: - type: Transform pos: 5.565196,36.518917 parent: 2 + - type: RCDAmmo + charges: 15 - proto: SheetSteel entities: - uid: 4373 @@ -40463,8 +40216,8 @@ entities: - type: Transform pos: 13.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: StorageCanister - proto: Stunbaton entities: - uid: 5095 @@ -41448,8 +41201,8 @@ entities: - type: Transform pos: 12.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: TritiumCanister - proto: Truncheon entities: - uid: 4195 @@ -47521,15 +47274,15 @@ entities: - type: Transform pos: -1.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: WaterVaporCanister - uid: 6046 components: - type: Transform pos: -1.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: PolymorphableCanister + currentPrototype: WaterVaporCanister - proto: WeaponAdvancedLaser entities: - uid: 1017 diff --git a/Resources/Maps/White/Shuttles/CBURN.yml b/Resources/Maps/White/Shuttles/CBURN.yml new file mode 100644 index 0000000000..85fcefcdf4 --- /dev/null +++ b/Resources/Maps/White/Shuttles/CBURN.yml @@ -0,0 +1,8007 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 34: FloorDark + 35: FloorDarkDiagonal + 39: FloorDarkMini + 40: FloorDarkMono + 5: FloorDarkOffset + 46: FloorDarkPlastic + 1: FloorElevatorShaft + 52: FloorFreezer + 73: FloorMetalDiamond + 85: FloorPlastic + 86: FloorRGlass + 2: FloorShuttleWhite + 3: FloorSteel + 4: FloorSteelOffset + 120: FloorTechMaint2 + 121: FloorTechMaint3 + 129: FloorWhiteMono + 139: Lattice + 140: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 2 + components: + - type: MetaData + name: grid + - type: Transform + pos: 1.2477331,-10.725662 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: eAAAAAAAeAAAAAAAAQAAAAAASQAAAAAASQAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAjAAAAAAAVgAAAAAAVgAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAjAAAAAAAVgAAAAAAVgAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAQAAAAAASQAAAAAASQAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAjAAAAAAAeAAAAAAAeAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAjAAAAAAAjAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAjAAAAAAAeAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAeAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAjAAAAAAAeAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAjAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAeAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAjAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAASQAAAAAASQAAAAAASQAAAAAAAgAAAAAANAAAAAAANAAAAAAANAAAAAAAjAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAjAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAVgAAAAAAVgAAAAAAjAAAAAAANAAAAAAANAAAAAAANAAAAAAASQAAAAAAAwAAAAAABAAAAAAABAAAAAAAAwAAAAAASQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAVgAAAAAAVgAAAAAAjAAAAAAANAAAAAAANAAAAAAANAAAAAAASQAAAAAAAwAAAAAABAAAAAAABAAAAAAAAwAAAAAASQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAASQAAAAAASQAAAAAASQAAAAAAAgAAAAAANAAAAAAANAAAAAAANAAAAAAAjAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAjAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAeAAAAAAAeAAAAAAAjAAAAAAANAAAAAAANAAAAAAANAAAAAAAjAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAjAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAASQAAAAAASQAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAABAAAAAAABAAAAAAAjAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAABAAAAAAABAAAAAAAjAAAAAAAeAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAASQAAAAAABAAAAAAABAAAAAAASQAAAAAAeAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAASQAAAAAABAAAAAAABAAAAAAASQAAAAAAeAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAABAAAAAAABAAAAAAAjAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAABAAAAAAABAAAAAAAjAAAAAAAeAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAASQAAAAAASQAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAjAAAAAAAjAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAjAAAAAAABAAAAAAABAAAAAAAjAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAjAAAAAAABAAAAAAABAAAAAAAjAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASQAAAAAABAAAAAAABAAAAAAASQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASQAAAAAABAAAAAAABAAAAAAASQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAjAAAAAAABAAAAAAABAAAAAAAjAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAjAAAAAAABAAAAAAABAAAAAAAjAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAAQAAAAAAAQAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAjAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAAQAAAAAAAQAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAjAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAjAAAAAAAKAAAAAAABQAAAAAABQAAAAAAKAAAAAAAjAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAKAAAAAAAIwAAAAAAIwAAAAAAKAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAJwAAAAAAJwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAVQAAAAAAVQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAjAAAAAAAjAAAAAAANAAAAAAANAAAAAAANAAAAAAAjAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAANAAAAAAANAAAAAAANAAAAAAASQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAjAAAAAAAjAAAAAAAjAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAjAAAAAAASQAAAAAASQAAAAAANAAAAAAANAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAeAAAAAAAeAAAAAAAjAAAAAAANAAAAAAANAAAAAAANAAAAAAAjAAAAAAAIgAAAAAASQAAAAAASQAAAAAAIgAAAAAAjAAAAAAAeAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAVQAAAAAAVQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAANAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAANAAAAAAAjAAAAAAAjAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAANAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAANAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAANAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAjAAAAAAAeAAAAAAAeAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 252: -4,27 + 286: -4,22 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 251: -5,27 + 285: -5,22 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 253: -4,25 + 287: -4,20 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 254: -5,25 + 284: -5,20 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + decals: + 231: -6,24 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 230: -3,24 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 255: -4,26 + 289: -4,21 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 226: -5,18 + 227: -4,18 + 249: -5,18 + 250: -4,18 + 293: -3,21 + 294: -2,21 + 295: -1,21 + 296: -7,21 + 297: -8,21 + 298: -6,21 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 228: -5,24 + 229: -4,24 + 290: -3,21 + 291: -2,21 + 292: -1,21 + 299: -8,21 + 300: -7,21 + 301: -6,21 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 256: -5,26 + 288: -5,21 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 232: -4,2 + 237: -4,11 + 244: -4,18 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 234: -5,2 + 236: -5,11 + 243: -5,18 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 235: -4,1 + 247: -4,13 + 517: -4,6 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 233: -5,1 + 248: -5,13 + 516: -5,6 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 238: -4,7 + 239: -4,10 + 245: -4,14 + 246: -4,17 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 485: 3,4 + 486: 4,4 + 522: -13,4 + 523: -12,4 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 487: 4,-1 + 488: 4,-1 + 489: 3,-1 + 524: -13,-1 + 525: -12,-1 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 240: -5,10 + 241: -5,14 + 242: -5,17 + 714: -5,7 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNe + decals: + 512: -3,0 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerNw + decals: + 507: -6,0 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSe + decals: + 513: -3,3 + - node: + color: '#43990996' + id: BrickTileWhiteInnerSe + decals: + 511: -6,0 + - node: + color: '#43990996' + id: BrickTileWhiteInnerSw + decals: + 510: -3,0 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSw + decals: + 506: -6,3 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 502: -3,1 + 503: -3,2 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 528: -4,8 + 529: -4,9 + 530: -4,15 + 531: -4,16 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 499: -1,4 + 500: 0,4 + 501: 1,4 + - node: + color: '#3EB38896' + id: BrickTileWhiteLineN + decals: + 515: -5,4 + - node: + color: '#43990996' + id: BrickTileWhiteLineN + decals: + 314: -6,-4 + 315: -5,-4 + 316: -4,-4 + 317: -2,-4 + 323: -3,-4 + 324: -10,-3 + 325: -9,-3 + 326: -8,-3 + 327: -1,-3 + 328: 0,-3 + 329: 1,-3 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 478: -10,4 + 479: -9,4 + 480: -8,4 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineN + decals: + 514: -4,4 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 496: -1,-1 + 497: 0,-1 + 498: 1,-1 + - node: + color: '#43990996' + id: BrickTileWhiteLineS + decals: + 330: -6,-7 + 331: -5,-7 + 332: -4,-7 + 333: -3,-7 + 334: -2,-7 + 335: -1,-7 + 336: 0,-7 + 337: 1,-7 + 338: -8,-7 + 339: -9,-7 + 340: -10,-7 + 508: -5,0 + 509: -4,0 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 475: -10,-1 + 476: -9,-1 + 477: -8,-1 + - node: + color: '#3EB38896' + id: BrickTileWhiteLineW + decals: + 526: -5,8 + 527: -5,9 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 504: -6,1 + 505: -6,2 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 532: -5,15 + 533: -5,16 + - node: + color: '#334E6DC8' + id: DeliveryGreyscale + decals: + 490: -1,-1 + 491: 0,-1 + 492: 1,-1 + 493: 1,4 + 494: 0,4 + 495: -1,4 + - node: + color: '#43990996' + id: DeliveryGreyscale + decals: + 318: -6,-2 + 319: -3,-2 + 320: -4,-7 + 321: -3,-7 + 322: -3,-4 + - node: + color: '#52B4E996' + id: DeliveryGreyscale + decals: + 469: -10,4 + 470: -9,4 + 471: -8,4 + 472: -8,-1 + 473: -9,-1 + 474: -10,-1 + - node: + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 481: 3,-1 + 482: 4,-1 + 483: 4,4 + 484: 3,4 + 518: -13,-1 + 519: -12,-1 + 520: -12,4 + 521: -13,4 + - node: + color: '#781D2393' + id: Dirt + decals: + 2: 0,-7 + - node: + color: '#79150096' + id: Dirt + decals: + 5: -9,2 + 6: 0,7 + 7: 0,6 + 8: -1,6 + 9: -1,10 + 10: -1,10 + 11: 0,10 + 12: 0,10 + 13: 0,10 + 14: -1,11 + 15: 1,11 + 16: 1,11 + 17: 1,10 + 18: 0,10 + 19: 0,9 + 20: 2,10 + 21: 2,10 + 22: 1,10 + 23: 2,9 + 24: 2,8 + 25: 2,7 + 26: 2,6 + 27: 1,6 + 28: 0,7 + 29: 0,7 + 30: 0,6 + 31: 1,6 + 32: 1,6 + 33: -1,6 + 34: -2,6 + 35: -1,8 + 36: -1,9 + 37: 0,9 + 38: 1,10 + 39: 2,9 + 40: 2,9 + 84: -8,8 + 85: -10,8 + 86: -11,8 + 87: -11,9 + 88: -11,9 + 89: -10,10 + 90: -8,10 + 91: -9,14 + 92: -10,14 + 93: -10,14 + 94: -9,13 + 95: -8,14 + 96: -8,14 + 97: -9,15 + 98: -9,16 + 99: -9,16 + 100: -9,16 + 101: -10,16 + 102: -10,16 + 103: -8,16 + 104: -8,17 + 105: -8,18 + 106: -9,18 + 107: -9,17 + 108: -10,17 + 109: -8,16 + 110: -9,17 + 111: -10,15 + 112: -10,15 + 113: -9,15 + 114: -8,14 + 115: -10,14 + 116: -10,14 + 117: -10,15 + 118: -10,14 + 119: -9,13 + 120: -8,13 + 121: -7,13 + 122: -1,13 + 123: -1,13 + 124: -1,18 + 125: -1,16 + 126: -1,15 + 127: -1,14 + 128: -1,13 + 129: 0,14 + 130: 0,16 + 131: -1,17 + 132: 0,17 + 133: 1,15 + 134: 1,14 + 135: 0,13 + 136: -1,15 + 137: 0,15 + 138: -1,16 + 139: -1,17 + 140: -1,18 + 141: -1,17 + 142: -1,15 + 143: -1,15 + 144: 0,14 + 341: -9,-6 + 342: -10,-6 + 343: -9,-7 + 344: -8,-7 + 345: -8,-6 + 346: -8,-5 + 347: -9,-5 + 348: -8,-4 + 349: -9,-4 + 350: -10,-4 + 351: -9,-3 + 352: -8,-3 + 353: -9,-5 + 354: -10,-6 + 355: -10,-7 + 356: -7,-7 + 357: -7,-5 + 358: -7,-5 + 359: -7,-5 + 360: -6,-5 + 361: -6,-6 + 362: -5,-5 + 363: -5,-4 + 364: -5,-6 + 365: -5,-7 + 366: -4,-6 + 367: -4,-5 + 368: -4,-4 + 369: -3,-5 + 370: -3,-6 + 371: -3,-6 + 372: -2,-7 + 373: -2,-6 + 374: -3,-7 + 375: -4,-7 + 376: -3,-5 + 377: -2,-5 + 378: -2,-4 + 379: -4,-4 + 380: -5,-4 + 381: -6,-4 + 382: -1,-6 + 383: 0,-6 + 384: -1,-7 + 385: 1,-7 + 386: 1,-6 + 387: 1,-5 + 388: 0,-5 + 389: -1,-4 + 390: 1,-4 + 391: 1,-3 + 392: 0,-3 + 393: 0,-4 + 394: -1,-5 + 395: -1,-5 + 396: -5,-6 + 397: -6,-6 + 398: -8,-7 + 399: -9,-6 + 400: -8,-6 + 401: -8,-3 + 402: -9,-3 + 403: -10,-4 + 404: -9,-4 + 405: -8,-4 + 406: -5,-3 + 407: -4,-3 + 408: -4,-2 + 409: -5,-2 + 410: -6,-2 + 411: -3,-2 + 412: -4,-1 + 413: -5,-1 + 414: -5,-2 + 415: -4,-3 + 416: -5,-3 + 417: -4,-1 + 418: -5,4 + 419: -5,3 + 420: -5,3 + 421: -6,3 + 422: -6,2 + 423: -5,2 + 424: -6,1 + 425: -4,1 + 426: -3,1 + 427: -5,1 + 428: -4,2 + 429: -3,2 + 430: -4,3 + 431: -4,3 + 432: -3,2 + 433: -3,3 + - node: + cleanable: True + color: '#79150096' + id: Dirt + decals: + 534: -9,0 + 535: -10,0 + 536: -9,1 + 537: -10,2 + 538: -10,2 + 539: -10,1 + 540: -10,3 + 541: -8,3 + 542: -8,2 + 543: -8,1 + 544: -8,0 + 545: -9,3 + 546: -12,0 + 547: -13,0 + 548: -12,-1 + 549: -13,-1 + 550: -12,0 + 551: -12,3 + 552: -13,3 + 553: -13,4 + 554: -12,4 + 555: -12,4 + 556: -13,4 + 557: -6,1 + 558: -6,0 + 559: -5,1 + 560: -4,2 + 561: -4,1 + 562: -5,2 + 563: -4,0 + 564: -5,0 + 565: -3,0 + 566: -6,3 + 567: -5,4 + 568: -4,4 + 569: -3,4 + 570: -6,4 + 571: -9,3 + 572: -10,3 + 573: -8,4 + 574: -8,2 + 575: -9,2 + 576: -8,1 + 577: -9,0 + 578: 0,0 + 579: -1,0 + 580: 0,1 + 581: -1,1 + 582: -1,3 + 583: 0,3 + 584: -1,2 + 585: 0,3 + 586: -1,4 + 587: 1,4 + 588: 1,3 + 589: 0,3 + 590: 1,1 + 591: 1,0 + 592: 1,-1 + 593: 0,-1 + 594: 3,0 + 595: 3,-1 + 596: 4,-1 + 597: 0,2 + 598: -1,3 + 599: 1,3 + 600: 3,3 + 601: 3,4 + 602: 4,4 + 603: 4,3 + 604: 0,2 + 605: -4,6 + 606: -5,6 + 607: -4,7 + 608: -5,8 + 609: -5,8 + 610: -5,9 + 611: -5,9 + 612: -4,8 + 613: -4,9 + 614: -4,11 + 615: -4,9 + 616: -5,10 + 617: -5,11 + 618: -2,10 + 619: -2,9 + 620: -2,7 + 621: -2,6 + 622: 2,10 + 623: -1,10 + 624: -2,10 + 625: -2,9 + 626: -4,10 + 627: -5,10 + 628: -5,11 + 629: -4,13 + 630: -5,13 + 631: -5,14 + 632: -4,14 + 633: -4,15 + 634: -5,15 + 635: -5,16 + 636: -4,16 + 637: -5,17 + 638: -5,17 + 639: -4,18 + 640: -6,15 + 641: -6,16 + 642: -3,16 + 643: -3,15 + 644: -3,9 + 645: -3,9 + 646: -3,8 + 647: -3,8 + 648: -6,9 + 649: -6,8 + 650: -6,8 + 651: -5,5 + 652: -4,5 + 653: -4,5 + 654: -5,5 + 655: -7,1 + 656: -7,2 + 657: -2,1 + 658: -2,2 + 659: -3,3 + 660: -3,21 + 661: -7,20 + 662: -7,20 + 663: -7,21 + 664: -8,21 + 665: -6,22 + 666: -8,20 + 667: -5,21 + 668: -5,22 + 669: -4,20 + 670: -4,20 + 671: -2,20 + 672: -1,20 + 673: -1,22 + 674: -2,22 + 675: -2,21 + 676: -2,21 + 677: -4,24 + 678: -5,24 + 679: -6,25 + 680: -6,24 + 681: -7,24 + 682: -7,26 + 683: -6,26 + 684: -6,28 + 685: -5,29 + 686: -4,28 + 687: -4,27 + 688: -5,26 + 689: -4,26 + 690: -3,25 + 691: -3,26 + 692: -3,28 + 693: -4,25 + 694: -5,25 + 695: -4,27 + 715: -5,7 + - node: + angle: 1.5707963267948966 rad + color: '#79150096' + id: Dirt + decals: + 205: -5,30 + 206: -4,30 + 207: -7,27 + 208: -7,24 + 209: -5,30 + 210: -14,3 + 211: -14,3 + 212: -14,0 + 213: -14,0 + 214: 2,3 + 215: -4,5 + 216: -5,5 + 217: -4,5 + 218: -4,12 + 219: -5,19 + 220: -4,19 + 221: -5,19 + 222: -5,23 + 223: -4,23 + 224: -4,23 + - node: + color: '#B02E26A3' + id: Dirt + decals: + 225: -7,27 + - node: + color: '#DE3A3A8C' + id: Dirt + decals: + 277: -4,13 + 278: -5,13 + 279: -4,14 + 280: -5,14 + 281: -4,17 + 282: -4,17 + 283: -5,18 + - node: + color: '#DE3A3A96' + id: Dirt + decals: + 257: -2,14 + 258: -2,15 + 259: -2,16 + 260: -2,17 + 261: -2,17 + 262: -2,16 + 263: -2,15 + 264: -2,17 + 265: -2,15 + 266: -2,14 + 267: -7,14 + 268: -7,16 + 269: -8,15 + 270: -7,16 + 271: -7,16 + 272: -7,14 + 273: -7,16 + 274: -7,17 + 275: -8,15 + 276: -7,15 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 145: -1,14 + 146: -1,13 + 147: 1,13 + 148: 1,15 + 149: 0,16 + 150: 0,18 + 151: -1,17 + 152: -7,13 + 153: -8,17 + 154: -9,17 + 155: -10,16 + 156: -10,15 + 157: -9,14 + 158: -9,13 + 159: -9,13 + - node: + color: '#79150096' + id: DirtHeavy + decals: + 464: 0,-4 + 465: -8,-5 + 466: -10,-6 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 160: -1,17 + 161: -1,16 + 162: -1,15 + 163: 0,13 + 164: 1,14 + 165: 1,15 + 166: 0,15 + 167: -2,13 + 168: -1,14 + 169: 0,18 + 170: -1,19 + 171: -9,13 + 172: -10,14 + 173: -9,15 + 174: -10,15 + 175: -9,15 + 176: -9,16 + 177: -9,17 + 178: -9,14 + 179: -10,13 + 180: -10,15 + 181: -8,17 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 696: -9,1 + 697: -8,2 + 698: -8,0 + 699: -6,0 + 700: -5,3 + 701: -3,0 + 702: 0,1 + 703: -1,3 + - node: + color: '#79150096' + id: DirtHeavyMonotile + decals: + 41: 2,9 + 42: 2,10 + 43: 0,10 + 44: 0,10 + 45: 0,9 + 46: 0,9 + 47: -1,10 + 48: -1,6 + 49: -1,6 + 50: 0,6 + 51: 1,6 + 52: 1,6 + 53: 0,7 + 54: 0,6 + 55: 2,6 + 56: 2,7 + 57: 2,9 + 58: 1,9 + 59: -1,9 + 60: -1,10 + 61: -1,10 + 62: -2,11 + 63: -1,11 + 64: 1,11 + 65: 2,11 + 66: -9,8 + 67: -10,8 + 68: -11,8 + 69: -11,9 + 70: -11,10 + 71: -10,11 + 72: -9,10 + 73: -7,11 + 74: -10,10 + 75: -10,10 + 76: -11,10 + 77: -11,9 + 78: -10,9 + 79: -10,8 + 80: -10,8 + 81: -10,8 + 82: -11,6 + 83: -9,6 + 434: -9,-7 + 435: -9,-6 + 436: -10,-6 + 437: -8,-5 + 438: -9,-4 + 439: -9,-4 + 440: -6,-5 + 441: -6,-6 + 442: -5,-5 + 443: -4,-5 + 444: -4,-6 + 445: -3,-6 + 446: -1,-5 + 447: 0,-4 + 448: 0,-5 + 449: 1,-6 + 450: 1,-5 + 451: 1,-4 + 452: -1,-6 + 453: 0,-6 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 3: 1,-7 + 4: -9,2 + 182: 0,15 + 183: 0,16 + 184: -1,18 + 185: -2,13 + 186: -2,13 + 187: 1,13 + 188: 1,14 + 189: 1,15 + 190: 1,16 + 191: 0,17 + 192: 0,17 + 193: 0,14 + 194: 0,17 + 195: 0,18 + 196: -8,16 + 197: -8,17 + 198: -7,18 + 199: -7,18 + 200: -9,17 + 201: -10,15 + 202: -10,13 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 704: -2,9 + 705: -2,7 + 706: -7,9 + 707: -7,8 + 708: -9,8 + 709: -10,8 + 710: -10,10 + 711: -8,15 + 712: -6,24 + 713: -7,26 + - node: + color: '#79150096' + id: DirtLight + decals: + 454: -5,-6 + 455: -5,-5 + 456: -6,-5 + 457: -4,-5 + 458: -4,-6 + 459: -3,-6 + 460: 0,-4 + 461: 0,-6 + 462: -8,-4 + 463: -9,-4 + - node: + color: '#DE3A3A72' + id: WarnCornerGreyscaleNE + decals: + 302: -6,20 + - node: + color: '#DE3A3A72' + id: WarnCornerGreyscaleNW + decals: + 305: -3,20 + - node: + color: '#DE3A3A72' + id: WarnCornerGreyscaleSE + decals: + 304: -6,22 + - node: + color: '#DE3A3A72' + id: WarnCornerGreyscaleSW + decals: + 303: -3,22 + - node: + color: '#43990996' + id: WarnCornerSmallGreyscaleSE + decals: + 1: -6,-1 + - node: + color: '#43990996' + id: WarnCornerSmallGreyscaleSW + decals: + 0: -3,-1 + - node: + color: '#334E6DC8' + id: WarnFullGreyscale + decals: + 203: -5,30 + 204: -4,30 + - node: + color: '#DE3A3A72' + id: WarnLineGreyscaleN + decals: + 306: -2,20 + 307: -1,20 + 312: -7,20 + 313: -8,20 + - node: + color: '#DE3A3A72' + id: WarnLineGreyscaleS + decals: + 308: -2,22 + 309: -1,22 + 310: -7,22 + 311: -8,22 + - node: + color: '#8C2E0093' + id: splatter + decals: + 468: -9.740415,-6.887703 + - node: + color: '#D79E0093' + id: splatter + decals: + 467: -9.865415,-6.809578 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 64447 + 0,-1: + 0: 45243 + -1,0: + 0: 49147 + 0,1: + 0: 30475 + -1,1: + 0: 56603 + 0,2: + 0: 30583 + -1,2: + 0: 40447 + 1: 16384 + 0,3: + 0: 13104 + 2: 128 + -1,3: + 0: 64785 + 1: 192 + 0,4: + 0: 307 + 1,0: + 0: 12563 + 1,1: + 0: 1 + 2: 8192 + 1,2: + 2: 258 + 1,-1: + 0: 4096 + 2: 2 + -4,0: + 0: 51340 + -4,1: + 0: 8 + 2: 16384 + -4,2: + 2: 2052 + -4,-1: + 0: 32768 + 2: 4 + -3,0: + 0: 64991 + -3,1: + 0: 1549 + -3,2: + 0: 61167 + -3,-1: + 0: 53469 + -3,3: + 2: 16 + 0: 52416 + -3,4: + 0: 2252 + -2,0: + 0: 57341 + -2,1: + 1: 1 + 0: 35724 + -2,2: + 0: 48127 + -2,3: + 0: 64440 + -2,-1: + 0: 55513 + -2,4: + 0: 35775 + -1,-1: + 0: 45497 + -1,4: + 0: 7647 + 0,5: + 2: 34 + -1,5: + 0: 8191 + 0,6: + 2: 17 + -3,5: + 2: 68 + -2,5: + 0: 36863 + -3,6: + 2: 136 + -2,6: + 0: 61166 + 2: 4096 + -2,7: + 0: 3276 + 2: 16896 + -1,6: + 0: 30583 + 2: 32768 + -1,7: + 0: 819 + 2: 9216 + -4,-2: + 2: 16392 + -4,-3: + 2: 32768 + -3,-2: + 0: 40384 + -3,-3: + 2: 1 + 0: 26188 + -2,-3: + 0: 47887 + -2,-2: + 0: 36850 + -1,-3: + 0: 56591 + -1,-2: + 0: 8181 + 0,-3: + 0: 26147 + 2: 8 + 0,-2: + 0: 39728 + 1,-3: + 2: 4096 + 1,-2: + 2: 8193 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirAlarm + entities: + - uid: 3 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,23.5 + parent: 2 + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 2 + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,7.5 + parent: 2 + - uid: 7 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,9.5 + parent: 2 + - uid: 8 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,7.5 + parent: 2 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,8.5 + parent: 2 + - uid: 815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,9.5 + parent: 2 +- proto: AirlockCommandGlassLocked + entities: + - uid: 800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,19.5 + parent: 2 + - uid: 801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,19.5 + parent: 2 + - uid: 808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 2 + - uid: 809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 +- proto: AirlockEngineeringLocked + entities: + - uid: 812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,8.5 + parent: 2 + - uid: 813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 2 +- proto: AirlockEVALocked + entities: + - uid: 18 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 19 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 +- proto: AirlockMaintAtmoLocked + entities: + - uid: 816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,15.5 + parent: 2 + - uid: 817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,16.5 + parent: 2 +- proto: AirlockMaintEngiLocked + entities: + - uid: 810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,15.5 + parent: 2 + - uid: 811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,16.5 + parent: 2 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 2 + - uid: 803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 2 +- proto: AirlockMedicalLocked + entities: + - uid: 26 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - uid: 27 + components: + - type: Transform + pos: -10.5,3.5 + parent: 2 +- proto: AirlockShuttle + entities: + - uid: 32 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,0.5 + parent: 2 + - type: Door + secondsUntilStateChange: -2166.9548 + state: Opening + - uid: 33 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,3.5 + parent: 2 + - uid: 34 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + - uid: 35 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 2 +- proto: AirlockVirologyGlassLocked + entities: + - uid: 17 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 2 +- proto: AirlockVirologyLocked + entities: + - uid: 16 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 2 + - uid: 24 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 2 + - uid: 25 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 2 + - uid: 541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 2 +- proto: APCBasic + entities: + - uid: 46 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 2 + - uid: 47 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,10.5 + parent: 2 + - uid: 48 + components: + - type: Transform + pos: -7.5,23.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 2 + - uid: 911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,15.5 + parent: 2 +- proto: AtmosDeviceFanTiny + entities: + - uid: 835 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - uid: 836 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - uid: 838 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 +- proto: BaseComputer + entities: + - uid: 51 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,25.5 + parent: 2 + - uid: 52 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,25.5 + parent: 2 +- proto: Bed + entities: + - uid: 247 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 248 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - uid: 249 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 2 + - uid: 257 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 2 +- proto: BedsheetGreen + entities: + - uid: 239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 2 + - uid: 256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 2 + - uid: 263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 2 + - uid: 495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 2 + - uid: 590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 2 +- proto: BlastDoorOpen + entities: + - uid: 818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 867 + - uid: 820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 867 + - uid: 821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 867 + - uid: 828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 867 + - uid: 829 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 889 + - 869 + - uid: 830 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 889 + - 869 + - uid: 831 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 870 + - uid: 832 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 870 + - uid: 833 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 870 + - uid: 834 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 870 + - uid: 861 + components: + - type: Transform + pos: -4.5,19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 868 + - uid: 862 + components: + - type: Transform + pos: -3.5,19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 868 + - uid: 863 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 870 + - uid: 864 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 870 + - uid: 865 + components: + - type: Transform + pos: -3.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 870 + - uid: 866 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 870 + - uid: 876 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 870 + - uid: 878 + components: + - type: Transform + pos: -13.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 870 + - uid: 879 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 870 + - uid: 882 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 870 + - uid: 883 + components: + - type: Transform + pos: -12.5,8.5 + parent: 2 +- proto: BoxFolderCentCom + entities: + - uid: 59 + components: + - type: Transform + pos: -1.4711609,24.592113 + parent: 2 +- proto: BoxFolderGreen + entities: + - uid: 60 + components: + - type: Transform + pos: -6.377411,24.545238 + parent: 2 + - uid: 61 + components: + - type: Transform + pos: -6.658661,24.701488 + parent: 2 +- proto: BoxVial + entities: + - uid: 6 + components: + - type: Transform + pos: -4.486111,-6.261362 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: -8.529626,-2.323269 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 39 + components: + - type: Transform + pos: -8.5,16.5 + parent: 2 + - uid: 40 + components: + - type: Transform + pos: -9.5,13.5 + parent: 2 + - uid: 42 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - uid: 43 + components: + - type: Transform + pos: -8.5,18.5 + parent: 2 + - uid: 44 + components: + - type: Transform + pos: -10.5,13.5 + parent: 2 + - uid: 45 + components: + - type: Transform + pos: -7.5,18.5 + parent: 2 + - uid: 57 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - uid: 62 + components: + - type: Transform + pos: -7.5,23.5 + parent: 2 + - uid: 63 + components: + - type: Transform + pos: -6.5,23.5 + parent: 2 + - uid: 64 + components: + - type: Transform + pos: -5.5,23.5 + parent: 2 + - uid: 65 + components: + - type: Transform + pos: -4.5,23.5 + parent: 2 + - uid: 66 + components: + - type: Transform + pos: -3.5,23.5 + parent: 2 + - uid: 67 + components: + - type: Transform + pos: -2.5,23.5 + parent: 2 + - uid: 68 + components: + - type: Transform + pos: -1.5,23.5 + parent: 2 + - uid: 69 + components: + - type: Transform + pos: -4.5,24.5 + parent: 2 + - uid: 70 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - uid: 71 + components: + - type: Transform + pos: -4.5,26.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 + - uid: 73 + components: + - type: Transform + pos: -4.5,28.5 + parent: 2 + - uid: 74 + components: + - type: Transform + pos: -4.5,29.5 + parent: 2 + - uid: 75 + components: + - type: Transform + pos: -4.5,30.5 + parent: 2 + - uid: 76 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - uid: 77 + components: + - type: Transform + pos: -4.5,21.5 + parent: 2 + - uid: 78 + components: + - type: Transform + pos: -3.5,21.5 + parent: 2 + - uid: 79 + components: + - type: Transform + pos: -2.5,21.5 + parent: 2 + - uid: 80 + components: + - type: Transform + pos: -1.5,21.5 + parent: 2 + - uid: 81 + components: + - type: Transform + pos: -0.5,21.5 + parent: 2 + - uid: 82 + components: + - type: Transform + pos: -5.5,21.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: -6.5,21.5 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: -7.5,21.5 + parent: 2 + - uid: 85 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 2 + - uid: 86 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 + - uid: 87 + components: + - type: Transform + pos: -8.5,15.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: -7.5,15.5 + parent: 2 + - uid: 89 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 + - uid: 90 + components: + - type: Transform + pos: -5.5,15.5 + parent: 2 + - uid: 91 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 92 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 + - uid: 93 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 94 + components: + - type: Transform + pos: -1.5,15.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 97 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 + - uid: 98 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - uid: 99 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 101 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: -4.5,16.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: -4.5,19.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 108 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 109 + components: + - type: Transform + pos: -0.5,16.5 + parent: 2 + - uid: 110 + components: + - type: Transform + pos: -0.5,17.5 + parent: 2 + - uid: 111 + components: + - type: Transform + pos: -0.5,18.5 + parent: 2 + - uid: 112 + components: + - type: Transform + pos: -7.5,13.5 + parent: 2 + - uid: 113 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - uid: 114 + components: + - type: Transform + pos: -7.5,15.5 + parent: 2 + - uid: 117 + components: + - type: Transform + pos: -7.5,18.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 123 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 + - uid: 124 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 126 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 128 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 + - uid: 129 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 130 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 + - uid: 132 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 133 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 134 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 + - uid: 136 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 + - uid: 137 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - uid: 138 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - uid: 140 + components: + - type: Transform + pos: -10.5,10.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: -9.5,10.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: -8.5,10.5 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: -6.5,10.5 + parent: 2 + - uid: 145 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 + - uid: 146 + components: + - type: Transform + pos: -9.5,10.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: -9.5,9.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: -9.5,8.5 + parent: 2 + - uid: 149 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: -7.5,9.5 + parent: 2 + - uid: 152 + components: + - type: Transform + pos: -7.5,8.5 + parent: 2 + - uid: 153 + components: + - type: Transform + pos: -1.5,9.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: -3.5,9.5 + parent: 2 + - uid: 156 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: -5.5,9.5 + parent: 2 + - uid: 158 + components: + - type: Transform + pos: -3.5,10.5 + parent: 2 + - uid: 159 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 160 + components: + - type: Transform + pos: -3.5,7.5 + parent: 2 + - uid: 161 + components: + - type: Transform + pos: -3.5,6.5 + parent: 2 + - uid: 162 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 163 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - uid: 164 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 165 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 166 + components: + - type: Transform + pos: -8.5,1.5 + parent: 2 + - uid: 167 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 + - uid: 168 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 + - uid: 169 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - uid: 170 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 171 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - uid: 172 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 173 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 + - uid: 174 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 175 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 176 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 177 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 179 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: -9.5,1.5 + parent: 2 + - uid: 181 + components: + - type: Transform + pos: -10.5,1.5 + parent: 2 + - uid: 182 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 184 + components: + - type: Transform + pos: -4.5,4.5 + parent: 2 + - uid: 185 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 186 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - uid: 187 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 189 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: -2.5,0.5 + parent: 2 + - uid: 192 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - uid: 195 + components: + - type: Transform + pos: -2.5,4.5 + parent: 2 + - uid: 196 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - uid: 197 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 198 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 199 + components: + - type: Transform + pos: -9.5,1.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 204 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 209 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 211 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 212 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 213 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 214 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 215 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 216 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 217 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 + - uid: 218 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 219 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 220 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 222 + components: + - type: Transform + pos: -10.5,13.5 + parent: 2 + - uid: 223 + components: + - type: Transform + pos: -11.5,9.5 + parent: 2 + - uid: 224 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 + - uid: 225 + components: + - type: Transform + pos: -11.5,7.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 228 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 2 + - uid: 229 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - uid: 259 + components: + - type: Transform + pos: -6.5,18.5 + parent: 2 + - uid: 260 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 265 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 2 + - uid: 266 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 2 + - uid: 268 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 + - uid: 269 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 2 + - uid: 278 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 285 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 289 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 291 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 292 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 293 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 294 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 295 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - uid: 417 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 439 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 440 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 457 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 + - uid: 464 + components: + - type: Transform + pos: -8.5,17.5 + parent: 2 + - uid: 481 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 494 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 + - uid: 496 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: -8.5,14.5 + parent: 2 + - uid: 745 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 754 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 2 + - uid: 758 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 + - uid: 759 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 760 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 763 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 909 + components: + - type: Transform + pos: -8.5,15.5 + parent: 2 + - uid: 910 + components: + - type: Transform + pos: -9.5,15.5 + parent: 2 + - uid: 914 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - uid: 915 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 916 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 917 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 918 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 +- proto: CableHV + entities: + - uid: 299 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 + - uid: 300 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 301 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 + - uid: 303 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 305 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - uid: 306 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 307 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 + - uid: 308 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 + - uid: 309 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - uid: 310 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 312 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 1211 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 +- proto: CableMV + entities: + - uid: 115 + components: + - type: Transform + pos: -8.5,15.5 + parent: 2 + - uid: 313 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 314 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 315 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - uid: 316 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - uid: 317 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 + - uid: 318 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 319 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: -1.5,9.5 + parent: 2 + - uid: 321 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: -3.5,9.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - uid: 324 + components: + - type: Transform + pos: -5.5,9.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: -6.5,9.5 + parent: 2 + - uid: 326 + components: + - type: Transform + pos: -7.5,9.5 + parent: 2 + - uid: 327 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: -9.5,9.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: -10.5,9.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: -10.5,10.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 334 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - uid: 335 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 337 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: -4.5,16.5 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - uid: 340 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - uid: 341 + components: + - type: Transform + pos: -4.5,19.5 + parent: 2 + - uid: 342 + components: + - type: Transform + pos: -4.5,20.5 + parent: 2 + - uid: 343 + components: + - type: Transform + pos: -4.5,21.5 + parent: 2 + - uid: 344 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - uid: 345 + components: + - type: Transform + pos: -4.5,23.5 + parent: 2 + - uid: 346 + components: + - type: Transform + pos: -5.5,23.5 + parent: 2 + - uid: 347 + components: + - type: Transform + pos: -6.5,23.5 + parent: 2 + - uid: 348 + components: + - type: Transform + pos: -7.5,23.5 + parent: 2 + - uid: 349 + components: + - type: Transform + pos: -5.5,15.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 + - uid: 351 + components: + - type: Transform + pos: -7.5,15.5 + parent: 2 + - uid: 352 + components: + - type: Transform + pos: -8.5,15.5 + parent: 2 + - uid: 355 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 356 + components: + - type: Transform + pos: -4.5,7.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 + - uid: 358 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: -4.5,4.5 + parent: 2 + - uid: 360 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 361 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - uid: 362 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: -7.5,2.5 + parent: 2 + - uid: 365 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 366 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 367 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - uid: 368 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 369 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 370 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 371 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 372 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 374 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 383 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 530 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 707 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - uid: 908 + components: + - type: Transform + pos: -9.5,15.5 + parent: 2 + - uid: 1209 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 +- proto: CableTerminal + entities: + - uid: 384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 2 + - uid: 385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 2 +- proto: Catwalk + entities: + - uid: 386 + components: + - type: Transform + pos: -9.5,9.5 + parent: 2 + - uid: 387 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 388 + components: + - type: Transform + pos: -7.5,9.5 + parent: 2 + - uid: 389 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - uid: 390 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 391 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 + - uid: 392 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 + - uid: 393 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 394 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,26.5 + parent: 2 + - uid: 401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,25.5 + parent: 2 + - uid: 771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,27.5 + parent: 2 +- proto: ChairOfficeLight + entities: + - uid: 677 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - uid: 732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-3.5 + parent: 2 +- proto: ChairPilotSeat + entities: + - uid: 274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,28.5 + parent: 2 + - uid: 279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,28.5 + parent: 2 + - uid: 405 + components: + - type: Transform + pos: -7.5,22.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 + - uid: 407 + components: + - type: Transform + pos: -5.5,22.5 + parent: 2 + - uid: 408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,20.5 + parent: 2 + - uid: 409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,20.5 + parent: 2 + - uid: 410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,20.5 + parent: 2 + - uid: 411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,20.5 + parent: 2 + - uid: 412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,20.5 + parent: 2 + - uid: 413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,20.5 + parent: 2 + - uid: 414 + components: + - type: Transform + pos: -2.5,22.5 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: -1.5,22.5 + parent: 2 + - uid: 416 + components: + - type: Transform + pos: -0.5,22.5 + parent: 2 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 418 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 419 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 420 + components: + - type: Transform + pos: -6.5,18.5 + parent: 2 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 421 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: -11.5,4.5 + parent: 2 +- proto: ClosetFireFilled + entities: + - uid: 423 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 424 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 425 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 426 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 +- proto: ClosetL3Virology + entities: + - uid: 254 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 2 +- proto: ClosetL3VirologyFilled + entities: + - uid: 380 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 + - uid: 719 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 429 + components: + - type: Transform + pos: -0.5,18.5 + parent: 2 + - uid: 430 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 644 + components: + - type: Transform + pos: -8.5,15.5 + parent: 2 +- proto: ClosetToolFilled + entities: + - uid: 435 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 436 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 437 + components: + - type: Transform + pos: -0.48486328,15.584873 + parent: 2 +- proto: ComputerAlert + entities: + - uid: 769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,27.5 + parent: 2 +- proto: ComputerCrewMonitoring + entities: + - uid: 770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,27.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,26.5 + parent: 2 +- proto: ComputerIFF + entities: + - uid: 354 + components: + - type: Transform + pos: -3.5,29.5 + parent: 2 +- proto: ComputerMedicalRecords + entities: + - uid: 444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,26.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,28.5 + parent: 2 +- proto: ComputerShuttle + entities: + - uid: 376 + components: + - type: Transform + pos: -4.5,29.5 + parent: 2 +- proto: ComputerStationRecords + entities: + - uid: 296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,28.5 + parent: 2 +- proto: CrateEmergencyInflatablewall + entities: + - uid: 450 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 +- proto: CrateEmergencyRadiation + entities: + - uid: 9 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 +- proto: CrateEngineeringCableBulk + entities: + - uid: 452 + components: + - type: Transform + pos: 2.5,11.5 + parent: 2 +- proto: CrateEngineeringGear + entities: + - uid: 453 + components: + - type: Transform + pos: -1.5,11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateEngineeringToolbox + entities: + - uid: 455 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 +- proto: CrateMedicalScrubs + entities: + - uid: 280 + components: + - type: Transform + pos: -9.5,4.5 + parent: 2 +- proto: CrateMedicalSupplies + entities: + - uid: 297 + components: + - type: Transform + pos: -7.5,4.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 456 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 +- proto: DeepSpaceComWallMount + entities: + - uid: 845 + components: + - type: Transform + pos: -5.5,29.5 + parent: 2 +- proto: Defibrillator + entities: + - uid: 458 + components: + - type: Transform + pos: -8.529861,18.489729 + parent: 2 +- proto: DiseaseDiagnoser + entities: + - uid: 591 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 2 +- proto: EmergencyLight + entities: + - uid: 460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,21.5 + parent: 2 + - uid: 461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,21.5 + parent: 2 + - uid: 462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,17.5 + parent: 2 + - uid: 463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,14.5 + parent: 2 + - uid: 465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,15.5 + parent: 2 + - uid: 466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 2 + - uid: 467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,7.5 + parent: 2 + - uid: 468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,10.5 + parent: 2 + - uid: 469 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 2 + - uid: 471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 + - uid: 472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 2 + - uid: 473 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - uid: 474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,2.5 + parent: 2 + - uid: 475 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - uid: 477 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,15.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: -3.5,29.5 + parent: 2 +- proto: EmergencyMedipen + entities: + - uid: 479 + components: + - type: Transform + pos: 1.4545593,1.7414551 + parent: 2 +- proto: filingCabinetDrawer + entities: + - uid: 768 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 +- proto: filingCabinetRandom + entities: + - uid: 118 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 +- proto: Firelock + entities: + - uid: 36 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 37 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 2 + - uid: 38 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 2 + - uid: 58 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 237 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 480 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 + - uid: 484 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 485 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 + - uid: 486 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - uid: 487 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - uid: 488 + components: + - type: Transform + pos: -10.5,3.5 + parent: 2 + - uid: 498 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 499 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 500 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - uid: 501 + components: + - type: Transform + pos: -5.5,8.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: -5.5,9.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 + - uid: 504 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - uid: 505 + components: + - type: Transform + pos: -3.5,12.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - uid: 507 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 508 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 509 + components: + - type: Transform + pos: -5.5,15.5 + parent: 2 + - uid: 510 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: -4.5,19.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: -3.5,19.5 + parent: 2 + - uid: 513 + components: + - type: Transform + pos: -4.5,23.5 + parent: 2 + - uid: 514 + components: + - type: Transform + pos: -3.5,23.5 + parent: 2 +- proto: FirelockEdge + entities: + - uid: 14 + components: + - type: Transform + pos: -3.5,13.5 + parent: 2 + - uid: 15 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 20 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 2 + - uid: 21 + components: + - type: Transform + pos: -3.5,6.5 + parent: 2 + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 2 + - uid: 23 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 + - uid: 28 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 2 + - uid: 29 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,11.5 + parent: 2 + - uid: 264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 2 + - uid: 399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 2 +- proto: FloorDrain + entities: + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 30 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: GasMinerNitrogenStation + entities: + - uid: 517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 2 +- proto: GasMinerOxygenStation + entities: + - uid: 518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 2 +- proto: GasMixer + entities: + - uid: 519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' +- proto: GasPassiveVent + entities: + - uid: 520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' +- proto: GasPipeBend + entities: + - uid: 428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 522 + components: + - type: Transform + pos: -6.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 528 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 755 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' +- proto: GasPipeFourway + entities: + - uid: 533 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 534 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 536 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 537 + components: + - type: Transform + pos: -3.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 538 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' +- proto: GasPipeStraight + entities: + - uid: 120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 238 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 443 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 492 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 579 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 580 + components: + - type: Transform + pos: -4.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 581 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 582 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 583 + components: + - type: Transform + pos: -4.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 584 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 585 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 586 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 587 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 588 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 589 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 596 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 623 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 624 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 654 + components: + - type: Transform + pos: -3.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 655 + components: + - type: Transform + pos: -3.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 656 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 657 + components: + - type: Transform + pos: -3.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 658 + components: + - type: Transform + pos: -3.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 659 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 669 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 670 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 671 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 672 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 726 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 730 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 756 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' +- proto: GasPipeTJunction + entities: + - uid: 246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' +- proto: GasPort + entities: + - uid: 709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,8.5 + parent: 2 +- proto: GasPressurePump + entities: + - uid: 710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' +- proto: GasVentPump + entities: + - uid: 54 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 245 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 262 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 375 + components: + - type: Transform + pos: -4.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 542 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 713 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 714 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' + - uid: 715 + components: + - type: Transform + pos: -1.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#111199FF' +- proto: GasVentScrubber + entities: + - uid: 281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 353 + components: + - type: Transform + pos: -3.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 445 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 451 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 727 + components: + - type: Transform + pos: 2.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' + - uid: 729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' +- proto: GasVolumePump + entities: + - uid: 735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#991111FF' +- proto: GeneratorBasic15kW + entities: + - uid: 736 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - uid: 737 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 738 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 + - uid: 739 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 + - uid: 740 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 1206 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 +- proto: Girder + entities: + - uid: 276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 2 + - uid: 282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 2 + - uid: 283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-2.5 + parent: 2 + - uid: 284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-3.5 + parent: 2 +- proto: GravityGeneratorMini + entities: + - uid: 772 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 +- proto: Grille + entities: + - uid: 116 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - uid: 691 + components: + - type: Transform + pos: -3.5,30.5 + parent: 2 + - uid: 692 + components: + - type: Transform + pos: -4.5,30.5 + parent: 2 + - uid: 773 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,8.5 + parent: 2 + - uid: 776 + components: + - type: Transform + pos: 0.5,21.5 + parent: 2 + - uid: 777 + components: + - type: Transform + pos: -8.5,21.5 + parent: 2 + - uid: 779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,28.5 + parent: 2 + - uid: 783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,28.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: -7.5,25.5 + parent: 2 + - uid: 785 + components: + - type: Transform + pos: -7.5,24.5 + parent: 2 + - uid: 786 + components: + - type: Transform + pos: -0.5,25.5 + parent: 2 + - uid: 787 + components: + - type: Transform + pos: -0.5,24.5 + parent: 2 + - uid: 788 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 789 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 792 + components: + - type: Transform + pos: -1.5,3.5 + parent: 2 + - uid: 793 + components: + - type: Transform + pos: -10.5,1.5 + parent: 2 + - uid: 794 + components: + - type: Transform + pos: -10.5,2.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: -13.5,2.5 + parent: 2 + - uid: 798 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - uid: 804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 + - uid: 805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 2 + - uid: 806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,7.5 + parent: 2 + - uid: 807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,7.5 + parent: 2 +- proto: GrilleDiagonal + entities: + - uid: 598 + components: + - type: Transform + pos: -5.5,30.5 + parent: 2 + - uid: 601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,29.5 + parent: 2 + - uid: 650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,29.5 + parent: 2 + - uid: 673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,30.5 + parent: 2 + - uid: 696 + components: + - type: Transform + pos: -6.5,29.5 + parent: 2 + - uid: 702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,29.5 + parent: 2 +- proto: Gyroscope + entities: + - uid: 819 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 +- proto: HighSecCommandLocked + entities: + - uid: 782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,23.5 + parent: 2 + - uid: 799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,23.5 + parent: 2 +- proto: HolofanProjector + entities: + - uid: 822 + components: + - type: Transform + pos: -9.641907,11.322522 + parent: 2 + - uid: 823 + components: + - type: Transform + pos: -9.407532,11.697522 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 251 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 2 +- proto: KitchenReagentGrinder + entities: + - uid: 253 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 +- proto: Lamp + entities: + - uid: 221 + components: + - type: Transform + pos: -5.468435,-3.0793047 + parent: 2 + - uid: 824 + components: + - type: Transform + pos: -9.524406,1.9696546 + parent: 2 +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 825 + components: + - type: Transform + pos: -10.5,11.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True +- proto: LockerMedicineFilled + entities: + - uid: 826 + components: + - type: Transform + pos: -9.5,2.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True + - uid: 827 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + enabled: True +- proto: MedkitOxygenFilled + entities: + - uid: 674 + components: + - type: Transform + pos: -8.405861,16.66937 + parent: 2 +- proto: MedkitRadiationFilled + entities: + - uid: 705 + components: + - type: Transform + pos: -8.421486,16.434996 + parent: 2 +- proto: NitrogenCanister + entities: + - uid: 837 + components: + - type: Transform + pos: -7.5,13.5 + parent: 2 + - type: PolymorphableCanister + currentPrototype: NitrogenCanister +- proto: OxygenCanister + entities: + - uid: 839 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - type: PolymorphableCanister + currentPrototype: OxygenCanister +- proto: PlaqueAtmos + entities: + - uid: 840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,12.5 + parent: 2 +- proto: PortableScrubber + entities: + - uid: 841 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: -6.5,11.5 + parent: 2 + - uid: 843 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 846 + components: + - type: Transform + pos: -7.5,18.5 + parent: 2 +- proto: PowerConsoleWallMount + entities: + - uid: 847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 2 +- proto: Poweredlight + entities: + - uid: 11 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 2 + - uid: 31 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 2 + - uid: 379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 2 + - uid: 592 + components: + - type: Transform + pos: -4.5,29.5 + parent: 2 + - uid: 676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - uid: 683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 2 + - uid: 684 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,21.5 + parent: 2 + - uid: 689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,21.5 + parent: 2 + - uid: 848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,2.5 + parent: 2 + - uid: 849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 2 + - uid: 850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 + - uid: 851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 2 + - uid: 852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,14.5 + parent: 2 + - uid: 854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,10.5 + parent: 2 + - uid: 856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,26.5 + parent: 2 + - uid: 857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,26.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,13.5 + parent: 2 + - uid: 697 + components: + - type: Transform + pos: -7.5,18.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: -0.5,18.5 + parent: 2 + - uid: 718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,13.5 + parent: 2 +- proto: Rack + entities: + - uid: 432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,16.5 + parent: 2 + - uid: 716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,17.5 + parent: 2 + - uid: 874 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 + - uid: 877 + components: + - type: Transform + pos: -8.5,18.5 + parent: 2 + - uid: 880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,15.5 + parent: 2 + - uid: 881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,16.5 + parent: 2 +- proto: Railing + entities: + - uid: 12 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 13 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,2.5 + parent: 2 + - uid: 234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,2.5 + parent: 2 + - uid: 725 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - uid: 774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 2 + - uid: 778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 2 + - uid: 780 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 +- proto: ReinforcedUraniumWindow + entities: + - uid: 381 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - uid: 431 + components: + - type: Transform + pos: -3.5,30.5 + parent: 2 + - uid: 459 + components: + - type: Transform + pos: -4.5,30.5 + parent: 2 + - uid: 853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,7.5 + parent: 2 + - uid: 855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,7.5 + parent: 2 + - uid: 887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,1.5 + parent: 2 + - uid: 890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,2.5 + parent: 2 + - uid: 891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,1.5 + parent: 2 + - uid: 892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,2.5 + parent: 2 + - uid: 893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 2 + - uid: 894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 2 + - uid: 895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + - uid: 896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 2 + - uid: 897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 + - uid: 898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 2 + - uid: 899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 2 + - uid: 900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 2 + - uid: 901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,21.5 + parent: 2 + - uid: 902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,21.5 + parent: 2 + - uid: 903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,24.5 + parent: 2 + - uid: 904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,25.5 + parent: 2 + - uid: 905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,24.5 + parent: 2 + - uid: 906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,25.5 + parent: 2 + - uid: 907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,28.5 + parent: 2 + - uid: 912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,28.5 + parent: 2 + - uid: 913 + components: + - type: Transform + pos: -12.5,8.5 + parent: 2 + - uid: 1207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 2 + - uid: 1208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 +- proto: ReinforcedUraniumWindowDiagonal + entities: + - uid: 599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,30.5 + parent: 2 + - uid: 600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,29.5 + parent: 2 + - uid: 690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,29.5 + parent: 2 + - uid: 693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,29.5 + parent: 2 + - uid: 698 + components: + - type: Transform + pos: -6.5,29.5 + parent: 2 + - uid: 706 + components: + - type: Transform + pos: -5.5,30.5 + parent: 2 +- proto: ShelfGlass + entities: + - uid: 926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,1.5 + parent: 2 + - uid: 927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,2.5 + parent: 2 +- proto: SignalButton + entities: + - uid: 867 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 828: + - Pressed: Toggle + 821: + - Pressed: Toggle + 818: + - Pressed: Toggle + 820: + - Pressed: Toggle + - uid: 868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.4680905,25.689644 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 861: + - Pressed: Toggle + 862: + - Pressed: Toggle + - uid: 869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 830: + - Pressed: Toggle + 829: + - Pressed: Toggle + - uid: 870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.4680905,25.37946 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 866: + - Pressed: Toggle + 865: + - Pressed: Toggle + 864: + - Pressed: Toggle + 863: + - Pressed: Toggle + 882: + - Pressed: Toggle + 879: + - Pressed: Toggle + 878: + - Pressed: Toggle + 876: + - Pressed: Toggle + 833: + - Pressed: Toggle + 834: + - Pressed: Toggle + 831: + - Pressed: Toggle + 832: + - Pressed: Toggle + - uid: 889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 830: + - Pressed: Toggle + 829: + - Pressed: Toggle +- proto: SignAtmos + entities: + - uid: 928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,10.5 + parent: 2 +- proto: SignBridge + entities: + - uid: 929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,23.5 + parent: 2 +- proto: SignEVA + entities: + - uid: 930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 2 +- proto: SignSpace + entities: + - uid: 933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 2 + - uid: 934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,1.5 + parent: 2 +- proto: SignToolStorage + entities: + - uid: 936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,14.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 937 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 + - uid: 938 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 +- proto: SpaceMedipen + entities: + - uid: 939 + components: + - type: Transform + pos: 1.4701843,1.4602051 + parent: 2 +- proto: StasisBed + entities: + - uid: 940 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 942 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 +- proto: SuitStorageEVA + entities: + - uid: 943 + components: + - type: Transform + pos: -0.5,4.5 + parent: 2 + - uid: 944 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - uid: 945 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - uid: 946 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 948 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 121 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - uid: 272 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 + - uid: 273 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 2 + - uid: 441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 2 + - uid: 482 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 2 + - uid: 734 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - uid: 949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,24.5 + parent: 2 + - uid: 950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,24.5 + parent: 2 + - uid: 951 + components: + - type: Transform + pos: -9.5,1.5 + parent: 2 + - uid: 952 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 953 + components: + - type: Transform + pos: -7.5,18.5 + parent: 2 +- proto: Thruster + entities: + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-5.5 + parent: 2 + - uid: 742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 2 + - uid: 743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 2 + - uid: 744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,6.5 + parent: 2 + - uid: 751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 2 + - uid: 752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-7.5 + parent: 2 + - uid: 753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 + - uid: 955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,10.5 + parent: 2 + - uid: 956 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 957 + components: + - type: Transform + pos: 1.5,20.5 + parent: 2 + - uid: 958 + components: + - type: Transform + pos: -9.5,20.5 + parent: 2 + - uid: 959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,24.5 + parent: 2 + - uid: 961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,24.5 + parent: 2 + - uid: 968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-3.5 + parent: 2 + - uid: 969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 2 +- proto: ToiletDirtyWater + entities: + - uid: 56 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-6.5 + parent: 2 + - uid: 233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 2 +- proto: ToolboxEmergencyFilled + entities: + - uid: 973 + components: + - type: Transform + pos: -0.5064697,16.730707 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: -0.5064697,16.522373 + parent: 2 +- proto: UraniumReinforcedWindowDirectional + entities: + - uid: 55 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 2 + - uid: 235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 2 + - uid: 447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 2 + - uid: 476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 2 + - uid: 478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 2 + - uid: 493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-6.5 + parent: 2 + - uid: 529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 2 +- proto: Vaccinator + entities: + - uid: 255 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 975 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 +- proto: VendingMachineViroDrobe + entities: + - uid: 720 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 +- proto: VendingMachineYouTool + entities: + - uid: 976 + components: + - type: Transform + pos: -1.5,18.5 + parent: 2 +- proto: WallShuttle + entities: + - uid: 41 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,15.5 + parent: 2 + - uid: 49 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,14.5 + parent: 2 + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,16.5 + parent: 2 + - uid: 119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 2 + - uid: 232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 2 + - uid: 236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 2 + - uid: 240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 2 + - uid: 252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 2 + - uid: 275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 2 + - uid: 277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-5.5 + parent: 2 + - uid: 286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 2 + - uid: 287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 2 + - uid: 378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,16.5 + parent: 2 + - uid: 402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 2 + - uid: 427 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - uid: 434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 454 + components: + - type: Transform + pos: -9.5,17.5 + parent: 2 + - uid: 497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 2 + - uid: 516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 2 + - uid: 539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,15.5 + parent: 2 + - uid: 578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 2 + - uid: 597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 2 + - uid: 653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,14.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: -6.5,27.5 + parent: 2 + - uid: 679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,13.5 + parent: 2 + - uid: 687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,13.5 + parent: 2 + - uid: 695 + components: + - type: Transform + pos: -1.5,27.5 + parent: 2 + - uid: 746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 2 + - uid: 747 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - uid: 748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 2 + - uid: 749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 2 + - uid: 750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 2 + - uid: 767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 2 + - uid: 978 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 + - uid: 979 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 2 + - uid: 980 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 981 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: -13.5,4.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - uid: 985 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - uid: 986 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 + - uid: 987 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 + - uid: 988 + components: + - type: Transform + pos: -11.5,9.5 + parent: 2 + - uid: 989 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - uid: 990 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - uid: 991 + components: + - type: Transform + pos: -10.5,12.5 + parent: 2 + - uid: 992 + components: + - type: Transform + pos: -10.5,13.5 + parent: 2 + - uid: 998 + components: + - type: Transform + pos: -9.5,18.5 + parent: 2 + - uid: 999 + components: + - type: Transform + pos: -9.5,19.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: -8.5,19.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 + - uid: 1002 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - uid: 1003 + components: + - type: Transform + pos: -8.5,22.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + pos: -8.5,23.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + pos: -7.5,23.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + pos: -7.5,26.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + pos: -0.5,26.5 + parent: 2 + - uid: 1008 + components: + - type: Transform + pos: -0.5,23.5 + parent: 2 + - uid: 1009 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 1010 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 + - uid: 1011 + components: + - type: Transform + pos: 0.5,19.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: 1.5,19.5 + parent: 2 + - uid: 1013 + components: + - type: Transform + pos: 1.5,18.5 + parent: 2 + - uid: 1019 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 1021 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 + - uid: 1022 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - uid: 1030 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 1034 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 1037 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 1068 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 + - uid: 1072 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 2 + - uid: 1073 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 1074 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 1076 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - uid: 1080 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - uid: 1081 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + pos: -9.5,5.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: -7.5,5.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - uid: 1097 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 1099 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 1100 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - uid: 1102 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: -10.5,4.5 + parent: 2 + - uid: 1105 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 1106 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 1107 + components: + - type: Transform + pos: -1.5,19.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + pos: -5.5,18.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: -0.5,19.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: -5.5,17.5 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: -2.5,19.5 + parent: 2 + - uid: 1112 + components: + - type: Transform + pos: -6.5,19.5 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: -7.5,19.5 + parent: 2 + - uid: 1114 + components: + - type: Transform + pos: -5.5,19.5 + parent: 2 + - uid: 1115 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - uid: 1116 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 1117 + components: + - type: Transform + pos: -1.5,4.5 + parent: 2 + - uid: 1118 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 2 + - uid: 1119 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - uid: 1120 + components: + - type: Transform + pos: -5.5,13.5 + parent: 2 + - uid: 1121 + components: + - type: Transform + pos: -5.5,12.5 + parent: 2 + - uid: 1122 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - uid: 1123 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 + - uid: 1124 + components: + - type: Transform + pos: -5.5,7.5 + parent: 2 + - uid: 1125 + components: + - type: Transform + pos: -5.5,6.5 + parent: 2 + - uid: 1126 + components: + - type: Transform + pos: -2.5,18.5 + parent: 2 + - uid: 1127 + components: + - type: Transform + pos: -2.5,17.5 + parent: 2 + - uid: 1128 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 + - uid: 1129 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - uid: 1130 + components: + - type: Transform + pos: -2.5,12.5 + parent: 2 + - uid: 1131 + components: + - type: Transform + pos: -2.5,11.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 1133 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 + - uid: 1134 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 + - uid: 1135 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - uid: 1136 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 1137 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 1138 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 + - uid: 1139 + components: + - type: Transform + pos: -6.5,12.5 + parent: 2 + - uid: 1140 + components: + - type: Transform + pos: -7.5,12.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + pos: -8.5,12.5 + parent: 2 + - uid: 1142 + components: + - type: Transform + pos: -9.5,12.5 + parent: 2 + - uid: 1143 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 2 + - uid: 1144 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 + - uid: 1145 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - uid: 1146 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 2 + - uid: 1147 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 + - uid: 1148 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 1155 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 2 + - uid: 1156 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 2 + - uid: 1158 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 1174 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - uid: 1175 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - uid: 1178 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 2 + - uid: 1190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 2 + - uid: 1191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,7.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,6.5 + parent: 2 + - uid: 1193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,12.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,12.5 + parent: 2 + - uid: 1195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,7.5 + parent: 2 + - uid: 1196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,6.5 + parent: 2 + - uid: 1197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,23.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,23.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,23.5 + parent: 2 + - uid: 1200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,23.5 + parent: 2 +- proto: WallShuttleDiagonal + entities: + - uid: 602 + components: + - type: Transform + pos: -7.5,27.5 + parent: 2 + - uid: 694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,27.5 + parent: 2 + - uid: 1201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 2 + - uid: 1202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 2 +- proto: WardrobeMedicalDoctorFilled + entities: + - uid: 678 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 +- proto: WardrobeVirologyFilled + entities: + - uid: 382 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 +- proto: WarningWaste + entities: + - uid: 1205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,9.5 + parent: 2 +- proto: WeaponParticleDecelerator + entities: + - uid: 708 + components: + - type: Transform + pos: -8.467545,17.608757 + parent: 2 +- proto: WindoorSecureUranium + entities: + - uid: 242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 2 + - uid: 261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 2 +... diff --git a/Resources/Maps/ERT/Old/ERTShuttle.yml b/Resources/Maps/White/Shuttles/ERTShuttle.yml similarity index 100% rename from Resources/Maps/ERT/Old/ERTShuttle.yml rename to Resources/Maps/White/Shuttles/ERTShuttle.yml diff --git a/Resources/Maps/White/centcomm.yml b/Resources/Maps/White/centcomm.yml index 87dd367f5d..7f5ee58b59 100644 --- a/Resources/Maps/White/centcomm.yml +++ b/Resources/Maps/White/centcomm.yml @@ -35,6 +35,7 @@ entities: - type: MovedGrids - type: Broadphase - type: OccluderTree + - type: LoadedMap - uid: 1668 components: - type: MetaData @@ -5009,12 +5010,12 @@ entities: - uid: 6612 components: - type: Transform - pos: 2.170168,-2.5148773 + pos: 2.372785,-2.519488 parent: 1668 - uid: 6618 components: - type: Transform - pos: 2.060793,-2.4055023 + pos: 2.372785,-2.248655 parent: 1668 - proto: BoxHandcuff entities: @@ -5050,7 +5051,7 @@ entities: - uid: 1457 components: - type: Transform - pos: 1.5702643,-2.4016738 + pos: 2.643887,-2.561155 parent: 1668 - proto: BoxSterileMask entities: @@ -18974,6 +18975,14 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,22.5 parent: 1668 +- proto: ComputerDeepSpaceCom + entities: + - uid: 646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1668 - proto: ComputerId entities: - uid: 589 @@ -34414,11 +34423,6 @@ entities: - type: Transform pos: 2.5,-2.5 parent: 1668 - - uid: 646 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 1668 - uid: 647 components: - type: Transform @@ -41323,11 +41327,6 @@ entities: parent: 1668 - proto: WeaponCapacitorRecharger entities: - - uid: 1446 - components: - - type: Transform - pos: 2.5,-2.5 - parent: 1668 - uid: 1447 components: - type: Transform From 22dc28652cb87ea898dd5ec47d814e7e092f5a67 Mon Sep 17 00:00:00 2001 From: BIGZi0348 Date: Sat, 15 Mar 2025 18:38:52 +0300 Subject: [PATCH 11/22] =?UTF-8?q?=D0=BC=D1=83=D1=85=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Audio/White/Ambience/Fly/mosquito.ogg | Bin 0 -> 83575 bytes .../_Engi/Entities/Mobs/annoying_fly.yml | 68 ++++++++++++ .../White/_Engi/Mobs/Animals/fly.rsi/0.png | Bin 0 -> 1798 bytes .../White/_Engi/Mobs/Animals/fly.rsi/1.png | Bin 0 -> 1784 bytes .../White/_Engi/Mobs/Animals/fly.rsi/2.png | Bin 0 -> 1797 bytes .../White/_Engi/Mobs/Animals/fly.rsi/3.png | Bin 0 -> 1798 bytes .../White/_Engi/Mobs/Animals/fly.rsi/4.png | Bin 0 -> 1766 bytes .../White/_Engi/Mobs/Animals/fly.rsi/dead.png | Bin 0 -> 1461 bytes .../_Engi/Mobs/Animals/fly.rsi/meta.json | 99 ++++++++++++++++++ 9 files changed, 167 insertions(+) create mode 100644 Resources/Audio/White/Ambience/Fly/mosquito.ogg create mode 100644 Resources/Prototypes/_White/_Engi/Entities/Mobs/annoying_fly.yml create mode 100644 Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/0.png create mode 100644 Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/1.png create mode 100644 Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/2.png create mode 100644 Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/3.png create mode 100644 Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/4.png create mode 100644 Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/dead.png create mode 100644 Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/meta.json diff --git a/Resources/Audio/White/Ambience/Fly/mosquito.ogg b/Resources/Audio/White/Ambience/Fly/mosquito.ogg new file mode 100644 index 0000000000000000000000000000000000000000..93963e2f3c3f97d5dbb54b66cc874c3d47ec0e87 GIT binary patch literal 83575 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�TSi6hQ!p(eNz9aAf6lXe7O))%c2c+gqAv80;#7{csNbCx*2cPzms*TilMF9 zi6U#PAeuNhV`o%GHbl=9_2ECMGj8F=J2%P$+}QRbmo#jUI@#3FbO+}(`e6)v*owV-;Z`Rl(j3;|+ktlT6U(7A1g;{JXTsho&_g z>g=(o$CTBzFXH}A8%^$B-`wIF^|m88QZJ`N`Bi7H&kvzW2z6Qy2RE)y@yhw9k{(Pu zow+f#7vP+tAGL9~^ur$$u9V2`1PewY1s4o^FP+P6y7w$&dE^3HJ5CW?($ zd@c88ic2)s=WHL{JDNle%=EzBbpO1nd2*7&)?@0Cw_UbxQOaJRN6{UHj`{77m3ddf zuHU`?_OUn8mehoaGEs1n-zqzg3T_{vRq|%4Q;^dqN|RIFm5mT)kC|VK;91IOKg-l0 zzAIyQ!l$mUoc7qwP)^-gDpHDqVqaXyL+lMVb-7!9(0E(?Crf}jXHoZK{j(Z|cx<@Y zk5&Xq+~~D0*8=UZ10ZV00_A2&%_{8j!^&*^yE^~)!WrVzBoZ8nu*}uKsl=t$6Bg(H zAc#5eEqo*p1l-mrYcMrmEB1JF%Bi?>@#jy+6N%>&W8=;OB$1qy9Cs@AWccyPHG`P- z?utZ!|CbV7gg#r%+@Nn7Vi#+6^Y(4v?*{GO%4V#$a*ObG|pbehI4)x(!n z`&!(GFeCv8T|+!DH-~Dco1_=~t@>w%o!Oakz1@c?e|ym*ea@cH8QKvP?Yhe!^@v_0 zsrF7SKbCg*vy(`E^Z?4e=st}MHYjHjgVVRtE^LZ8+mnK`XK0yV$-fF-=5w!Sp{q-h z@Ks31Y)DOd;cfp63erPK>nCis6PpuqnXOy0n4~GFtAj5Gz}||nn2WWa)()g>+fH5P zbt~1AfxJ!5Z@^>wOWp7X@2xQHw#+TOc&Twk6tB7Uvr@w-t5A)G)QV5x_ z_jz|C0+6)~3jcHabDHzd8WZ(mKqbe1@7H|i6i_Op5xzS|k%{f*n9VXa?t`cN5w8_- zwRP1*`;oh3Il@XSbR$}6q})K~Z29~1pP<}_lwTWWVW=*wCN=cT97=YVO4TY_YYJtZ z(HdO-z-s2B?W>QOal4Y4Ot%^ZqBsEO>92l$rDJjZt_xZ^d>rMbJoaKCmGVgC0OD&y z8hP9IXoTY8ipt6lilXnS8-Lt)VD)@)H1$7659r)i4i+U6jtLQfxE{DG))u7-|HQJG z?iZis-FQz-Nq;( zwxP6lH(?Ja4bS6mh7FD!MMgRffV)(W0wQ3=S+|@w^<_5?S<0__2^pUt{=L_7SLPm0 z!x3p>;Jyn@RC!fedP~oBTx}Ckt37FOi1$<2ib}HwT?v3kaka*KI_X)P#@2F^E!-j; zUBh#Xp>!f-PAZEB?h(HJCP?E>rYT@)ix0Q&`m*!u^B~BPriSP-exm8MDlUpuO zY#?Q-oPqxcj%Wu*5OnWE!&iKd%I&x)q_KleR4z`@UO!c6h&EqF!2s3Mx&N4aI*&eA zQ~6J9&1CAm$IU>o%yDoNzrZz2{LLqq7zhgDo|X(`qfq1~HMW-`GVdDOMah29I48R< zuG2oQZ?IXC-~mNankY~fG1XinIM5S^1aw)hg$?1UNm7D2wnBz(i+2T;;Qg7fUyDlr zEJGJkDcZ~xEP3}&!_wq#uT(UA0wX{gr*;XAm2ExcVm-sptpl0P5u5F&Oj#?~pnaEy zlagi~3OWAzw)?K`_}VRMI(od15iYj*Dfb*g%rgE8axJ#&$bn0n8Yp9snTW-6qvk~D@?&Mu@vkzF@rjUzoE~U6eFSJ2k)W6MY{6*;Xq-oKV98HZsfVqC!l6%~348FWEA1 zr%x9RtXfDU*6qw>BFB3y6n`BJKa^G#{G6|ZI(=yvfO>H;=J@_sOPZ5&7 zQJUoHTDGRUj(6FHn8~Br%|{Bnd;N#u9_dy8&?`&Uk4^d!yZ^zt*G^HmU%tpOw43s- zp@~xz@)#v>V#jvrg^S6XL00sx#U7}q#*FXjm5yP`&BhI(k0w{kxw6JWIm3pb!E8=Jkqi<=LVjxoc0(h^1|^%mmMo+ zV}y24+}2v{mgN{fW{QH21W^+Qb1F3%4`yz`{Dc@Xn1eUAg8tf+r;rp&p&>`m~;(y@im4<990e?GL@cb+Vp2-l0T=baY}M{$mNvWA?3or1{`S} z>3(r*$s6rjQ+_y`(3D&rf`-7-LZ#3FxZ=xpWhn8YFp<<)KIIeciLPjioWD*( z=+3Z44!xs=SN%xyo z%sE~gdZJ1Mr+o5SMxdaUed{ag)FXJFyoi^UOa`LP`J6GnQ47iMbGwNEZwi%}^v-7|4r)bmBVD;^KO5 zyryMOsc{ADu9%=#3`20BEyL zwK`q=Coh~}IJ|R!Fhelf8qa)r5QVdYma6yb=@Icg6lo1g>-Ix;*IciNa@npd>WLXH zl}Tzzf6@$BGJGB>B0BgVq~?(lc*rdp5(m5a#1h_K_4Hor3deg;31y!M^QCi1s%KI$ zP7ZV6!PE;gS-J^p70WBrr7&TCCn^ zauE&nx4cp$HXieFi^lZ`u zb?21q_4;_`d_K+Der0dwJv4RX6CupRVd zY?@t$Rxeaky9DK2Q9i^G-4eFn(WUxs&hyd5Q9 zMwbd3z4-4_@chwam+g>4*M~dZ7xHz-9e2MZqcql_ z#IquRuGGiOVM{~5@3B7;z-7ISG4Kb|RZLlkiS>RqEM2XkJ#pjMO$x7G6-b zU>%{!T{@k{9_%=|p24u=$=B27(|FzuK?r@F$uf^ywS(7<+DnUKo4i%08{C-y@T5g2L>EUhd`DB|~l z2S=q=J*!BCFm#8i!%^sBzPdMqiF8jkQ42Z-&4m}A`J$lm=~}XSJQ-lOA`~M+-tLtC zU7igGOY2zKk)zG9Zp%z7oH&C01A&yB8`ANczWBhkAUAn*i*m%ewn$mtP9qEStWtq6 z-?deVyl@aTnc?EUR1|zO16`h@z}t`W#WHA8mUq~ghT?;I<2^Ek87<#-my+`=)5sFn zPk)!Oi2cqe(6mu!z9K504QOj5MY_@7RVuAzo&!ro=-C@L>PHhwZg2^m!#`iWQN#Q#xk;hv#_jR&8{rdt;Dlcl z?s`*P=UEyEjyLd@u2t|&(fOx8UlDy*)#N8@BF^OOoDZnD&5;fGnMJdae-VS1Sp4U% z6yNCxEGjPS+)GW|SmlBq-aucr(GvG*AZcK5ZOX!&&dQ(wPes!2gg3@XC?p^JJl4a- ze0IMi#)a9Nk=BhHy9%C*ZN9mDJuYGGOW0Y3PM0E;-BiGc2dcO2Ax=%QaF=#X>2R;6 zom+?{DipMMp*2}$C`tj@9YMnFiD-Da4tmsPjlEBk<=xdIj%_1$FG2G6ars|OD1G1x z;^rg$?7c6MO0#O14<)RADge2Dn!GDZ>>6>z?(Fv;*+uw{2(*CQgAg0!eG1aDRd<>!m7qU97t|1UswBo0fPr#)VQZmVPR8X)D>+w+b}Zns8U6D2ev z7ta(_`YMa6klhKyeP4WnLFgu-Q3`UHsfl8giI#LTrS@L`l{XP!qIn>1a=LjGhb3XI zOwp56X*@ISKbgI+B%Lg9`}qxrn$Q$1#DAr#E|@nLZD^$Qol(#>Qf2T8nP@lSJ4UnR zeSc(OpIKL_PYyA7-GRtr7y6O6MYr`55@=ncI#HETKo*n2E?q`R96oUC!0K9T<-{~) z-gZk0&vz?@J(GQd2~c7^rxLk=N!U$N8QkmsA9|3m8{s2?9su(MJZRVCjO4i3gw*(q zgmcO9|C~J)eJ&~{0icJoiLw7AoJwA18bbIh^00lpshdjqUora~*EXWlZWSaVZ zctoM6N9Xax1{0XJo+>JNlZi%+wql10F{P{~%X7RYc=?6UDH#ikMhGHBtw zU*vR|?RtXE$J$X-{XRB|4b4f@=&MW8SiQYtk*fetCooW%ft<;qsFRam;NWIk@x8$l zoa~AvDLXh}gvhgzU9X17G$JqJT&c=*aJO0<&nrIire1EHLFkk=g?D)`cKUv-0m_|? z*f;gGU-|p9ut&$XqJNfS~5?@Abpj@ChuDY&nmwmaN2ygTkJ+nSp;%U4| zr#?zmQ3p~iC$dhmtN49PM|~9(9NO2Q3^_)TV{nyz=a4Sl-u95-%&x15TD|I4&MKcZnx3$1}^T&jpXR9l;MOI`4fMh%|O58ks8(R+t3ys zaFgs(G-&x-w2sirtLq$HFNarp0z38h`>2Y&l{zCnMmPEDrusb{%+5T13HSo_U01G# zJL(pgGJ*ww1BrtI#kJTWyUw2Tvf#gKv;v-uPZ?KYu6(D;4PKuXsRYPCtii#&-~y!h zWMa1kZ>%8bC;jxF+8fA7dG?A4{k5}S7r5dAb0(V26gpp;lp^n7?ArY^*^?^Mk9%d> z9I8Cq{p8GGUrhK|+F5?E2D;Ww5fyC+baih|Quxj_lF>oIRYD||Ffb9&$;lxFlwcrP zp$fD?3YF8#?U99@wV!V<)H7jHt{uo7K65+W*={?6QV#S_4L6J;$Z3(+u@%;7-7@6g>gLwp z8Bac}k|9s~t6M85bx!^~kN_TJ5^RzL2ot}QBt`NF3(cBCd=CG|2DiDPi^gJ5Yr8omE;|S% zdkE&pQA>?crM!n${M`i6WWGdRY<21#VvLDm<7pnc! zNx{=*=g4elC8!j(K$M-1)G~S&G2WS+`XWtn* zc3%4Nm?nd0{QQXfD4&a2hWeK&Dk=u_d?|Z_YZ4uPE(YShah!n7?25U$mVl3@5SOr5 zf}P7<;BtBEV-aP|q|4un=ss;MYQU5bTPaaN^kg9>-5l1uVLS29_yw$RW(U6I7V^Gf zkTokRf7w1Pb(1E~MI`_N(yw*I;p)XaCGjh_0!6}#)pGp!%^7lVfP>OeA5}kdbK9W>hwv z+yZelPDa#Z56mPQ_}p`HINC6Q-?ioWl_P$3$tk-O4UnN^&lrL*4J;u3WAJBxmvDWu)2_q5=|VGO zi5uiWiJ!BeSdpi1%aTu!N+AwlRPSfSOHg3b2Xr_6lvC5WM`mjyN{q0YnhY;uIHVGD z;{K83>aq^0uNi;T3`vi)5I+_Zrr!Jf&WB zKj0Vnj7F*waEa4cuE5g*2Pie-VFI{?0*TQ*ux|mB4yoM^q{NCbXLexQob%4$j7w;% ze36ECh;sks;L>08%Fx&dC2^Y6HpL}MU-rDjVot8L!_tv>@0*~f2=Q91c&no`H%ooO z1Qj__qVs)&s)$wT2Dk`tc32KVB6_V8L^ysg4I&;A9&BKORG{1?!~;Si&B-0ssX8|U zlEy%qcp)*OSE~;u;(lLWA>B52O8ZFhY~FT7;`33%MabhQCjVjY*2Vl;>~rP!O(}df zy6Cc;+iu4}ueI2QQ;w1D6dgt1E_Rk?Lezl1#a`KfL|JwA!Xb66p0)U?6*bUH)(ubF_xL-B&}`MuYV^jG!3f%rqSi0XSE>_I58}Y3|12oib?L%14 z^vhSK7Zs}`b!!8z2PM7SI0LlYASly!suqXV!bSnWCZv`H-607u;85hqaso4mNgs== zs1EuYt}e1x_ZQki95GRD^T+z0Bcv4m6A9bD(T3%0ZFLj74hMehKO-H`Z$d9$7V2C` zHpYHMHrr_V%Gc;Ik5`sbP^ewHG5Zjv!~-w@1A|pAm?j4Ts(5Gmt0$LBcYIlKvcLQC zT9CJLtZ0QQ~{m*Lp4K#V-j2Q)uuQf@3S}z_Uj4R$u85W^9UxcDU`#65j$X2Mg@YhFHN>#84bKmH@(_PgbvKa|pH%s0oy*eM z%+QG*^ObzIPC#Q5kyQKpBZnBTkBwd7iv)E3$#5C2(Zkxglwy=EgTS=xC8yF&rO1#2 zF|gS)!q8!;xv5Q6MdFj)093FdSMUP^!#p@kNGMivO9g*`^fq zc8!@^e~*3R{0J-_C15}vErhr-YUBV+Ebo$PGPLhJSORmv3Od*W7!~{mT$5i>4UU-@ zygn2h1=|U>PWKT2ZRucrxz+ZCLJ_!E>o%?Kxi(F(ex1U><~7n~W{y!j{O5!$ns03* z>vN)tEsW1_fGpOhvavb9sRl$^$h{CrOtmrClE|rqAL49aRX2W1To*}m+Rd*`Z8)V; zh-p>1rEz!i&Y2#p4kF&wGY6}phW$fTdk;9cEO zu@UiKgx?ZS74<^W+Kw0grEkN#CNxjI9GSu%%kZXxjR_{I~HQ)SsD zo;zk9@DtPCTnIDI+74@!W=RXxKTsJdzF4`t<rzphoS0Uzv>z^~oX65KS;)^ma zGE+haww7Si{#dRE`m3sr9&RMhA0uK4@^PP)D9{|s-4DVRh9;5n#i7~J1e7Ik2f&yK zeywNpTEn=}W@X?7K!xiBM@~ZN+%dCinSo+}p(3(L8XEFnBUu#--t@Jk zR@yDq6_&`tze$%q)J=Y=h5M#%$fwjzLSP}Efk9`$_n!W#09-7iFP@KX9$8e_;THxg z0+|Xd53L#*j@30EtcvV|{#2pb|Dy;g|J~~Up$L*}Lac7go1T%Dl%9MpJ?VV%nZ%6v z_$RZwI@RuU>*Xkmr!K?Q-+Fd>OYNBb+rnih$O|O}x_>MUT z-8NmpbKPgk6uh0_VX@&hs=7LHtsG%DwOqYhN%Z3Y&NntE=NpMEpQ!tw9?G4-I|jSU zPPrxAe23t_LH|41@ohi3e~exeF8h}rJTa3+j)pdXCv<10GO&qBumyez{_c`Sn*;F} z7uLa(SI@KHp+H{dm*}N2mzP`8U)QXu2t3Mo9%g&*IU`44g0}Xop**O5J9k!7c%p*# zS08LE>59q=_-dMs&mQVPLIGGZdN+ADlDpRKQR5fUyR0)Fw4r9Et9vJ>c&!S^J>fUU zse&25s{#B0o(Xg}2Z@tAR*t*=j#MtP3iBwH*y~57aGY+s)*hrukRni+&n6oJX;!w| zsL!x_!K`%~kEY3otF1b}KlH^G-4|EwZ*43tUH3c~@utz|8}%&N9%GHg?4hakPq7tI zW^$N4e~HmW9qpdw@_&nwf%pzx#U;3G@O@ANQzhFCAR(>gVN3CHm)=n&A#Mm1XQzmV z4#MwaG)aG$Y#JKHfwwn423b+Dq-vHt(p#SlX+qbK=<(Vvsz7DwgM$k%2S?6n4ZXje zv$Fc*fv+<3@-Q&EQP;V_)HnNLWJ6c8)Z^AZ?k|ftprv^u=LIyLZ$5>>*9ip!naehU z?u=d_KwOepzR%YN`X@Fog@GZoG02_E-N50*K!xMbY+nE= zR1t#MTbK&NHsG;P_I8M7ui&|y)zke2c6D!Nd=8gdwvO#6RH| z!j|L%BufjZ07J^K*PI}aZdMiroxrT_RTrrYjrv4zz|*kVtK6knq7d`zJFgrT?Ht5& z{fu0Xy`?V1Rwf`$@50N^uE#!%RNt4^=R~NO?A0gi4u@{g&hPt#qeE*M#04ah(LGg> zk%fVQDTQoY#WiwUgnQJjf&xm(ZJAeO&dbspR#{RfbJ&w#_b1AzPl7U+SX9giKHzij zR%C)|af?vRkp--yAuq|YK=X@$Tf7v$1@j#dvRfpoID|*f;hQ7pS1;!2+S6ZdX%8}I zNAOGUDrq18wvjj64~;zCt+!6tXRIUZ{pb41(&SC}(JSlI{yAM|XWx19Mh^aD21$i1 z2)u0~QokJea(A~Wx#HxgQDCW)0omBJ98GoJGGYg=o{O*9e9e@IDmS#+Oj+8k=p`Qq*?cJeplQ+s%0 zde@+Tv6lB?->3+MtXoAqz6Azadjsj4eVsbJjdj{uefjA(Q2WXjJ`x%u{*1%^{8tzL z2HAr>w2yXq061D2tGUrBku_`>sKOpIC&I@+%}hMY&`H`;7Zbwb_t7fJ@9!00;0WB& zATzAcCH_I>*q?V-B7#(n8L#Idr$M*yjjY54trb`wwe0ZWu2=8HEKpH@q!0$y!&6gU zc;$n#lohJk5&LJXKC^6^5|?keKiv_H1k`miQMe^4k2Z8FasYI!+Cy<{YD%O@7FTy8 z%^Ez*tmedRj}J}zB^`e#6BG<#A_igsV(k{8%J(#a2hyTD&m()mB`Ce;6XsudObKcv z?q+Wp{zuw0?vZnPgwy3^w{LR8#?RI^EnaF><|Oht@fR=u-oOkz5l7eEsA$miv2$7V<`p(x_ANP@)AYs98d^Sq2_xO0TKg z%CSZ*d|_w5j3pRc@h=t^Gq4H{rSha!=%xMTA2xqeN55DMwR1<&?x9zfMB)5t=!Dc< z?RZsmQ9Zpd^)bmRo&Ya4qV{f(InoNp%Bu?r@CgxOuE)RUYGuFaXwC|S$wz_umh;mD z&{iPLv&7*D708t1q$-I!1s^E=j!Q(LZrehnBXXATzGMBjw{k04Bu`2es>t1iAI+K; zV!9tU%*1Ra`Iz15xjZ$s4)pTG4m_{{OHAY7{2gWFom&+bJ@7+|(0fIY^SLdTO=q`J zp-|b`JATXR1ZK#psfC+up-iHQe8Ltvp&wX6*IE1|Ui)G2(LP}1pufi#Z6 zR0pk1HkCSU(2A)JvapMn7Myn0)D2g#nS6J+b8y=3b@5EPVCK|J)cH<^w+-w1>C}Li zn&+W+J5i5b1<{cSsb1~5;@(`(7 zL;`TuOM}%x<&k~kp%Kc^ZOn53_+m0TgK5l>vJ=UQmqj#09liy}o*$YnH?cI4K`dlp zL}+&pox5V4cBY&TI^2I7;>32Pe`#9-zQkgp{yWG?#)iT-u3bK{%1wRWM-XeZ_h#gH z80=8l-6@EU3tDK{`|qlc>Vav#q0g;9QV&0`>Z1m{qQW$izm4>FVLepgZ%tJ6mk#wW zkmyJ+0xAh`Twy^gI4m_o+7+Rfgj^@>oQ#Q*WIxG7ddL#p>bOU>PZV~2`aGJztp+E3 zhpm~}sg03?Lyner!Y4x_D45`FqvCu;uqBNUN#_prG{3`g_n4Z68~{Q3+T)n0hlSjZ z*FxLXxg74gz!NZ#q!22tJa|cfntS#F3mBfJ+>?YIlj{VYVB*q$5k52(4c*Z(XxR z4XN=WTs-bOHT$o{_#tewk_efASE670g$(i8ci;tQN%k4cA5c|sk$8f@?cM;L7emB? z;ZQEXUUzqdpSh)4tn0%F+?>2L|B=4$mxY-2?4^sPsUv>{u%Bh++gc6QKdP|N<=Twy zd%p&m#L3NYK`fP5&>Qi=xz9ejtCMCPnZP{|#j1&B-ZihY8e=K-e`m{r+Po_G1kC6v z>xtfVb`9%Q>3GhY$|@Iq@fZy8Dsh7eUd-aOzPJugnAX)W4zo^3Reb<+L`DGX0GtBU zm&d@%?x%l#jvZTa%^wOGa{vB*_Z1dzM3<4thFF9>v$@0WOejbXwF{~)*w^d#`}-rN zqo@Q1i}CTHLURudvU7f$2?nT1L!CPMa2&VuxZM582Rw+J_fFCSpa{{_G=p(I6Eayf zbvl-ofgzt8R2vxg9%j2v(qV1Nt5G%%*O^lxXdVcfmb*ti(3ad9Dl8B+B>YKcbc}*MEZ21uag%1I*gv*6u2yqZs(Epqy^f%ldzG!fZ#Dh zmuu8}yzGoc%w-4O{jN_}iot*RPu#|xi?OOujA({aUty&(<6^Vo;R+g>2zXm}Bq`HW zd)>LjyWQyYDTU>CDtuFY&Ef%%rg-`_ zN-&IEnk8)}XmtZk%-HbdSUarw`{?q%%dM-hk$ukez}bt= z)^^3qeDJQFi`OoLa zH&M7(`Z7^eW2F?4^x7mp=+v1#+>FAoS40bcM>isdyPYynnyNz~viJDGEhJTbO7o`rV4t+V2IWU9I+rC7Pty_yps7k~X_oEL^cZ8;k z(5)EgfWYW=_F>Zmz;dgR8dy-#1hC|LmrHDF!7ZoN_-QGhSd4D}9g8{lR9#g1t&lck zubwHodNwzOz3>&SWZ3TS$1vKvme#J z+vg+lXvDY43*RQ$sPfP+25CQvlXovo{r&ZAKOqCy3kglw%5reNBqT$JiX6ax;Xh>x zknk+7M&P_C%~p5Afr^hFirG4Ifm9oAyFq*IuXO49qCR-jtIa zkE1SKQjc_@cS}E&b~*|M*!&*RkG)n{8=dU<-UW)O@#O(IBS!~F#?gv`Q};s+_u@5E zQ(w;avBU#DG-7aSCpY7NLX} zSI)uonT$)*yAv1A%qv8Xo^rOMU8B*nR@^hD$u}1}W4Rqi{6Q+{fft%-5+25Tp-`s_ z$4y!o{IP~U0lINRn^JtsheAAb58l~3+SN1~y0aO-`Ez%`n%n$8fjF|ic0`W#dFZL!ZKfc3B48Co7&3fG7U=T_kS#3hx~UA}p$BzHaox#=;=bKK1pw12g)$Ah0!(5D5py_e2o z)-rSKYTU1&dLfGOt>GD?3<{<3f|)}M16q$x!Epc4Oah#DI}3J_W#gMr(5sc|N~^JL zjR}wk->OBTObK}`K?v5{(8@qzYn-ny-mu$lUc?_lj#u(J2pEpUo;yEvJrGP4xWy3t z$;6L0wxi+b$*btSva_4q?&6G@NhFf9}( z8_h)@mrD_GAc|;@j#e={ccl51slRD}+jLwMB0trfP2)rj!d8p$%45X_r0xMD2GxIEjJl*@~ie~Hb1t@J4An76yj_aOJy0wJZ zd5^Mgj^S~nZr-?nKR{^e=vz?#yV7336Wwa@#!7JA`iP$i|iJu zYuRJ*dud#=m!_K(MdpYs1A^EdwHjOQTZh2R_-r&5@m2$>rO-Yaz_XVi*@CF0wflMU znk`|if`|2+TNXgsCJILa6$UYt#NaKBH{gA~Mm>GZZR72eKHxYVmQWiN?m#f|TB0KQ z<)lg(#G38r56nn0%3+DksjXv)Xd$dbx9p?^s5 zH@Jd4;yG~!*IRk_9FuevX?Tq16?btfsEKMmf(dBKIuR_Tv7P@^IiuQqeG(!#e2r{nEZoz7|?L&dtNAzS8C z@o~C2q8#!vX0xouVW`u)2pEcw7xf#A(_`i+B1jI5gjkE&&saWHaPlT9?p=+B}h50nVl^LNQdfDA4UFn{4K< z5+@|JP{nuwP3U=IX~TEv;NhwHCDld8Ln3JUFe-Frjn>K01rBj3aSxrAfjxRbbQ%pD zD?~KcO9#Pz4vsb8G#PqoE(OG{ zmRT|gOvWpr5QOX(OdPAlO2l5D^hT3SZ={e<`i=J13}oN#IItzRl5uhB*KcD9y8$*! za~uZ*f6(d%Cl$5F4KwvLg^%8v`vZ)*qryz}Ql=_ys-n!Q=5ycdP{KPLXIIEo%r zedsX@N`cQ}ybCHQM6}Jyvi3f^gv2q#5lV=vC)3YpgjkfSV z+)?MGzr@(&zrE}^A1-0kAmmV34D;{CEba~rAo9)pfxdrJ-2tnj2pKO6MhAzCUhgb8 zk^5`!o9otJ*w22z`oPDVf?zN#3I<0MNRO_C$U{>8m6&9vPfN`1gM&p$|090>`KyQA zqOeo*42Yex5TyM4&oL_efkF=YDn%1ZW!fcu$ECr`JcACyW+=qDoEw5=6cp@T3R77c zno>&r6E0(Dvy(96OTVd$j6S;Azj7^wlTak?Y8pBZ#uS|Yo&y{V!c)<)=eHiy#OHaFp0)KVy%s%k_ z>=b4O7D0w8Z>!PEPaU65)Kz9n|?ExEma-f~>DvbZpR8(wf7Fy05_C6^(MR ze-|tuLj3jYCR3%`XPRSWc}bY~+~%d|M$S<*wSVNe`rmhNmQdt}GH0r9L$~$kwi=k@ zNJdop^&>Ulqf{GpY+^6Ic)uc2i{Q%9BNdurnj%z?2}{Hz%P?}y$9WfZ^5>5Xw%gf` zb%OVz zR5h`s>5+5_FcNd$H40>zT;0+ej@KNro@K(`kbEkO0;}*&)xZW%8q0R3BnW|bLxu}1 z%M4K=HGjSwJx2GdIusw2Z7n9ob6#GIxY0yGPm1J-Gf13PWSM9k)n$*fS2xTBKpG8X zsN9GDPdq5`0?cHP4zc&uOLH##@)oDg#h2pum|njwMH78Jd;>;{5+z1A7fpm;yJ1g{ z859g;ICd)b{e%l05eH0*VZt>3MD5TxE?ibBsfM6ERH42{3OH!|DJO_yw1x`6V%Pn- zA)Jji{+1;Ia@V6{&R&=x3`6Fa^!^m|Xdl`h9*H9+=@i3DEapfJKODkL26(`*}uuM^)oolzCmz(LjNBxUq+YkyrFS5 z+5qijcw5p3;g}HcNB)z3!IZdsi7bg;Vc>Xl)3+?OCp^zM;_Pibo z+(;GqU0J~0gv7-yNm!fTlU=BijKAAC-+GNbrW9-@myDT?EvLU;cGAi{uZb%lPiky` zW(R0KYb;XZ{RY&eud#C0j**LWd{ooA^$#DXB z;=x>c(Edn@Lj4pAp%U{ox{^kGX{39*Kq392Dd-=xaz2e%!9W|`fl#$$AzEyNJcrGu z5ufLJO3mg;;jQoNl#wh7Hd8>06U*U(Jxod0$?^gd1ios^lHx?8JV|F8-S+>tS`EI1?`+N~#Ql?(cq0J2Et9;GlK){R~F z6D*b&IX|BVs`+k^kL{3>-zEM)5&3RskZ-1;ei!(8KS7Dt;vc$&(RSM^PD4)?ckINtp*!(*m%GWtJWM_` z8?8zzJIj<0T8Y$;ZK*Rc19Lwv<`!g$c1aOOhuYvxJ3YtEl9bgHrK+|mp?oQ2#9!3S z=7xoNW&r}SWRqF^S%clhh=N3Y2hIvGB6zGA`_Yl@oGn6$H@bU5D z{d{g1YE&cdEDTWW@s7NaJ;`tK1~XLOehMAc9%umw%&Gi4@B=|`>IU94;OYQwt^bc& zFyZ;&BS9_Thv;F$zfxK;=l>C;Zas58E9vaHb8&HLr_RSkMx8$WKRkU2I8^)p|L4rc zFhmT4k~Rrt2&JUaqK#;?#TaW6rA49Q3{jz|tdX>#Y(t0=2T`HYwWl)bDkU|^lw|q8 z=YD_Bf1c;wy7xY}PG>&L`~7;qmUHoO@yYQCT<^-wh(mF~Zd^M3=)9%W!cu@1(ccFz zr3(GLImZsDX`Iz(qcHQiq_M$y#D3=ai_ywQQ*d7jD*AR8{Vn=P0!7In<%tR2B}C~V zE6KcxBhG4Z=b@PiJZs{NmiU&2mbQQSTCbLy)_M6HJe3mA!{Gek+E+Nc0hyp*qW_sn z41raT>v5_>1-(gDC0kL`zGH=7NG;B+J!ry2hbVeM7ks+#?&UvcYnvzuCw80Tcb;B~ zTDZs&{p#V!`I|bb;qD}VH_r(7OvJ|fJEn(cGt?%VCoWG+?$#`d`-39 zq`^GjYyY~@P>ApYQfd=eqf}sw@vibpjAR@n^YKD>b79Avya_%sC5jqJ1`OlYWT0jx z>^VtaueiYd+j5JP`Ih9vyGhaR%mk6%T+6RlXB~+_-xpf*mRT!V9~pnm&fRXSohyTL z+16upNCbYCC>O%6ZuU^!Ubo-}a4h7RN}Q=E zKdtv>+OBAAfNbhA=8<)>KN2RM4Wiyt5gkV#R=eZivOPH02$(Dz)wL<3?6XaR;v%?WdLd&w1sGfaj?1SnDw$1I)*f2hN3#OL%3~ z)hCOqf**JIopPTXfrIo{l*GzFgq*n4#4Pu0-f0i)ZUt?& z96cF(R^@QpZUsw`o6*4sJB#uTXjokM;U+U>YH4G4=JWDwOo?WlUNh-b&d^$c3yT;I z(x5t_89;n-qnEmh0OTCr{o>b!j)h&XR8?uoQu_7)3OfQPbEjbBK^O*IYJp0{;RcUK zu&`RP6eGP_!f0wJMoTa&UoW4zsMAM2nylAc`FKV-s8u^2eA&mmO&6Q*?zmZ2Eg--O zQ4sjZnF}*GmnE>E_g%4WqrsGwj0ENqo&su@U)Juu=5i&4IxqOo$f~Y-n`o1a)$tZD zpX$B(qm*s(*PXO;_{>eajYX9{(kDxym;bWX_P|E!XLFh1-LChq**g>}%P%r!hy7Ci zXUjTO*QW~$lZtK>T1-!e{W$hBb~^pz^M}$u{LztJl8x?^v?l3w*-Tx z`uYc+d3pB>rYHYd6)Zck?z`N{r%)W2BUxGk9Qb^ zzgMk6<3T-Z3GhJd?%SgDYX~IQh$WYR17PG`=?kS7 zlh|-Ga;e_(A@G714%NlvTu8$KHx<>HPrnmNxZ4U=22xlTr*6Z3u zMswGH>B>PjuF|w36xV)?A$?hHl69$zjB4)aV~tj1Wz}rbgc1|KzZJbNr3pP(X`tz4 z7^l1@D#WpNOa>WHyt>G`p*m z5~PzuI~o?<A#M#)1>v9p#!@a#HyJ{myQ;v$?+b#Vvxaw z7aKt>=k3<_uJ)z2Ml>eKq|@wdwX+z{4aD1-yz0B+qgzh(-)%~~?!&7{R-9Ff(RzwT z5|`}xb((+f8F847l_HEyT+_S9KfQp&ZIJ}M)_!ovYm>(^3F|yee z-1Exx6;4wbyiO~KUKgvU0+Uk69*@!kihI68EEC-9VOYtFdg53c15E>@`oUrbNdGsI zkC0!jU1tr-IsDM8?DbbJmV6=+hfgD(S&SwAOfzpDFOIqIh*rfKH7sl8fX4Jrp?~HJ zy@|hlmXXt{wE0Sc9(F3KHpLyL4=O1e3H#RIyr(+A58%CK7mLn4i|ta?gQXD+Hx4|J zD&kc}fc+~@6-F_EyaNrEMKT=sIsi%TCK}b>kUO(l03YT2sLQxGv(n-k{%+@4TI8io z$g~~f^=w7ov=w;^3fV5-GvyTCwJlX8{gYj{3DvJ1dM{Qot!G=~ZH;(1nQ`s0uOKZI z!ZDwQo;uVJkz@ebp(#(|gAal3D@H5^H})t!V2?zAdYKDD$)S#Mh@w-qU1Fb?1m^>A zz9h6^SW$uG_mQZW)b)Y&3iy~mO<<-1Ba^qd=@&U+xiE}G z96-FaE78Nf)IFqYoBKGQ{0#8J=)1 z)l&9bty5N)cs*L3I8BF2Di9LjAovqiSdc*CETQaHA4`Laxf|uMu+^(q&0U=hOL(9F z*-<&p7O022Z!12QMrChZIa3(wfKo_VVe4htm8;gtS+^Bg<4^!sV=PZppZa1i9&oQ1 zFCWWbK*IY&{xNCg_lUP7-*A@<_#DfI2-MP!HxvzKAkyU>`4jEv_tQ#qWD z3oQ?w7aA$VfyRY>^6;FlTQrvD(XO3(h=?}h|9H(V(8n#`+OJtY5zmHx<_015U)Y&B0IQo1CruCsM61B=` zIbXX=di?MeNJM!abzVxI%XVe;*UI7vP$@- z?|Cy(`9qkNPzbhixE$xrs<+snJyQRji~P#a$t!~5+R*)A^XhF)T8$Q}!GDt2(R*QL-`C z3qq@PFyU`2tSK6?qt8D--KIwF_D2l->t46HJXY`YOXR=zXNynCRm}S5e$SgXm;I^N zWZbXy+H$%7p{|IRN&?3naM7hTC#8sE2BMgl`$YlQtQ5{Q z=VZPuO4ajERidSXo~(jYrRfG#4#C?mSU2ge4B6}02_sU8Hzl0PJ-DbP@`Lk7s0Q0p zVs;FXXJ2Ut(jH8^c_iTj3_0Y(lG#@32Xl7FHM(r;p)hp6P$E`NguW7_i)! zlwHUxeLNGj7T!CR>6Esn2U5z+Pdx&8N1ZBYc}pz7lU}bX*d0cW`%O@jp4f{Rty>vN zBIj+m=|1eN^19)*oC%)XpuU14=qCY2GymTo2BMgA&Uxz&uAJ>E)U#PKAHi({{0~&s zR6!$#BxKmk2B(GUGS>Q+z|9BJ%{dM8=GS9F`m*He`$tCfzlDkZ{wltt9-XH+Hc#}q zSaH6iFUS4x?`;J>SbZ(c1l`@y#m<#!5A{P&5qJ995KnsD#yiYt?HS6s`%yL$yD$~3 z4HC_~PR^RI^HQ0Kt9#p}!;x#-X?eZps?W}gk^+H6z~9hQ+QeTeRGnCP9aJ3$@Z(9y zpk?)K7gE-(uqwv`q}Rh=UhxtdA1_5VlV833d)F*#%jO?yEUjF6}H!k?SlicTz3TW085>`_d3Hp>!z81Cl!1-&`^jBdWlUUh7GdG+KR&}n;g)V*#v z_S~bm_2xifCeZXLP=NCxu}VT6_J#)P|L7I#;pl;n1gMal%O2gwgtH|^k_oAq3H+G& z_;c|I8EF?TC&xjcW=c|GLI#|d!YrI#a!G?7UamAN%*n57N8kc9Gvh__(=aPln$}9r z^~^ld-)k0_-Tvr;l>rc9%*T2^yMfsa3k_-HTPsIX{juR_!70DmH*s_z94;rLEld10 zSf&BQF_Q2zGmpwSaa=ag;h|%G2O)5JXw;%#?khhEU{5M9Do>KkBQczJB9S?!%Xzw# zL5IW>pgH_!?&_*bQkD-6ji)2yY{e@&Rt}`?nt9TcuS;F>*3W%xO6N>$NkSP+Jm>wF zrkzqq?wg=?Wj@LdLWmLUL^R0`8{$8Y_OEyNJySq8h1V$jT{IT(A>4GV@t}V<5p5Ip zCmM1U;R6~76)xz}Bd8Kd{NcY3s=MLea!t%;@wcxeJ^G2gQNa&7@XhR6V@40t?PzTe z4@tF}kHf%J*XbXM@2w6+t?^pvi1Q13E^ASpNDiRyy1a{qI~d>Dz6kLWw~*E^7uDH@ zPGum$TT<+KKS##`+e&AQ>!9Z{XHS0A)_uat;bAwKyA_wJJI0FU$32)Bme<`9uUFuZr zh!q0JFvmCH-ghFqK%T2B+*dbgvh) zlJYIkn=Oxi`4)s7&sS0Bl+OF*d=sUfmc>PjNTuw(=!(=!L;5C#W{N^T@I&`8h&0>% zi1lr)TvaL(HpC9^ltphks$F7l^d}u_&02~(ztZWAI-GT9xmQFvt#c$_HaAI4bNe?x zKX0o)rKFSamLMI#yF~JGs`BHC;D^j4IK7Zox@xy-2k}i_8XsxVJobJjiWm%=)Wz-w zAoipzPbLrZ@huxI%+J5DPkJ?pF+6`9%ij4Y^y5+dN`WR-OH&2oQ1Kt-<;AYs{6A7W zTOdB(ayzd%dG8shdt9(qltCPi$90>fZChWuEitoqxQi)2OoUM6U^fv*1T>g zids#y0rm{vU6~m}2IY#Rs-$$JD4fd=O6#!^p}VPC;IfTcUl$uq^VPM6H(kK}MF)KN z*K8YW^tvqykKfqPALqPWD$#lPG&4BLzbE)QH_1Kxyh^!%H~d~EzS|pnm+Nky-j@eBf1lXa0Xr3DpY1_rU8D zeS+yp*ljb>2xuknIf6B4JIfcJnF+-kD{`o5mWeX*T>}o3BQqBo|8P5oj^=gdIkTS> z9Ot;-9i)EAHljqL`K%)83}ni#_~W#%a{b%j0+?w<2AqmJ&lHV{|Iv38v}TBYuUtvc zZ7KT6c@joOnbr5!%D*V+?x%l$OD;zEaN#eQqDW*A657Gyi1q;5IjL@0(x?t+@$dG8 zO}HuZA-^B7C$gwoj+;^2Q3cE}89k1)(M_1QB`pYl!zSU`=xUBm;>Qa+Zkyf{lKSA+ zvu1bo+4KC+2HQ#Rq4y`e8Q-}TupF`jD?`Lz{R5l!CiTA zo4U4$$<~{u-52t{?d53gvtRePYD8ss+MLkubhHc)SG#&ylIK8i5^Ndr z=a|F@?6d0AAqo4=vbDhi_n^w)ReWaFBbSH-6v)UKUp4vnn;K(Aotl&eTH$~x7+}85 z(~6ucnfi)aRl^-f+!PJ2gWJ&F5B>-IdrbpA89H+6=PvP`^NNI=wL-95liaIxC0g0Xtv!;r5UuWrq7m$2eG-H+KW0 z*KtzTpIwq!nHO)`sQUM9;}~tx17$8NIQbH zpT$S?SrY!vne}m9SP>tKaK5UF_c!igqcU*QNjg6$6Q?zYCB5kh4S{0n-1#4m%hjy? z+vqQDMz5_TvAJZ#(jcZt)iM`zW2W=hSr9xZ{i2%pEJPqK%WQq*C9G zcS_Sw7N%qGZR~u=f?uaBkV9G$w&_hbsAQ2u?<7Fcx2fi^ogADgv6f zFlE^KDzB-AGZdx=Sv*yZP~%PakJ1Sp2j`5%c7u`bf2`#cVi1M8h7=d%Vuc*MFVtb_ zn6C=%o0+V@H}WPyA`&XP=FbAd&*u~ZrSkrUGORW5+VQ=F*Q$WM(iet=(s{Mh`AA21 zG{%^oAWzWMWe8!rj*SdTV_4Mg3YDeE?ZPQQ@;scv*JJ)v*nzWMG!rIsYRpY?$1@OT zW0ah>srDEU*rB+o6BiHoNfe6~r+&OQG{{$hEM1HD)S{gDYhiV-Bx^e#sR*eC0vCw* zf(*=jAo5GxS>GM)xuA7cV|@krO&pbT<5E7%42jX7HPe?AJW);SnILH*`AU?W!ejGK zQakWuO3mBPUq*3&3(`}A;hxMj5YHRE2Hn}pt{!Y z;#X2k-Y%D1pMg|J8leIS3&M3{#EOz7q}kDv&AE&Tv0q(gSrM%SBq7FG8WQF0|n13evL82lrDIcO6EGL-Q2MYCq@V z=8rUxc&5QN(LGyAa1!=r>a*qc>wh>{5Xpw7m5O&cpkUVvb4-z4M*|yOkxQh?SZjCc zStA#hX%$n0Zq2pitN}&1E8yKY0+RTjecP#8u?)zF!7|N^qP{JhS2v@34mIoe!a+** z=_jy$%niRSx2dpLs)X(d^w4}6PTaP1^gid^Jp6Momf)6ei-MNZgiPGO{tbgY1!D_s z1im8w*|Mzx*PyoCRbLXF1LQxsZu{729r2)ryJoZL)CN$GsB%}&$~sWDj?qXk0bYTD z3n;Ah9ALw#49y3tPuTB4Js%IN_>mtUC#FpBZKe!JM}xN`s$C%}IPH$IazZvC{{l+F zvm0pbHyKmun2Q#Q?g?vEwHmkTp*CYfEUqT)GJR;`B_+_Ej2B_N$$KR0k9?Z3^Ds%z zCA=5!o0v`qFWu?Ca;7ztG^EjY)E1RK=v{?o%SpIka8L`yB&08jNCBc@v2%zkrUzf% zRMh9KS&x+n^4JnSHY3zJun1lgt1X|jsqe%Rx?M>W<>bG25M=g935`whO{-AC6Ak>C zG1iA#3Y$G4Wm)!0S*S5ct;%~%LYKciT6^q#^sxQI5ZOKF ze(CydB2I;2JQZlw0x&I5kz6Q>V5t)e3kd?W&7N{TAD1FQNNE{oMh3rK z0xDH3vz`7oTw7tAO^-EIQ1Jaa4AE0JUJxj+hmaK(lg=JYLN1GPE3E=)(OHw8GWfVG zx^a~5TQrly0v*0hj5y_{!}V=T+W6l;Dm#`|Wsa3Ba1~57Xmd z*IHQ5dMdF=swzNw1l1_qd|a=}1b+4bG=qMo*)oHzw0h;1nAD}1@xBYniMsqdZzDC9 zQ@j%AVw=+_5s$it$)_E4@jbI-g0KFD|C#pfSEpH8ps9m4JHXTiw|%e{GOgIA4*9(C z)oQuuyLFJAL3(bk`vui;DXugtduO!e_RrUE$bT|{U5<$&@|c?LpjLyxNK(9@t^-;Q za1uxhrQUug0BIxBuBi3;#xw0ea>m!teqMRIW)!*48k;C0`+r#VcBa-yg1lCoK3U;4 z^DdephX>yTN)zMdmFFL+8u>4j+Ds3{?gRT=@E?R!Vyjoa_+?LQMdb3TAu- z$}1tr{zxeBl!Q=^UAfc`L`cND-k0_W=K$}Ct1Q+S&q zmWW8~>sj)mI5;|V>X>^19+>R1O2w>;9k$aV|B+(9J0Zo9c9ln~lHyR{Qj{GE^qQ}nj?$<+LD5_TH-1%78uZw<*%@m znGtV(VQi;62A1k`QNsJr6pmjr_ATTDn<8?-Rt{d>p1U2P^S?gtY=&PiaB^hq6_Z<} zMy1VQEd?0$Azs1qtitrRw5}Pdt z0Zc&w9pII*L?m{BDyLDh`swS z4#>cSPu8};wg5a1fmv$S3SkiY@h9{QT2|#gI(YUeW%bp>8ewCGFO5Kn{e<+i+-DAr zsBR*iO)JAO+RQ!u%1korc7QBI%zpi-Ofah=?*zSEi8^%SpgRQm)X) zxv$@rQCMo*lQ-sV;qCg(MGC8XNyL^7Xx}GY^s!_Seba}5JWjzV09RE2Q&HIe_Bo*& z2PlD?@rb?W*=p8^m)}{>PRj;qgC9Q!iC9qj*OIF8MbgB0gNy+z4g;tUv^5OatwbV* z9ucD}`2a~|2ANS*&FjWAR2(fc$XtBM@IHBTrFRj4m zVens-ZqgMK;@DqlupY6PBH0$31NIGfrFb!@`9X80B2+{!{4QBIeyVqc;3Op_pcBNP z)#Y!VFojF8)-%PaV$AOAvHQw?QCE&BGIt>lxA|K0K02dqRb<|BIm8}(2F30@M&lF!3%Zjt+~GK z1uDq#-rLh#y8-tsLg0;uLz)tJk|n8vQVv`rBy@4tB~V1cjT=;n&64=`<K$O}Fmt zLK*)4fD>t>qAn;6D?Mr(r?IhX=ljsaVF*e>^aqP~6B+l8Fo{dxwTDb8BcUw%oUq2_()#(FkQ zr&?a?;>9lu6n>A&uCI_m{XP`5Lh#hXY{kN?P9reyVxM(DW5?N)b*as9+xFI_bL5nE z^A*8c}du}>+1KRY6j`}a+#mg))-W>G%6G@uNo7Yz$ z{a890jTO=5(GEKUK%irXO#-aVADP#WzHUtCR~iBa@*?oTq(k@&8p}Ca!M_0 zp7|<_tvHkSdj$$%aAyeraeKL)-|~8HGoxzJ0j z^Ssp~W5&-W56^A& zuH+x%-BNCY3oF(F)Are{pKTORpn`NwcV*Xl9hne!6B*IlF26u*zUAi&Su|oe0T%bWC^JOG1#CC+N#ud990S%F@xlGYz(od16_OMxS{2dH680PmQbUu1HR78 z(wE-Y^}vsFdZ!%vV@T)7%*5XBK9ATMuktwJX({w+JNECROmy}X9rb zLI!(Eu8PJvyNO3KykobMNMjb6@JH#pjVWBq#9xNnDiLXLw*f-@cOTX6CP%J5uMz<{ zE-*#i3-C}%7g)Yz*>#~JyClo2jP77eBOb2sY8O^l&i(k}h=Cunk`n-YUV@z@?U@^t zqhK;78Z!i(4jM)a2w*XW|BhMU=MP`}HWOzntytYoLB1_=9W-<#b2-|qAjRHRqC`~i zi&1>yNiFr83l`zw_anwUEh+5t^v1vvcaoR(D&GnkDs&|LCOv9p7Oe#BSIT%>M+b)Y znfjAVF%8pNnrVN!+*CYV5YV_vKKZu&bHGzrO%0eKSv1>(#U=_N!Ya>4}Pw@Y2?h^)wpu8IvO!g;)fbtg+{l| z7CI-knj>FMAHD}ylb0VceU%BTyxowP48J8lAQKNZX)f4mq>c}hmPpJ3L|}f0C&4jD zg(U+MY`C%DoEiMxjDOLj-gZn+K>uzS7xeU#4+pJ7sUc_3(_Z`CsP+gFxXbT~Uz8;s zPSvU&Tu;^_p~Krr(N}za%cF>kKb(D_a~oSF{B3H38lN@F>{^*qvpx#5^MlwsYaqkf zOuYalhRMHb$`$e#ggi0>yj^7j2gDEH4-l3Zk^m2Jl6=xtMOc}k4Bv~Dx2@&Mf<01K zM%2+);2t_?BhkT&sIoU)8DC(ohiR_t=ah9?k;Xn~$g&}B=J~A1q5VR2qg0X!5~qx# zsXvPhDGer`sbm+dB_$~@O0HrXaWu-H=rdIUh(XaQ32c_!+WEXF$Z40HC`T*lP?`_Q zciUptsR`TubF0s+f0CTH)3f$ov<2Eei_BYyv8sU~@qXgKLW>h4Z?j2L%X(*m)4w+F z{`51-ec!dDmPhFQnAB9Fn9i+i<8vAl1 z1qlvTSz+BZvZ&Z8@Y3;xxYO#V$fbuxTUWP`sL+(f-Tx_|v)m4(eQ<6ZrmTBfkt|i1 z;Jz}=7_*yWs^*tfD87-)$YSW&L^qt4&y6h@|FSeMPYlp%7wlyf{di~ulX47*CT2db z(gTw%0;)W`udt{}-!TSU6oEDBqq~;AaU}^abNd|aNFQ??kw`3q3#yek6K^f>%^SBO zolr$Ixf7LM@>jP#ytA{8Y(;-yKz;b*{`2!UJi^l86qhq zs%vPmgYZtn;ejY|Py=YTBlMsKG;bi;gFh0AO?m<<2mAkz9!T_g@R6VglA*b7YSr4= zDL`>ZIiGYU^6cdc=Tj46V=kp$ioKY8KK4vxR6KxwUWt;r2)#4FRwq7u7){nGHkPvD zYh@VGgb#Z#R;DcGlKGu1$_t?R4fJHA7R@)?u(F7eblF6mEKENLHAWfn;}14du=wO z|2tkY*|Vmdd{?GOnT0lBOzvX4=gAwPuE(ihg$=`gsHBB5@owM_11(~vWLE~6Esz`y z-QkP0bXQ9VsLMlU@7(UyyTO^t`QxmN8XqR%lcKOoTIDq((s=(7J@h`4tkC>@gP$ER zwaWXfiRgX!v(iZ~CFCfj)Y6v(5Gf0f)erk~YIoWWiy%bR8n0lDlidY-HIJp)Y85(;9TUo+3rGJs!?{;+Htsqwe%`N;|!1B~S)D`hSc@ zbnSmwGSHeF^{%YfB(}i*W=90K;G<6YYZL#@8$DdNP6PAu2(kFRpX3(%kLn5aBM~|f z3nL#@`@+sHaa02sS4p1D48hQWJUWBP|CCivtZ#$5A4QA4ylIM@clFyamGrBGBHegV z4xhyc!s?EI(|Xl+bgSb$-nD%HM;gRQSodweZgsUix56h8b8+jFFZ34n7$nx-TjaoF z0z70x0J-M4RH1VC2$?&%pl_s#YfvvB_dNPoemtS}i%Dz83PkFNDB zONOI-okIS&Z81uaSsG!(i~M|qRQ?R)xubHxUVh0-H8oYLXOYwQ!R`U~e-TTwK1tQF zpi0yAj|Vl_sj!L*v3)S00hdm2?6eJeRN)b_x-lkdqd|3p6Lz6J*(QSibdxfh>)9(_mfdULN^ z{W*-3qnu5!$Y+4WJr{lLb*D_&!niMAB^Yw~G;34zz-3-9r#Ia&|3s*(ybwi@2sSKqfOx zVQ)mP;vra;Tmsn14 zlgw@*=v|3ES{6l)7E!PQR`9LoNiX=6s2$s>S~};X@hbV5?ML#w$(8F=iHe-tq>5li z^f<=^wcjP#)l@~ElZm{0S4QX@-GZ#10+v0or>Kd-;@t&7=_8?ujR9e##&b#Ic^bJH zXu>5N2<8%SAV5vR!*D1a9rMj$%>sxC7$mO2?pw{#_=@5)mSS4(-wkWoTU{AAmvDBx z-QYE+R8`Le8Hl$arQ4?mYrbFNFwSd9i$32)RZRTP?=YGvn<1>-1-}^10Oe0ePf^J= z19IU(DFcRfwCy&ZslJcD=FSMJTTjiEiW*OAVzJf8N+Kh}+Ny{FaS4wKp^AWwftz++ zvy5ZWf0coyC8F!kA@cO7@(Y!k^xiHcsibt#yO1KW5DAd$ELQ!xx;S6-Gm;Tm#d`Z^l6nS=gKn9rObmV#E!yg)V?>QZ$ODe;pSdi*OcR4vgxO&hGtt#c<4I{`|tTmYGwNuG^vgMx_kjUCj2-pUI2x z8$1&?9$&9Y)1B0nG9cp;LaE9J=4(i3)DzH>{tp^@x4{g)(m?XbB#xNFEKPez*+l-^ zvlw&yzOlU6=Kb5egXHL|*(zF7btHw|N?6tBm4xFY;^fW}GLhq(w>L;KHmH2jd3q!r zO^~ORMe$<8W~4rY>Z?e+nJZNQ3VYp zf#?Mp$ad+$r4Uuw14CI2VJ}^oMlvsfQ&`ErQiiZp-mpUy^ol0!zP*+7_>&E?;!}!W z$Ib+A$s|(Xsl76GrjYW%Kr4Duk@gX=;S}e#RTyNG^-W zY;D4r5RGqs`Fr5ds%$zf@DX>3eXu_U7Wm-yQ=l@`Tqpi9ByJcfIb7ygC>cFLexVAU z$1Eh8C6<7YAP}1Z%SJOhjU7R<;%f-PGw>h$)BggdiH9G#ugqDQqF8Qt{m-5GD6Y^B zRjks(N^EfVahu)fi8$3C9kM0W@7i73CU->qcSw%6EP#}`BwmOz*Jwp5jwGtpU)%l# zDlOlBwbx73jYZb7vP;0T4GM^%S2w$cfRg|g(;gv!igS6zkk9~^x?`ntWu1gUs3Kw0 z04~2CabQ?+bwgG#&O%3(7d(XT?R1S=3TLHj3hTfRE2KbG5FgKuL_gm(?M5vRA>X`4 zu_9TGJXO5ks^V|(MoidBB5ITw-pw?TsYCFR-Wq>l)wfWnL({-S0rWkYPCPgzj;giO%rbYMqs%kHL`ENeVW3DPgZs^q zs%^_*@S-A*p)OT>LIxK%&*vHp#Xb?ek75EN^%0UKm=zW!5IXV5Suhe|V8D&X^g%}I z0H8hi6zV|ZMr$b`;oU}(Bpbz@v4mg<3=-a4W}uHzNFh9VW}uJZrn7S2zx&Qx?=ctq zl=+Hs;QTXm|H<^<2{Mdf8rvWVpcz6e1mMXCmQf*1vUyZZCxHhP?|BjvQdlUCVvVn`l6&%b{T=-9HA&vW$*B;Qt4j|b4gyrZCUyxH6n77fq(#$`L)Q)(RdU2V# zTkw)}MQNFyE`PlbGLHRzP{JhZLEYe>2V=H25Wol=|4cp~8D1{>d#(o4fFXgHYA+y| z!A+or(R1YI6y+p$Nv3h{f}EKCG>F&XY+h`aZzc8Z^+I%s{op%N(8Hu>qIn1%`R#%6 z5>E%pxfpywyiuN3lWU3$(YzR4o}-Imw_TRE{uE$@)60jORQ1dwHiCbp0oOp*rT;-% zD(rH7)F+6LODCrJ2Tg@(n&{oXOCfn&1DOgiG;s!eIlv|P@PK$=F$C!$Zn={U6R{z` zkEuYGGtY*_%zKZ{43VSfh3{4oeS58K4t7t z!9z???M`Cs&9ZkF@{P2P^dRo!GH@RD69OWIG(L(=0*E00z*7$zJu{sJ5V>YgKnwub z@T&l~K^D0bdq6ZL7#YK5_AaT%o&%vLLW4f~xXF%mdJ0n?}K!BOEp>r+{77S@cZW8i89#?>@!4JLsEJP_n8G|HbCLU#ttYcCT{*6B&D_64khGdP&`LY*kC&p-TaZiX#{!! z0^MhmF(i%_;87Vm=x%6;yO3F{rZ`L5ic=nL1#z*{(s?5lKBETlYi1W26)}_cia~)9 z>D-l%%Q3V;`VR6(Q6el)5lbIWl5lP{lbuXtwCdJRkdIRBP$11ZUaCRGRYK}W*othA zUV*G@{qCb1I=xJM(G3K0$o4<^l-KSk>7$)3Up?#<1-Uf;nn9^KWhHz~ z@mJ>|4VuC9Cp|{k`EXs&Ec^Cn>t`#kygOojN@F^_Q4giE`Kn#dPXa#=#$1rz5>Jc| zLV@#t3^Ng>ye4p(z@)$|(Eo9;wHXt<2*CJL5=b(KX$x^6YkS zOs1eVHnI|`hx?5EzBfJFTH24LMV8i_5QA+7b=R)!mUUONbgYLSinAi_l7JD41!H)~ zsj45Ls{sMma}05U0PMVh7`V+c%RlSUk;)s4i}C4X&r(f#OA8!D#UJ)xn}sk>-BakR zBVs+gillcm8X@WuH2E}vthz-W58p*&$L^AsXngIbd(qUS%=E}u8#eK|;)ZP~f3oJC zCT`AEoHaH1;ic#}SpIuASKkm88F|6JR&;69<7yg3DAvwhWo?AIB#4YfM`a~cw9APP zx+uq5azMva1(g?&{w)D8GjBeYFlPnoXRhCZw#nM{f>-;aja0{{X&7(iwbycNIWm}v zNk~bu@%qrm37eWj8|vV|t#df}NBTcuK4mUzCvWrPBXPCUI>c(F7#8zp)h-F6Xck&bA zGesl*I9&`~5P8dJ7aOwH9|5@>*gSkVeCmiA5Uw(V&K6>agk3Mcv!- zB~zrU{t#1-0`J?Kw)^7eBo4+f0w@H3N2K{EA2gB>N6Mo@34v_;KhG!p8b%U_cIGum zx)(0Ilt8L%U_->ftD&HQm?ZG>R*^-WT^-{OssYJ>QSSeYE~*D82e3Uam-1di7s@W{ z{mC)Aw$vb_1*y-dq^J*TqrmMuvI?sXVE)nkXOGup;NjM$ z7+vCWz*S^BswuJhOcf?x8bE8x*3oJ6$$8Q`D@*g^F=e#!3z?RS`6W3;g*LgC>ht~{ zmU~SVbO&AsY5?X8og*~t08lzEF(`Bl;Wzvzod@lw8_+bPB6-P?_Mh9@EjQc|Z*#YsocyImjP11| zC=#(b0L`U?dEY&jrSpg815D7T@A9g|zJ9GN>dnErtC0rL$WkuqVh|?Ql5frtKvn{L z*}+IR=06oONLjQbCD`fZL0N{^Kdlb5%!Uzz&Dx^JA1vzQkH`yK4KRy5}&Hohn^7F^Mh<(6Ebdqo&Q>J+;UaYKGL}cT+M`gywM=JRs4?4;a@&E4%#d~ZAyf241_dR_BmbS~ z<3%CI?=Gr9ARkv+vwT})>FdUf<@Qw-fX&AfGQ>`a6`I>yhA)2!prt~;G8lqMz-sVp z=Q{FL0bGYLTzCvHkAo9xKM|&j(l;M|KtcVfgkHdRZ*+FaOb;`3c-;*2Q4<~deRdJ~ z(5~GmG#e$NnZZjSebfryH_X7FU$Yh-<7!q+eIi;X4jW-8C;_8QcUAZx*2HXv!Tc3E zVo_Y^>s|XoR0aPS6PJL3`Uz}zpB|DNI$A;gWlL!D zIK&OfNn~ZM=9aHWX7$Z7DU(sKxT}xi)}hi%dr+<7zIy}@y~g+r=BAGg}74z zULX6W$#^KPj=0}=NZN0rMuDY)dR50FFxbH;ziT7V#0xsRK5PW@1F9?{hQP){-(C{~ zFQ6Jna0!Y4XK{u=Ep+H6AQHDrOGC@640sOq!Dg z!50^5MHkJ+eK3?VQ!8x?>1myHN;IaOXNYojWOD1@s^_YqZf;;h6-jm%y5c;X2bP8~ z2^1>kZ!i#~6&(B7mR@$o*uMGy5%neDP_^OT&pESTEGgTdq)oC;wo;Z+NsA)MmKbHH zQc=iq5Xth=Yj4rCp=_fN*$zsDO4-{?_2x}pHAG3pcTfNS_kD8}$#t3IEYEY_zx%iR zk6on`f_lsi7N2YdM@a4fTu@l9*OJ2RD)H%AvOxZYE6!GrK78%Hs%Xaghn&PI6O1sq zis!zMmO-5Fho#8gTXv+!DKWvTgTX;OM?2g&NP%8(J7q4aAzSjHQLfVty3euO9=NqT zh4p40{$^FT|HA@)8#Sr5a_Hz}n#b}ZldnQS^pSCVu zND_X5B>{+a5i5Y8&X;+IZ;dk^iWaAM(1IlS zUY9_GtN+^|#^apE6a{i`ZEXkEq@+LS_uqpMO9pZUJoJfS-L^c)xZG)If9B1C$6<% zap4;>gd;JsbRW*PTV-X{|KD;fG{^-l*|-_K0z%>^XH?`#WuIMv>=tA9ei@@oQ4~!@ zo!yEY{X>$(W8S&kgz+k4#m%{%YH9p*kyr}Li12%VNiMFPmDjCEzwTYL_kfZb44;MX z>(<{duJZL3Zi0^jwI#f2zYr(@du3RTl!9lJ*x#8~C8#xd;7L)tZ1K!!Ff}Det7RvO zUTcs38$u+|7pDt%ZWkdY%V_LxROEhLl>bGReABxOEAc)sD6i^`Tg&)x>df>Gue8qP z><_da<>dOXB#=b2qMLhLarCj4>3%{#aOHveza>F84(kr?SR%Y)kmKnfEH5B><_u!f zOjJ{gsJU?>SsSha0m-p0V4dUETA^elDAyL}eM@IR>P#0hx%HNg zSR;=HIJf+ms9T)rHtyr9|0W-moYZS0#Yn@}5LUZz$iSzWR7E^HG~6|;EtuTjalB(x z$Xtg3XR@X)&jqrrr)1qA6gR$*nEGQ|ZWdoF3a5u5?e2)16y68CDZSiXY!NZ`>*<3fYtf({Dhjbj2`74Z_^r2JniXSh zdels1{pDy(J~qX*rEpK!ItCVgZL7XW4(L2^-2pMiNDz)Wf)UsL3OCFRB*u+3W^If# zI6cq+3a=IRZ3r#zIvFhJf&5v{i-xU)VBRcJUC2ZwoeNceRcgx+VUAeO5MtLUy;~va z=1h!9?OU=|gI$fO?!q`TH|Z&U^&Sw~fjfZ*uWJ*eg9SaDH5ftQ8|o; zT0G?-_VMZ7EO9xMIJ;P$!grS;fGksR@I4T-39zO@oEUAFzE9%5oMLBk$yniwvHf3{ z7*Sk*v|P1vYKDUJfF{o=u&HH3on;(URH$YGhc*hl84(&4AC)6Uce^>jE(+9K2{;L$9>PlfD4!FwoEl|CB8#C1K> zOIQgAV%~XS)4)I`6_UX@WNJh~%jPWupp&$6S0M&i<95lV(dp8}yOGiR%Ss$O-j6Qh zMN|j}A!HKdLxy2}3O4RwKH_FVE7Mh>03lR(oxBEzRiUBcOcyU4(6BiM^`GgsZDu_* z+U?|K1@yjY)rQzda|i1dgDrDu+t%ob|uLc(n4y;w~_B{0OBXr<^_+R|PUm33F0|6BT z5BB_)(fi`lILwe-8i9@p4VHs54K{P)CwopOM!jF?r2ZL2Auzoa9n!f@bot3lI876_Bu6Cx)8znmzY7^qSC^_J}L8=ws)e!jRIN z-D`UPT4!?g25RNr)ZoU1eHsR%52t;;wYaV(pzLX3m`!cVG8KwD&?+3Y93l6#C95#| zk2w9!9%tBl`SeK<2D`$_LjNM*aT`YO6qG8kXPs1~#qvUD2I>NQi8*}}1L1ci}d}oL}eBS6S zKwSrcR6K!e!DJLROaa~@mkc2*$j!a6KGd@!2>RAmXf*y8QqU0&dHx4dmRG;|!0H&Tf0`!0`eb-+@ zB@1kId?qo@$<5n{rBu!rb&Qjs?~n5vsjO;g^y@4b>dQ3$j$ZKoHby*8XWu; zBisN+`F)7=085}CI2C11%?tFq*^3R(YDf`GT=%Fb%0f+gbd#7bN5%1g`kdF*9 z>ZXDP3eKqz#&QKg?1oF3JpU}@yH#q*?;TUBCf`+UB9;Xv_C=c;|NKQ)* z@bBE8p@HcKc|cPT-O7A5cYC1(Vh2rsUqc#LTbH2h2LS6sD<{;n1H%Ep*zZ@Df2*~6 zV7*UmxiFdvJ z0!Jzctvs;s^yRM~I;6x?hZnrAdzugak{_|pW*fg#iHv0~Xf#LDns=+YnjtjYK}htF z60y2;?T%sKk<>P-jKlK;+0`WQ6!}sEmnezU%&@$4#3NUcVz*A#p0_Q}uUFb}el;QkTNCzB~ ze5n3DjsQD-3yRhcayUK?YqAI+L_+|Lj!d9Df%u_~^Am(fD4PY@HGJzUS4 zmh(8oX?f%dJb&`tXK1wcmUvVQ_#2>P|DG^S7+Ap^1ngLVH%FU>bQ4a6TLqk$e7SX< z7&~SxQe?7&DnE~|mZ>HqwGatHtHY~x(-!Aie^<~U*luqSDnz`J-koS7p%Vp6?nP?t zd`&cAkwalEkl6Aw5SKnPpBVJVi3;2o=yw-_)=TKdVY=VP#JV;#&<4tW^zSx2r>$j> zR#RAkF%-YqS;OO6*e2+y?Q$jCOio?9WKrEk9jRq znv%Ic_0Vxc?B0izGU|daVq#m&mabqPTVaV_z4(Frr>N7>Zk(`2y@w0gwJ$N$^A~_v z5WyiI;KbYP&MEfN=Q(#Aw`fqL_ta6Czuh}bio8N=%heDHM5O4Ps1%6&5#)QpBJ;+p z)*=(44V3teDEKanO;sflGt0LjV#^q4USEwsq9y*Y+|+U(QL@injdf?`>gJ}WbsP7L zObuezKm@L#<~}(uNe-kO+y`E8NVf#0Y4uuy`|YDNqbN|*4h7DBnrk{Zp{#7v(lMNK zm`r})Ueg%r8E+*Vbb&IwzC^do5v=L>wDKIeKNM;B?>EnJ_s`{oNzI)rHI6TxV)3_uGT)uY{%GmasF3t?!5P9cn5zEoy#wE$AAjd^T zm;3^t0)^3=6WI0f0F*+yp)ufjnWYJ*!!4`!jNc;oKEFXO#`vNZ6xy559?KpMAk~c( z*iakhHZCWESFBKd@#U^4Yp{|QbVmd;@Xn^xYthL^97=8<^On1WUd{mtV01IGNr#%V%^BMH2DK`huf!WPL7kHmz!g4y_5 zI8*B2PR}SR`~!@WhYOeSMYtZ*@wjT-IO0U0PThH4=;U^KQfLK*HAr+7B-uDE0a56*uXSu-mksTrC2x6jeC_6^ut`o7~9#^Yg+qI2B9v?R(bT-A)u(h za|Ve!Q^J7-Z@=px!Jh@oS z6<8iL6@=XVVZ~0*mV0fIdvNKtrDD>4VhQZ9-N?3_(p9RCe!H%SOL6EuOiz4}iJJcn z--Ht>{j410p!JA@==Q%QTV?aLjl_`nZ*7v{*a+5cX<%-`JKA9OA*pvJ(F!gG6y7`> z2#$UI;($Pv38v%aAlzOY9-(~TWyAL+1$*bO^|FTa7Bv2?GLxvC5lBJDf&Qx!UAp;L z`f~ovVrvxf;woOxNbgC`S2HBJdhdoN$f=G_QQK4%doIWn5fe=0LnTZa8bM-L?uevH zoqfTZ>;?^0`x=?t^ELpzF-*Dynf<-~RTG)u8ViG5;H#BuI=R8gc@tuMPsk9b)Z0t_ z!?xIL2S9g9OM$OATVvkxhqjuS>V+v+O*H;#nG|||8n02j4`S8*zd05XrJiEtDl4vBPv%+X#(A6%qa&sx|W z3FY*12h>1$^!^G=`EMRgdy@TvLC(#`OR5*3PwTaJ6O%U-(39_2f1|=?B9u7w?u5v; zYqG=}1(^Y}QaXR?gCdC%`o&9tya(ppK{q-+gptbOmoUOD9}y}#Av=RHUh|j3NT8`~ zgxm&zybM}(CoPk3=bHTuE}@Ki!Ya31PS|dv* zn0qM}`EEn{5I2|VG?UMHiX(#q&uzql5(ypfT$E`&Bnw6V3@D5zcsLl-r-lm><}bX zZl(2ZoIk;5Dmg;nXCWD_Abos)3tbjpcm2?FZ@ndu^H#ly<)O~t{97x@kx*id8KPTB z_0g|lq7+WAv0AyV|1K^a_vXndzsL3>?8vW^EL3D5S9EJ&InLC?H~{y#_LH$yg4YLh zA*I@;rr1h19Gm?3d%7@!;aK9BkEg+j;4A57#spABU`6JDYpIaD`+rdk|NoC-NW=f; z@3d(Sx;yJv`q@Lv}S(f zR&9q~IAMa_L`_-unSmak#E8XI_FK+9G(Z#M{Bv4XjLccUeerZ3D3!PDdKfl8Q59AG z1^_-=jJ8guX#K^vyY1CvtSQ8(LWej;dA!vXKO2g4b#|m!SN}(GBDYC`ErCfl zJ+DCHV;bz>rnQLRqWM?dMcA^4+KnSq2n?%6;{cxnmLETl!oH}(wzSOqsQAg{?c~9R zEH$K2kEg>!ANX*$5p*%6xKTHhVo`>*7U)VownlaKGGlFd@MEy#m=W}*t+pE&t1#0* zHax_q5;f5VVw`L$nh3K-R4N*WUXDHTMGUROsdFI|;>0SX8z*M;zL`o`4WIH5yiCB< z)isE9_0a_hZ}+G)D=zuT@S?y*D!?`6N&m=j20urdRZ=I(JAO(HgmOt9nPt1*1)3G#6;Y0sk&nEGTYhg?^cKzZGck{yK@g>jVIBG zr-x)w5Bjxx5X~OOtd)&ctMS)Z(}P|(DZaPql;k$9N1yD+)IV{#MmN^CYLn}4-fYia zqE81IH7iD!18x!EUJ7y}5+pHD2Zq%0kt%+On9D}1yH;nshPg%F({JaWFODy|W4Uxi z=Uy-HuX~e>)EZ!#)2qRDe;T34_LoM5WR$zp)A_>r$O3#Hw*YR zzjJa@<43RRlHg5SPYP)VD$d}L)Zn5W6d4%v0N$9GVn9`I5@kAkAH;DexfggQRYAi3 zK?TC3gpUA!HOE(-uXSZRe39v{YoD-l+1C%!n5emC45#omA{&y>k<}H-HZ$z(lMa=l#AKG=qoJ&8ioQ z2_jz;u&_p9HzlMPmh@|y05QTTED(GR+yJqMW-pJdKT7AP{iUr3qog*o<1k=q2=^E^`a8e*J zMG1x0&_ikeu!)l(O-t`DXX<~in%^pMvawE)lub~B#7J|LB zpa*vXhll+Ak)6O&f~Q;s6z0FcE{F)*QAZf=6NR=W4;bD|NmM6EWmh^v;Npg_a%c(~ zu7JxZbdXMhfHaq^Jct74l+z@M?tVgHR=l0AI&UD5hYz51?YQ~X#$*>KO2AOa?nXkZ0EfO8jJQ*bx7_vmlD9^#&0!HYMRW>e4_uKPT)YJV7v z{X2VJ&qDP8DNSOFHlrg~d(aX_`UIU1Jklw>Reh%$FE1jKdI# zHnU=5#=pgYqcxfIp?wrwt^V90n=r^i#vWphdViZ&nX)B73$)LaT#ks$<)w>SfA}c-kUnC@IE^-CY zk{V65#UFR6XgsyO^}~KVO!elycipaXbgHH2S9`In-`9^z*Y2mEmID<5gr4&?Lbhj2vcZfsI#W(4_ zV;jo7K_uWvPE3YJ!kz%-4IR1-;!JU&g z&CNqbje|%TYG;}_Cv04{4E5*8l{tpaw6t^x?;0?fYZ?Oof>0VmPIRjP@xR0G2;FG!pgTkAL6_`P9+7QmRdV_@>`|8HD6`SmUg+LCasa(5!@IO0>>b({b(ccMFt*+fzI!;WxW6-)r zTtCh54M2KL4d_?$#4mlw@*C3N_9eBTDHB@sX%ol;{JTy%KNRjdOW(pFp>fv4S0OWASx**N|% zCEeDZAj+t$MQ#gN@3c@?KMl$8RCOA}G`Wp?Db{ot>6{lM`$zFWUaHq$(e2Po&yha@ zWKiIRHEKluWigY5YE}46H(3s1A_|M-3mdEU?$Pd1z(Ao0+fO5tdV$X)tc9~`-wIb9 zt~(`B?{64uUc*yPKaDs~Yhl{tAXK+r8&!kly14_`FW05ete?X^cI60p;-whHq3P|6 zoQITa2lCwLEr?!^G>YOFCcDqRH7}x(p_biB@o(jNWbE0cD@#m1D%xD9TY6Do*@ZWi zhYbm|tDuw;S`#*uI0*eAh1;YAwt5Cyw^xG>VwhJYtJ*H02Jz!p1)T0-x zG*#ET+sn75A}I;pgBayYG>at-G;bx?r*M9JN+>Jt9$r~azk>!&}zh&x`{$?%Jsy8 z{tgfcl3dH-nbLEgw3)xZU3>9yum6GiE4=X3mpR5Y7I_81OvqvY6T$Z z2u=Qgn&Sq%5jkkWqT*}WP|_^w8ltnPERk&Akrf|+%OB-)(B-kIgGK6h-NW0_U_Qs0 zJ!TujS-1HDdTT}}^i^Z(UW#&VpMYk^(znRzF3x4}%VF>>mnj+~7T8@r&~@b*d7sqJ zH{JN$P&akNF?m0Q#m$uzfD`ULvtkT2PPs-67TPZP%%&*ImPf0hN*UxGx6BxQ~c5fd9 zx%8KXjh!t$UKe@%yZU38?jSf}Jor!|uLa(5@ia|Ai~n08*ZzO`71#bhG9k19?Em#K zV$olznW<^%iFsMs8Iaa_Ha9&nF*QClF*z$MEBO*okJMvU1@jh}lUCT;`&8)#(yt*v zV|ftbF8MH0Jf1jD-obNrpC4hLObocL_k*8L{*ca*nhGz-kGsi2bE4gv|BMWAQkwnu z#~$`U)zM9K;?YsMwUZBIe?4)CLJ{mZmkP1iK4r*rh$F_eTS+7LC&BBbT(@iA=5^6sxhl_!^EAY z2fxhitBo2giGK`n;m1>7TrD^hn{;LNcl?bInL*=i5v*dR__hY;L+RF`>pAC1EZANeYet=9Yva%kvUKQQ2*}^_E{E82* zH+w&4{0#NJxMEE0=caChQkEJ;qMP9W)4EWGYi-Nu>V94Ku0!)A1NRUy!}`{_xz&CL zS~;(Glm!(A z`1uHA;p^F+T6X5vU^n)xp=uM}Kf|HRI&RRw*vuG4hDwHl^0&}8N;JU-e+@{=Tt)>) ziWE*t9VDjXM3@J4{`i~AUTlH99Ijs&+mdnwPz+!$11eTc;erlxo699D1M$9j zU5l@X4r7wnTj?+U%w7BU|5&$Z^E+B8`17;6ti@)L>3R=4SWLjuLrLRJesHtz| zUhiG!)r&rDq%kwQ*XiDdy&th*{VEYmGf1d_pe2L#G-0rh-Bm{ZL!bPKspa2YUJS^knC*mziY>khf{Cq)oM03htopIAn zSH<5Wl$)R0{cWnJwrKGP6^44cz$0UqauO8gl7Pde3tNAF?LwI)s7*PNYaHtsALwsQeZ#dZ2e!15$ z?xP&p?YP|D>Tb}gEz41QMM&Y0><^ddp_1N4R>kjV)7;LAGY;*d|$4K(p5&Uisq%_AiugwIUJUqBEAh1(6GPCWVl8 zHx^iGqeXVHt50<=z3wC%y&B=?-Vy43k_Y0VJ-=J-2Gv8m{X*3J!$b+AIQ?V zc0-Few%BzCEdOYgkUAXXTX7tP*q&7Xv?=e?i8#NDVf=%%ofblq+1pJg~{bj9F0Z`q#(blQb?>9GR_Wm=E-+^ZK zq35Lxc*TwDx8}dC@^imwpOLD{LA?4`)N{?AeHD7VPRpo zP3YIMe3(f6dATFr(H7W6W|te67$Swcxe5dBR+KyI9aYgyr|q>=C!?Owb7s3WvPSYP zzbJDP)jGZsxo7ltezF=aLdnsBp1PN`|8)IP{;J(_Y`-S~IPpS}GjVi7>Ne9ogyUva z_1HEvXCclYj_9M-dou&LgOjht?Oxt4qAEFl^UpnxFP9FF?Uf8rIQ^HfimDIA1TDA; zjpyQ)4Ja=h*C}KEf@gUa|A^F-p#E^BVAOWtuI%y!=-P9OtvmF03G$rMU;OQ}$v1cX z()rDYcUG}0HTi2MmUHw{58~vtBKGSD!#qTE0{8HJ#?NjnVWX9HC6WDD3Gt%Be#tfl zRZZZda&Bn=y)&FDg1|u!Pg61X9!og=x$(w{(ggp8y<_hYNOB3uGN}H5vu~WpCTY*J z9np{u{#}Z_%4XFPj0kGz@_C=3q9K8vIfUb!llQ!2h?#CQDN0{9P#lY{_@#)7734>w zQz;7|O>jBw-bD*!t)PZDh!Z)<B&vX_j-wgV5aH2q`UDE3e=k3|=8@tk?t90LN<_={6OT?HFze+M+K`E7X`#|>^b*rnV) zMC5EIUhEt7T#KAGtSqJEwuhQgq`#D4o8I5K(FOhXv3uX|(RkHa6)+9voD%{=!VVgNK!|myTJ!-UfMzjQc1Im$-Wb#HO^qI=8>n)>kM;{x4 zQ|F&oD9sZZ<%DPE%a*}fGq^NDGtBz0w^ZMoJ3BB(|lx^e-wp2r5>@YLF+rCAIom_IJE~ zK-_1T(A-FIw{k0x2iy;LxRF zQJ*s9fLd<#qqaGZ7XxZW6pnuXS;>dqHB0kaseK~3J2Nm|UXyWNTbnoYKuYgGrAMIA zooLLcFDEqsfDjsmdC45(w+K&<*>&T}eZL_DCGx1EfHoJXpiowTX*=N&n?| zJ;8;BGKztzri!kJt6`h=e#Wl+BD2;8D$c)I{T^QyGrA5ZU#-cEo5we}^xqY<2dES; zsktQuGTnD%P*T2%MiGTXzYe^(z*4I|Q~p?69YGWYC`F<9l!2WAcM^gsjlF{{M~`mv z_GkSR$`^`GvbS46qF#M&T*|gH_>o{`YObZha^!HXi^e{5R`s2oE|xAIUp8^*cq@0p zfWZnbTZK{{i}8PTw^M8AWxpw~*l~V7GT=`w&Per%wqwP3nDv}n1za38j*Gb@NS>kI zY8izTdoUIN27EIVH{mpKVg03&Wh`(JVV_oJ{hAc*x?{>Swviklf_7y7Ostkm|M=G!UC`<0=v%k0Z9RT2 z1xAZ@h$l{d>oIuy!dzMn^;^^}Wl`T(nPk>c+U-jVZ?@Qb?GJ=*l@tfS2k=`6WfkBh zHn83Zx2D~-MKO76(L5*J<^RbnNYvVSLX6$rmvsxG$u9>MuMbCStv$(H?YBp@Gm
X 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/1.png b/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/1.png new file mode 100644 index 0000000000000000000000000000000000000000..c5abe5d09979b49e81f5cee3dc347db499ce55e1 GIT binary patch literal 1784 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/4.png b/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/4.png new file mode 100644 index 0000000000000000000000000000000000000000..c62e11bed05a3331bb6ff55a6d51f3f79b64de5f GIT binary patch literal 1766 zcmbVNZD`zN98agtIXz^k=vpT+t#8a+o+Qn+2~E4&>#bKzSK5QMirb~hb9bSaJXwpgP-~;?S+uuDVU;@b$^P(P~}U4s!YD z$?yO2`@dzRvtxT;W93GIAOg|0a2LME{cFQ|{Quo(rXJt!u-kfFg1GY@|EeIy4n9B- zw_Y@2JzkIUw4@<3sOqQ>2D7G((FD=Zl(ki@A9`dTOd6Iph+2-+R8JT*&OZgt5*7`mEc*q(tb(zmGgp#e{(aHs_i zrd>8`xy3x;j4@f&X4oL`Ipu-6R>s)_PCD;g*BF?FCbT>kW7#s+P9YDuDfB<4%db~B zz`0eFvX50`G0n0I*J~ZbG>QpX7461`Y{+y$7Y#TXY#qd5R{Lyhsl|b+hnyHf=~AUS zOCgh-5M;^6cN&(CGVT-06ku5OpiJSa2{hnoR*13n630utuodtU00pRmbR#jeDzr}G z>sCN<&*-YBt_jvPDS;eQ#e@x0O+v=Dk`!4^qtt@Z$ia?rbbLMvMUkSG>#3FoqhXoC zoP&m;OCiXI`hXasbv?n+wR$Z_*K;bMRREzXLQo5VUeXUEZNRT=NngJ~{T+^hM@voL zv>kuo{Fac~3>Oz`s5lYba8FT68)UutPnFO92+;Cfr5S}1+mfVl)C_P zQNqip4s1^1Y^~W&3=W?0=di$o`8UPZS$w57U$!MhbL3hSNIQJANlIX4^RGH^Xe<_H42}7 z`<4*hbbe&lvAs!Rv?9KK-)17QTu4R#YKS<>%%&f5m*hu{yTRx8Z=3$}6w!2U>|J^s zZ9aeQwXXK5$w&CKcxBtXl1W$ZHfLo5;kTAAxuKoDnV@rtufAK)>bmh;BXP%whHFISC-mn$;X0~!} zOW<;F!;1L-%jkM1XV)D#vSV-LIqau*cYE*fgYUpV_mq6%p=&eEjfY=sc=MM9GQRK3 z-`nGt7Z#RYXuUA;$J<|CxH>v}du@DeRzFo4Ta){r&wW(me~F^49pU$%iof&^gRn~W literal 0 HcmV?d00001 diff --git a/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/dead.png b/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/dead.png new file mode 100644 index 0000000000000000000000000000000000000000..763d8f11443488322a7b13fb2dcf47934dc7d0fc GIT binary patch literal 1461 zcmbVMO^DS-9M5j8*wsZ#tBBZkh!;hZOp?v+%dkG zSfpZ~Em5@{B?2u;lLy)fCd-tAC0Y++M}BtYnhXNpk&js(^pa`X2+Ez59_`FkNoSeZ zzI+3i^MuV)@0Cy@MTAy$_0W&Zyrpulmc7T6#}6SCd6uN z+$h=hK43t@)Zn;gSc(A=)RAR@{wE7@sb512?rdL}*g0~8^8{&HtJP9lrpnT~rrWly zK|?bPMIe-HCFZ!T#M!O^gG)1#1_=*X401-i#G2fZg{nOpqNJdWv%a5%$Fw$1G+l+c zO(|jXf&h|jd>=pdVx(EjI*r4-a%blzac>Q*7FJ(Yw8k3g@}yLoDydA z9kM1mtF9zeTc8yN-<|?m9cOTsriA*z_3&u>^>I6K5J!rUVA`Y z%&8-bs96d$72T@pC1jY$wDv+1LD++O%nxcSYeGv1nr}cw&iI()4}yJyYAlVgFgS>C zooY#3mqFo1G|fVm3c*4PpQYn@}*M zL@C+)oYnD$2?_EZkd1MFg{r~y?NE(RJ!r@2r;NtrLB1?nkk}MWjK-pKrJ_YWx;y&4Xm3%)ovJSW^5mXAat3bt^v*X=z{~K& z<em-d+snp!1;xOH-9=jzJ`tHXykpOc0+fHTr?`;+}QZYTSG|7ZJOd1I~2 M%(;Jm`@_%w0SdX#2><{9 literal 0 HcmV?d00001 diff --git a/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/meta.json b/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/meta.json new file mode 100644 index 0000000000..cf4cd42bc3 --- /dev/null +++ b/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/meta.json @@ -0,0 +1,99 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Modified from https://github.com/tgstation/tgstation/commit/53d1f1477d22a11a99c6c6924977cd431075761b", + "states": [ + { + "name": "dead", + "delays": [ + [ + 1 + ] + ] + }, + { + "name": "0", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "1", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "2", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "3", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "4", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} \ No newline at end of file From 28c9bfffad428b70ffec4b2b0703d18002d74699 Mon Sep 17 00:00:00 2001 From: BIGZi0348 Date: Sat, 15 Mar 2025 19:36:22 +0300 Subject: [PATCH 12/22] =?UTF-8?q?=D0=BB=D0=BE=D0=BA=D0=B0=D0=BB=D0=B8?= =?UTF-8?q?=D0=B7=D0=B0=D1=86=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Resources/Locale/ru-RU/_white/recruitment.ftl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Locale/ru-RU/_white/recruitment.ftl b/Resources/Locale/ru-RU/_white/recruitment.ftl index 5d9faeb516..5173dfa99f 100644 --- a/Resources/Locale/ru-RU/_white/recruitment.ftl +++ b/Resources/Locale/ru-RU/_white/recruitment.ftl @@ -1,5 +1,5 @@ accept-ert-window-title = Набор в отряды ОБР! -accept-ert-window-prompt-text-part = Готовы ли вы стать частью отряда ОБР? Если вы не уверенны то лучше скажите НЕТ! +accept-ert-window-prompt-text-part = Готовы ли вы стать частью отряда ОБР? Если вы не уверены то лучше скажите НЕТ! ert-accept-message = Внимание! Мы получили запрос на Отряд Быстрого Реагирования. Запрос одобрен! Ожидайте. ert-deny-message = Внимание! Мы получили запрос на Отряд Быстрого Реагирования. Запрос отклонён! Мы не можем отправить его сейчас. From 2590bb6075fda96d33845d3d61272efe8635eb6a Mon Sep 17 00:00:00 2001 From: BIGZi0348 Date: Sat, 15 Mar 2025 20:12:31 +0300 Subject: [PATCH 13/22] =?UTF-8?q?=D0=9E=D1=82=D0=BA=D0=B0=D0=B7=20=D0=BE?= =?UTF-8?q?=D1=82=20=D0=BF=D1=80=D0=BE=D0=BC=D1=8B=D0=B2=D0=BA=D0=B8=20?= =?UTF-8?q?=D0=BC=D0=BE=D0=B7=D0=B3=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Resources/Prototypes/GameRules/roundstart.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/GameRules/roundstart.yml b/Resources/Prototypes/GameRules/roundstart.yml index ed9b763de8..86bef49cb9 100644 --- a/Resources/Prototypes/GameRules/roundstart.yml +++ b/Resources/Prototypes/GameRules/roundstart.yml @@ -316,6 +316,7 @@ color: Aqua startingGear: WizardGear components: + - type: Unslavable - type: Wizard - type: WizardAppearance - type: GlobalAntagonist From bb4a8546b270ea308563b78635fe51fa688525e0 Mon Sep 17 00:00:00 2001 From: BIGZi0348 Date: Sat, 15 Mar 2025 20:25:50 +0300 Subject: [PATCH 14/22] =?UTF-8?q?=D0=9C=D0=B0=D0=B9=D0=BD=D0=B4=D1=81?= =?UTF-8?q?=D0=BB=D0=B5=D0=B9=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Prototypes/Catalog/thief_toolbox_sets.yml | 26 +++++++++---------- .../Entities/Objects/Tools/toolbox.yml | 2 +- .../Prototypes/_White/Catalog/uplink.yml | 2 +- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Resources/Prototypes/Catalog/thief_toolbox_sets.yml b/Resources/Prototypes/Catalog/thief_toolbox_sets.yml index 6724a895b1..3a1dc4ec6b 100644 --- a/Resources/Prototypes/Catalog/thief_toolbox_sets.yml +++ b/Resources/Prototypes/Catalog/thief_toolbox_sets.yml @@ -111,19 +111,19 @@ - SmokeGrenade - SmokeGrenade -- type: thiefBackpackSet - id: SlaverySet - name: thief-backpack-category-slavery-name - description: thief-backpack-category-slavery-description - sprite: - sprite: /Textures/Clothing/Head/Hats/syndiecap_maa.rsi - state: icon - content: - - MindSlaveImplanter - - MindSlaveImplanter - - MindSlaveImplanter - - ClothingOuterCoatSyndieCap - - ClothingHeadHatSyndieMAA +# - type: thiefBackpackSet # Буквальная легализация армии метадружков +# id: SlaverySet +# name: thief-backpack-category-slavery-name +# description: thief-backpack-category-slavery-description +# sprite: +# sprite: /Textures/Clothing/Head/Hats/syndiecap_maa.rsi +# state: icon +# content: +# - MindSlaveImplanter +# - MindSlaveImplanter +# - MindSlaveImplanter +# - ClothingOuterCoatSyndieCap +# - ClothingHeadHatSyndieMAA - type: thiefBackpackSet id: HiTechSet diff --git a/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml b/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml index 8a5620371f..e37f8abcfa 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml @@ -174,7 +174,7 @@ - SleeperSet - CommunicatorSet - SmugglerSet - - SlaverySet # WD + # - SlaverySet # WD - HiTechSet # WD - type: ActivatableUI key: enum.ThiefBackpackUIKey.Key diff --git a/Resources/Prototypes/_White/Catalog/uplink.yml b/Resources/Prototypes/_White/Catalog/uplink.yml index 392a7eb7de..0cba8d4b9e 100644 --- a/Resources/Prototypes/_White/Catalog/uplink.yml +++ b/Resources/Prototypes/_White/Catalog/uplink.yml @@ -278,7 +278,7 @@ description: uplink-mind-slave-desc productEntity: MindSlaveImplanter cost: - Telecrystal: 6 + Telecrystal: 10 categories: - UplinkImplants From e27dbecad692bd9714b3d1f5ee78a6f7d9056994 Mon Sep 17 00:00:00 2001 From: BIGZi0348 Date: Sat, 15 Mar 2025 20:26:25 +0300 Subject: [PATCH 15/22] =?UTF-8?q?=D0=B0=D0=B3=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Resources/Prototypes/GameRules/roundstart.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/GameRules/roundstart.yml b/Resources/Prototypes/GameRules/roundstart.yml index 86bef49cb9..772a90e91e 100644 --- a/Resources/Prototypes/GameRules/roundstart.yml +++ b/Resources/Prototypes/GameRules/roundstart.yml @@ -316,7 +316,7 @@ color: Aqua startingGear: WizardGear components: - - type: Unslavable + - type: Unslavable # WD - type: Wizard - type: WizardAppearance - type: GlobalAntagonist From c32cc5dc9f0e90c9d0a3539f30c254cf79690d82 Mon Sep 17 00:00:00 2001 From: NR <66198468+withoutcode333@users.noreply.github.com> Date: Sat, 15 Mar 2025 23:16:16 +0500 Subject: [PATCH 16/22] fix --- .../Tools/Decoys/agent_decoy.rsi/aballoon.png | Bin 14804 -> 3249 bytes .../Decoys/commander_decoy.rsi/cballoon.png | Bin 14843 -> 4330 bytes .../Tools/Decoys/elite_decoy.rsi/eballoon.png | Bin 11070 -> 3832 bytes .../Decoys/juggernaut_decoy.rsi/jballoon.png | Bin 13587 -> 2673 bytes .../Decoys/operative_decoy.rsi/oballoon.png | Bin 14957 -> 4046 bytes 5 files changed, 0 insertions(+), 0 deletions(-) diff --git a/Resources/Textures/Objects/Tools/Decoys/agent_decoy.rsi/aballoon.png b/Resources/Textures/Objects/Tools/Decoys/agent_decoy.rsi/aballoon.png index dcb06d09ca639a048d9db768eb33e1fd09b29cbf..defddc358525617653e1e6747ccba3386bb84941 100644 GIT binary patch delta 3246 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 DUaNal literal 14843 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 diff --git a/Resources/Textures/Objects/Tools/Decoys/elite_decoy.rsi/eballoon.png b/Resources/Textures/Objects/Tools/Decoys/elite_decoy.rsi/eballoon.png index 1f5b6d4c25911c3cebf78d4027c03e3f246a6194..6878be6296a418ae35fbcaf7025a40cc5f91a747 100644 GIT binary patch literal 3832 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 F{{c6UIaB}u diff --git a/Resources/Textures/Objects/Tools/Decoys/juggernaut_decoy.rsi/jballoon.png b/Resources/Textures/Objects/Tools/Decoys/juggernaut_decoy.rsi/jballoon.png index 7edcc12a1fdfe6527671d0397d67bab208b621a6..e70fd1971fc2cf218ad74454039cadeb53c17348 100644 GIT binary patch delta 2665 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 X?O?B##m{`P00000NkvXXu0mjfxqCZU literal 13587 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 R+64-9i2fa@4pz%4`hNnn%>V!Z literal 14957 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 Date: Sat, 15 Mar 2025 18:21:18 +0000 Subject: [PATCH 17/22] Automatic changelog update --- Resources/Changelog/ChangelogWhite.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/Resources/Changelog/ChangelogWhite.yml b/Resources/Changelog/ChangelogWhite.yml index dbd018dafe..f0f0c8e234 100644 --- a/Resources/Changelog/ChangelogWhite.yml +++ b/Resources/Changelog/ChangelogWhite.yml @@ -1,13 +1,4 @@ Entries: -- author: martell-gh - changes: - - message: "\u0422\u0435\u043F\u0435\u0440\u044C \u043A\u0430\u0440\u0442\u0438\u043D\ - \u043A\u0430 \u0432 \u043B\u043E\u0431\u0431\u0438 \u043C\u0435\u043D\u044F\u0435\ - \u0442\u0441\u044F" - type: Add - id: 168 - time: '2024-02-29T15:52:07.0000000+00:00' - url: https://api.github.com/repos/frosty-dev/ss14-core/pulls/142 - author: rhailrake changes: - message: Old music. @@ -9016,3 +9007,13 @@ id: 667 time: '2025-03-10T18:00:35.0000000+00:00' url: https://api.github.com/repos/frosty-dev/ss14-core/pulls/858 +- author: CaypenNow + changes: + - message: "\u0422\u0435\u043F\u0435\u0440\u044C \u043E\u0431\u043C\u0430\u043D\u043A\ + \u0438 \u0441\u0438\u043D\u0434\u0438\u043A\u0430\u0442\u0430 \u0438\u043C\u0435\ + \u044E\u0442 \u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u044B\u0439 \u0441\ + \u043F\u0440\u0430\u0439\u0442." + type: Fix + id: 668 + time: '2025-03-15T18:20:14.0000000+00:00' + url: https://api.github.com/repos/frosty-dev/ss14-core/pulls/919 From 77f3f0ee70ba567ca3103b403647cf5b574676c3 Mon Sep 17 00:00:00 2001 From: BIGZi0348 Date: Sat, 15 Mar 2025 21:31:23 +0300 Subject: [PATCH 18/22] =?UTF-8?q?=D0=BE=D0=BF=D0=B5=D1=80=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Resources/Prototypes/GameRules/roundstart.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Resources/Prototypes/GameRules/roundstart.yml b/Resources/Prototypes/GameRules/roundstart.yml index 772a90e91e..cbd62f52be 100644 --- a/Resources/Prototypes/GameRules/roundstart.yml +++ b/Resources/Prototypes/GameRules/roundstart.yml @@ -81,7 +81,7 @@ selectionTime: PrePlayerSpawn definitions: - prefRoles: [ NukeopsCommander ] - fallbackRoles: [ Nukeops, NukeopsMedic ] + # fallbackRoles: [ Nukeops, NukeopsMedic ] # WD max: 1 playerRatio: 10 startingGear: SyndicateCommanderGearFull @@ -100,7 +100,7 @@ - type: NukeopsRole prototype: NukeopsCommander - prefRoles: [ NukeopsMedic ] - fallbackRoles: [ Nukeops, NukeopsCommander ] + # fallbackRoles: [ Nukeops, NukeopsCommander ] # WD max: 1 playerRatio: 10 startingGear: SyndicateOperativeMedicFull @@ -118,7 +118,7 @@ - type: NukeopsRole prototype: NukeopsMedic - prefRoles: [ Nukeops ] - fallbackRoles: [ NukeopsCommander, NukeopsMedic ] + # fallbackRoles: [ NukeopsCommander, NukeopsMedic ] # WD min: 0 max: 3 playerRatio: 10 From c6eda2a60ae7f1b3e3905068321207aeeaded71f Mon Sep 17 00:00:00 2001 From: BIGZi0348 Date: Sun, 16 Mar 2025 18:00:19 +0300 Subject: [PATCH 19/22] =?UTF-8?q?=D0=9C=D0=BD=D0=BE=D0=B3=D0=BE=20=D1=87?= =?UTF-8?q?=D0=B5=D0=B3=D0=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../_White/AddImplant/AddImplantComponent.cs | 14 + .../_White/AddImplant/AddImplantSystem.cs | 21 + .../FillIDCard/ContractorIDCardComponent.cs | 11 + .../FillIDCard/ContractorIDCardSystem.cs | 24 + .../_White/FillIDCard/FillIDCardComponent.cs | 11 + .../_White/FillIDCard/FillIDCardSystem.cs | 72 +++ Resources/Locale/ru-RU/_white/mercenary.ftl | 30 +- .../entities/clothing/ears/headsets.ftl | 4 +- .../_white/recipes/structures/airlocks.ftl | 68 ++- .../objects/misc/identification_cards.ftl | 12 - .../objects/misc/identification_cards.ftl | 24 + .../Maps/Shuttles/ShuttleEvent/honki.yml | 388 ++++++++++++--- .../ShuttleEvent/traveling_china_cuisine.yml | 454 ++++++++++++------ .../Entities/Mobs/Player/admin_ghost.yml | 1 + .../Entities/Mobs/Player/humanoid.yml | 44 +- .../Entities/Objects/Devices/door_remote.yml | 1 + .../Roles/Jobs/Fun/misc_startinggear.yml | 6 +- .../Prototypes/Roles/play_time_trackers.yml | 25 - Resources/Prototypes/_White/Access/misc.yml | 18 + .../_White/Entities/Objects/Misc/airlocks.yml | 235 +++++++++ .../Objects/Misc/identification_cards.yml | 20 + .../Jobs/{another_sector.yml => misc.yml} | 23 +- .../_White/Roles/play_time_trackers.yml | 32 ++ Resources/Prototypes/_White/mercenary.yml | 118 ++++- 24 files changed, 1385 insertions(+), 271 deletions(-) create mode 100644 Content.Server/_White/AddImplant/AddImplantComponent.cs create mode 100644 Content.Server/_White/AddImplant/AddImplantSystem.cs create mode 100644 Content.Server/_White/FillIDCard/ContractorIDCardComponent.cs create mode 100644 Content.Server/_White/FillIDCard/ContractorIDCardSystem.cs create mode 100644 Content.Server/_White/FillIDCard/FillIDCardComponent.cs create mode 100644 Content.Server/_White/FillIDCard/FillIDCardSystem.cs create mode 100644 Resources/Prototypes/_White/Access/misc.yml create mode 100644 Resources/Prototypes/_White/Entities/Objects/Misc/airlocks.yml rename Resources/Prototypes/_White/Roles/Jobs/{another_sector.yml => misc.yml} (65%) create mode 100644 Resources/Prototypes/_White/Roles/play_time_trackers.yml diff --git a/Content.Server/_White/AddImplant/AddImplantComponent.cs b/Content.Server/_White/AddImplant/AddImplantComponent.cs new file mode 100644 index 0000000000..b5ff2d3021 --- /dev/null +++ b/Content.Server/_White/AddImplant/AddImplantComponent.cs @@ -0,0 +1,14 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set; + +namespace Content.Server._White.AddImplant; + +///

+/// WD. +/// +[RegisterComponent] +public sealed partial class AddImplantComponent : Component +{ + [DataField("implants", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))] + public HashSet Implants { get; private set; } = new(); +} diff --git a/Content.Server/_White/AddImplant/AddImplantSystem.cs b/Content.Server/_White/AddImplant/AddImplantSystem.cs new file mode 100644 index 0000000000..34ee6eae10 --- /dev/null +++ b/Content.Server/_White/AddImplant/AddImplantSystem.cs @@ -0,0 +1,21 @@ + +using Content.Shared.Examine; +using Content.Shared.Implants; + +namespace Content.Server._White.AddImplant; + +public sealed class AddImplantSystem : EntitySystem +{ + [Dependency] private readonly SharedSubdermalImplantSystem _implantSystem = default!; + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + } + public void OnMapInit(Entity ent, ref MapInitEvent args) + { + _implantSystem.AddImplants(ent.Owner, ent.Comp.Implants); + RemComp(ent.Owner); + } +} diff --git a/Content.Server/_White/FillIDCard/ContractorIDCardComponent.cs b/Content.Server/_White/FillIDCard/ContractorIDCardComponent.cs new file mode 100644 index 0000000000..4ecf2b1bb9 --- /dev/null +++ b/Content.Server/_White/FillIDCard/ContractorIDCardComponent.cs @@ -0,0 +1,11 @@ +namespace Content.Server._White.ContractorIDCard; + +/// +/// WD. +/// +[RegisterComponent] +public sealed partial class ContractorIDCardComponent : Component +{ + [DataField] + public string Details = string.Empty; +} diff --git a/Content.Server/_White/FillIDCard/ContractorIDCardSystem.cs b/Content.Server/_White/FillIDCard/ContractorIDCardSystem.cs new file mode 100644 index 0000000000..0306333d04 --- /dev/null +++ b/Content.Server/_White/FillIDCard/ContractorIDCardSystem.cs @@ -0,0 +1,24 @@ + +using Content.Shared.Examine; + +namespace Content.Server._White.ContractorIDCard; + +public sealed class ContractorIDCardSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnExamined); + } + public void OnExamined(Entity ent, ref ExaminedEvent args) + { + if (!args.IsInDetailsRange) + return; + + if (ent.Comp.Details == string.Empty) + return; + + args.PushMarkup(ent.Comp.Details); + } +} diff --git a/Content.Server/_White/FillIDCard/FillIDCardComponent.cs b/Content.Server/_White/FillIDCard/FillIDCardComponent.cs new file mode 100644 index 0000000000..21844b80e1 --- /dev/null +++ b/Content.Server/_White/FillIDCard/FillIDCardComponent.cs @@ -0,0 +1,11 @@ +namespace Content.Server._White.FillIDCard; + +/// +/// WD. +/// +[RegisterComponent] +public sealed partial class FillIDCardComponent : Component +{ + [DataField] + public bool IsContractor = false; +} diff --git a/Content.Server/_White/FillIDCard/FillIDCardSystem.cs b/Content.Server/_White/FillIDCard/FillIDCardSystem.cs new file mode 100644 index 0000000000..b9b289f0fa --- /dev/null +++ b/Content.Server/_White/FillIDCard/FillIDCardSystem.cs @@ -0,0 +1,72 @@ + +using Content.Server._White.ContractorIDCard; +using Content.Server.Access.Systems; +using Content.Server.Forensics; +using Content.Server.PDA; +using Content.Shared.Access.Components; +using Content.Shared.Inventory; +using Content.Shared.PDA; +using Robust.Server.Containers; +using Robust.Shared.Timing; + +namespace Content.Server._White.FillIDCard; + +public sealed class FillIDCardSystem : EntitySystem +{ + [Dependency] private readonly InventorySystem _inventorySystem = default!; + [Dependency] private readonly PdaSystem _pdaSystem = default!; + [Dependency] private readonly ContainerSystem _containerSystem = default!; + [Dependency] private readonly IdCardSystem _idCardSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + } + + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + Timer.Spawn(15000, () => ItDoBeDoing(ent)); // 15 seconds and yes this is bad // TODO Make it less dogshit + } + + private void ItDoBeDoing(Entity ent) + { + if (!TryComp(ent.Owner, out var targetMeta)) + { + RemComp(ent.Owner); + return; + } + + if (!_inventorySystem.TryGetSlotEntity(ent.Owner, "id", out var idcardSlot)) + { + RemComp(ent.Owner); + return; + } + + if (TryComp(idcardSlot, out var pda)) + { + _pdaSystem.SetOwnerName((EntityUid) idcardSlot, pda, targetMeta.EntityName); + + _containerSystem.TryGetContainer((EntityUid) idcardSlot, "PDA-id", out var container); + + if (container != null) + { + var idCardInPda = container.ContainedEntities[0]; + _idCardSystem.TryChangeFullName(idCardInPda, targetMeta.EntityName); + } + } + else if (HasComp(idcardSlot)) + { + _idCardSystem.TryChangeFullName((EntityUid) idcardSlot, targetMeta.EntityName); + if (ent.Comp.IsContractor) + { + EnsureComp((EntityUid) idcardSlot, out var comp); + if (TryComp(ent.Owner, out var fingerprintComponent) && TryComp(ent.Owner, out var dnaComponent)) + comp.Details = $"На карте имеется следующая информация:\nВладелец карты: {targetMeta.EntityName}\nОтпечаток пальцев владельца: {fingerprintComponent.Fingerprint}\nДНК владельца: {dnaComponent.DNA}"; + } + } + + RemComp(ent.Owner); + } +} diff --git a/Resources/Locale/ru-RU/_white/mercenary.ftl b/Resources/Locale/ru-RU/_white/mercenary.ftl index 6936d94a8f..4da592d747 100644 --- a/Resources/Locale/ru-RU/_white/mercenary.ftl +++ b/Resources/Locale/ru-RU/_white/mercenary.ftl @@ -35,5 +35,31 @@ ent-DoorElectronicsMercenary = { ent-DoorElectronics } .desc = { ent-DoorElectronics.desc } ent-AirlockMercenaryLocked = { ent-Airlock } - .suffix = Наёмник, Закрыт - .desc = { ent-Airlock.desc } В углу имеется небольшой символ Администрации сектора. + .desc = { ent-Airlock.desc } + +ent-AirlockMercenaryGlassLocked = { ent-AirlockGlass } + .desc = { ent-AirlockGlass.desc } + +ent-AirlockMercenaryShuttleLocked = { ent-AirlockShuttle } + .desc = { ent-AirlockShuttle.desc } + +ent-AirlockMercenaryGlassShuttleLocked = { ent-AirlockGlassShuttle } + .desc = { ent-AirlockGlassShuttle.desc } + +ent-WindoorMercenaryLocked = { ent-Windoor } + .desc = { ent-Windoor.desc } + +ent-WindoorSecureMercenaryLocked = { ent-WindoorSecure } + .desc = { ent-WindoorSecure.desc } + +ent-PlasmaWindoorMercenaryLocked = { ent-WindoorPlasma } + .desc = { ent-WindoorPlasma.desc } + +ent-UraniumWindoorMercenaryLocked = { ent-WindoorUranium } + .desc = { ent-WindoorUranium.desc } + +ent-PlasmaWindoorSecureMercenaryLocked = { ent-WindoorSecurePlasma } + .desc = { ent-WindoorSecurePlasma.desc } + +ent-UraniumWindoorSecureMercenaryLocked = { ent-WindoorSecureUranium } + .desc = { ent-WindoorSecureUranium.desc } diff --git a/Resources/Locale/ru-RU/_white/prototypes/entities/clothing/ears/headsets.ftl b/Resources/Locale/ru-RU/_white/prototypes/entities/clothing/ears/headsets.ftl index a3f245f5e0..63e7ef6d9e 100644 --- a/Resources/Locale/ru-RU/_white/prototypes/entities/clothing/ears/headsets.ftl +++ b/Resources/Locale/ru-RU/_white/prototypes/entities/clothing/ears/headsets.ftl @@ -6,5 +6,5 @@ ent-ClothingHeadsetRDAnotherSector = { ent-ClothingHeadsetRD } .desc = { ent-ClothingHeadsetRD.desc } ent-ClothingHeadsetCargoAnotherSector = { ent-ClothingHeadsetCargo } .desc = { ent-ClothingHeadsetCargo.desc } -ent-ClothingHeadsetServiceContractor = { ent-ClothingHeadsetService } - .desc = { ent-ClothingHeadsetService.desc } +ent-ClothingHeadsetContractor = гарнитура контрактника + .desc = { ent-ClothingHeadsetGrey.desc } diff --git a/Resources/Locale/ru-RU/_white/recipes/structures/airlocks.ftl b/Resources/Locale/ru-RU/_white/recipes/structures/airlocks.ftl index 3df37da0ea..c734a5475f 100644 --- a/Resources/Locale/ru-RU/_white/recipes/structures/airlocks.ftl +++ b/Resources/Locale/ru-RU/_white/recipes/structures/airlocks.ftl @@ -2,4 +2,70 @@ ent-airlockExternal = { ent-AirlockExternal } .desc = { ent-AirlockExternal.desc } ent-airlockExternalGlass = стеклянный внешний шлюз - .desc = { ent-airlockExternal.desc} \ No newline at end of file + .desc = { ent-airlockExternal.desc } + +ent-DoorElectronicsClownContractor = { ent-DoorElectronics } + .desc = { ent-DoorElectronics.desc } + +ent-AirlockClownContractorLocked = { ent-Airlock } + .desc = { ent-Airlock.desc } + +ent-AirlockClownContractorGlassLocked = { ent-AirlockGlass } + .desc = { ent-AirlockGlass.desc } + +ent-AirlockClownContractorShuttleLocked = { ent-AirlockShuttle } + .desc = { ent-AirlockShuttle.desc } + +ent-AirlockClownContractorGlassShuttleLocked = { ent-AirlockGlassShuttle } + .desc = { ent-AirlockGlassShuttle.desc } + +ent-WindoorClownContractorLocked = { ent-Windoor } + .desc = { ent-Windoor.desc } + +ent-WindoorSecureClownContractorLocked = { ent-WindoorSecure } + .desc = { ent-WindoorSecure.desc } + +ent-PlasmaWindoorClownContractorLocked = { ent-WindoorPlasma } + .desc = { ent-WindoorPlasma.desc } + +ent-UraniumWindoorClownContractorLocked = { ent-WindoorUranium } + .desc = { ent-WindoorUranium.desc } + +ent-PlasmaWindoorSecureClownContractorLocked = { ent-WindoorSecurePlasma } + .desc = { ent-WindoorSecurePlasma.desc } + +ent-UraniumWindoorSecureClownContractorLocked = { ent-WindoorSecureUranium } + .desc = { ent-WindoorSecureUranium.desc } + +ent-DoorElectronicsChefContractor = { ent-DoorElectronics } + .desc = { ent-DoorElectronics.desc } + +ent-AirlockChefContractorLocked = { ent-Airlock } + .desc = { ent-Airlock.desc } + +ent-AirlockChefContractorGlassLocked = { ent-AirlockGlass } + .desc = { ent-AirlockGlass.desc } + +ent-AirlockChefContractorShuttleLocked = { ent-AirlockShuttle } + .desc = { ent-AirlockShuttle.desc } + +ent-AirlockChefContractorGlassShuttleLocked = { ent-AirlockGlassShuttle } + .desc = { ent-AirlockGlassShuttle.desc } + +ent-WindoorChefContractorLocked = { ent-Windoor } + .desc = { ent-Windoor.desc } + +ent-WindoorSecureChefContractorLocked = { ent-WindoorSecure } + .desc = { ent-WindoorSecure.desc } + +ent-PlasmaWindoorChefContractorLocked = { ent-WindoorPlasma } + .desc = { ent-WindoorPlasma.desc } + +ent-UraniumWindoorChefContractorLocked = { ent-WindoorUranium } + .desc = { ent-WindoorUranium.desc } + +ent-PlasmaWindoorSecureChefContractorLocked = { ent-WindoorSecurePlasma } + .desc = { ent-WindoorSecurePlasma.desc } + +ent-UraniumWindoorSecureChefContractorLocked = { ent-WindoorSecureUranium } + .desc = { ent-WindoorSecureUranium.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl index 0aca8b73a1..8aa9bab67b 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl @@ -94,15 +94,3 @@ ent-CluwneIDCard = ID карта клувна .suffix = Неснимаемое ent-ResearchAssistantIDCard = ID карта научного ассистента .desc = { ent-IDCardStandard.desc } -ent-MaidIDCard = ID карта прислуги - .desc = { ent-IDCardStandard.desc } -ent-BomzhIDCard = грязная ID карта - .desc = Старая и грязная карта дожившая до нашего времени. -ent-CargoIDCardAnotherSector = { ent-CargoIDCard } - .desc = { ent-CargoIDCard.desc } -ent-CMOIDCardAnotherSector = { ent-CMOIDCard } - .desc = { ent-CMOIDCard.desc } -ent-CaptainIDCardAnotherSector = { ent-CaptainIDCard } - .desc = { ent-CaptainIDCard.desc } -ent-RDIDCardAnotherSector = { ent-RDIDCard } - .desc = { ent-RDIDCard.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/white/entities/objects/misc/identification_cards.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/white/entities/objects/misc/identification_cards.ftl index da1b875c47..4d12474f05 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/white/entities/objects/misc/identification_cards.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/white/entities/objects/misc/identification_cards.ftl @@ -3,3 +3,27 @@ ent-IAAIDCard = ID карта агента внутренних дел ent-MercenaryIDCard = ID карта резидента .desc = Карта резидента выдаётся Администрацией сектора. Позволяет записывать данные для временного оформления и имеет доступ к личному судну владельца. + +ent-ClownIDCardContractor = { ent-MercenaryIDCard } + .desc = { ent-MercenaryIDCard.desc } + +ent-ChefIDCardContractor = { ent-MercenaryIDCard } + .desc = { ent-MercenaryIDCard.desc } + +ent-MaidIDCard = ID карта прислуги + .desc = { ent-IDCardStandard.desc } + +ent-BomzhIDCard = грязная ID карта + .desc = Старая и грязная карта дожившая до нашего времени. + +ent-CargoIDCardAnotherSector = { ent-CargoIDCard } + .desc = { ent-CargoIDCard.desc } + +ent-CMOIDCardAnotherSector = { ent-CMOIDCard } + .desc = { ent-CMOIDCard.desc } + +ent-CaptainIDCardAnotherSector = { ent-CaptainIDCard } + .desc = { ent-CaptainIDCard.desc } + +ent-RDIDCardAnotherSector = { ent-RDIDCard } + .desc = { ent-RDIDCard.desc } diff --git a/Resources/Maps/Shuttles/ShuttleEvent/honki.yml b/Resources/Maps/Shuttles/ShuttleEvent/honki.yml index 0fca6a8ba9..ade69b06ca 100644 --- a/Resources/Maps/Shuttles/ShuttleEvent/honki.yml +++ b/Resources/Maps/Shuttles/ShuttleEvent/honki.yml @@ -16,7 +16,7 @@ entities: name: Honkomother - type: Transform pos: 1.212189,-1.7551664 - parent: invalid + parent: 313 - type: MapGrid chunks: 0,0: @@ -168,13 +168,16 @@ entities: 1,0: 1: 56 1,-1: - 0: 30576 + 2: 4112 + 0: 10016 + 3: 16448 0,-2: 0: 48051 -1,-2: 0: 48056 -1,-1: - 0: 56784 + 3: 16 + 0: 56768 0,-3: 1: 32768 1,-3: @@ -185,7 +188,8 @@ entities: -2,0: 1: 130 -2,-1: - 0: 52928 + 0: 52800 + 3: 128 -2,-2: 1: 8708 0: 34944 @@ -209,6 +213,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 immutable: True moles: @@ -224,9 +236,76 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance + - uid: 313 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap - proto: AirCanister entities: - uid: 2 @@ -237,6 +316,8 @@ entities: parent: 1 - type: Physics bodyType: Static + - type: PolymorphableCanister + currentPrototype: AirCanister - uid: 3 components: - type: Transform @@ -245,7 +326,9 @@ entities: parent: 1 - type: Physics bodyType: Static -- proto: AirlockShuttle + - type: PolymorphableCanister + currentPrototype: AirCanister +- proto: AirlockClownContractorShuttleLocked entities: - uid: 4 components: @@ -280,7 +363,7 @@ entities: - uid: 7 components: - type: Transform - pos: -1.4946816,-0.2775966 + pos: 2.268822,0.6392218 parent: 1 - proto: BananiumDoor entities: @@ -296,6 +379,9 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 1 + - type: Door + secondsUntilStateChange: -131.67447 + state: Opening - uid: 10 components: - type: Transform @@ -381,6 +467,15 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: BorgModuleClowning + entities: + - uid: 379 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: CableApcExtension entities: - uid: 31 @@ -836,8 +931,16 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - 0 - 0 - 0 @@ -854,11 +957,11 @@ entities: showEnts: False occludes: True ents: - - 25 - - 23 - - 22 - - 24 - 261 + - 22 + - 23 + - 25 + - 24 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -868,6 +971,52 @@ entities: - type: Transform pos: 4.5,-2.5 parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 30 + - 28 + - 27 + - 315 + - 29 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 115 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 - type: EntityStorage air: volume: 200 @@ -886,43 +1035,32 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 29 - - 315 - - 27 - - 28 - - 30 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 115 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 1 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 125 - - 124 - - 123 - - 122 - - 121 - - 126 - - 120 - - 119 - - 118 - - 117 + - 379 - 116 + - 117 + - 118 + - 119 + - 120 + - 126 + - 121 + - 122 + - 123 + - 124 + - 125 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -932,27 +1070,68 @@ entities: - type: Transform pos: 6.5,-0.5 parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 128 - - 129 - - 130 - - 131 - - 132 - - 133 - - 134 - - 135 - - 138 - - 136 - 137 + - 136 + - 138 + - 135 + - 134 + - 133 + - 132 + - 131 + - 130 + - 129 + - 380 + - 128 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null +- proto: CrayonRainbow + entities: + - uid: 382 + components: + - type: Transform + pos: -1.2894332,-0.29621565 + parent: 1 +- proto: DeepSpaceComWallMount + entities: + - uid: 384 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 - proto: DehydratedSpaceCarp entities: - uid: 24 @@ -962,6 +1141,9 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} - uid: 29 components: - type: Transform @@ -969,6 +1151,9 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} - proto: DeviceQuantumSpinInverter entities: - uid: 25 @@ -1008,6 +1193,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: FaxMachineBase + entities: + - uid: 383 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 - proto: FloorBananiumEntity entities: - uid: 139 @@ -1106,12 +1298,12 @@ entities: - uid: 144 components: - type: Transform - pos: -1.5971907,0.54355335 + pos: 2.7644207,0.14128423 parent: 1 - uid: 145 components: - type: Transform - pos: -1.405974,0.27368832 + pos: 2.2753637,0.14128423 parent: 1 - proto: FoodCakeClown entities: @@ -1909,6 +2101,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: PaperBin10 + entities: + - uid: 385 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 - proto: PlasmaWindow entities: - uid: 262 @@ -2223,6 +2422,11 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 381 + components: + - type: Transform + pos: -1.6230972,-0.35871565 + parent: 1 - proto: SpawnClownSpider entities: - uid: 312 @@ -2230,11 +2434,6 @@ entities: - type: Transform pos: -4.5,-4.5 parent: 1 - - uid: 313 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 1 - uid: 314 components: - type: Transform @@ -2280,17 +2479,43 @@ entities: parent: 1 - type: Lock locked: False + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 96 - 95 - - 97 - - 94 + - 96 - 98 + - 94 + - 97 - uid: 99 components: - type: Transform @@ -2314,15 +2539,41 @@ entities: parent: 1 - type: Lock locked: False + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 104 - - 105 - 106 + - 105 + - 104 - proto: TablePlasmaGlass entities: - uid: 317 @@ -2663,4 +2914,13 @@ entities: - type: Transform pos: 3.5,-2.5 parent: 1 +- proto: WhoopieCushion + entities: + - uid: 380 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage ... diff --git a/Resources/Maps/Shuttles/ShuttleEvent/traveling_china_cuisine.yml b/Resources/Maps/Shuttles/ShuttleEvent/traveling_china_cuisine.yml index 7b6812c493..2770768f42 100644 --- a/Resources/Maps/Shuttles/ShuttleEvent/traveling_china_cuisine.yml +++ b/Resources/Maps/Shuttles/ShuttleEvent/traveling_china_cuisine.yml @@ -26,7 +26,7 @@ entities: name: SRV "Salami-Salami" - type: Transform pos: -0.5104167,-0.5 - parent: invalid + parent: 71 - type: MapGrid chunks: 0,0: @@ -86,34 +86,59 @@ entities: data: tiles: 0,0: - 0: 7 - 1: 128 + 0: 1 + 1: 6 + 2: 128 0,-1: - 0: 29303 + 1: 29303 -1,0: - 1: 129 + 2: 129 -1,-1: - 0: 28686 - 1: 272 + 1: 28686 + 2: 272 -1,-2: - 1: 28 - 0: 65024 + 2: 28 + 1: 65024 -1,-3: - 1: 49152 + 2: 49152 0,-3: - 1: 61440 + 2: 61440 0,-2: - 0: 32624 - 1: 8 + 1: 32624 + 2: 8 1,-3: - 1: 4096 + 2: 4096 1,-2: - 1: 65 - 0: 13056 + 2: 65 + 1: 12544 + 3: 512 1,-1: - 0: 3 - 1: 320 + 1: 3 + 2: 320 uniqueMixes: + - volume: 2500 + temperature: 293.14978 + moles: + - 21.813705 + - 82.06108 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -129,6 +154,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 immutable: True moles: @@ -144,10 +177,62 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - type: NavMap + - uid: 71 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap +- proto: AirlockChefContractorShuttleLocked + entities: + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 - proto: AirlockShuttle entities: - uid: 2 @@ -156,12 +241,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-4.5 parent: 1 - - uid: 3 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 1 - proto: APCBasic entities: - uid: 4 @@ -169,6 +248,13 @@ entities: - type: Transform pos: 2.5,-1.5 parent: 1 +- proto: ATM + entities: + - uid: 235 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 - proto: AtmosDeviceFanTiny entities: - uid: 5 @@ -374,73 +460,21 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-0.5 parent: 1 -- proto: ClosetMaintenance - entities: - - uid: 71 - components: - - type: Transform - pos: 0.5,0.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14786 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 80 - - 76 - - 73 - - 74 - - 78 - - 81 - - 77 - - 72 - - 75 - - 79 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: ClothingHeadHatCasa entities: - uid: 72 components: - type: Transform - parent: 71 + parent: 74 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingHeadHelmetEVALarge - entities: - - uid: 82 - components: - - type: Transform - pos: 0.30235916,-0.6487955 - parent: 1 - proto: ClothingOuterDameDane entities: - uid: 79 components: - type: Transform - parent: 71 + parent: 74 - type: Physics canCollide: False - type: InsideEntityStorage @@ -449,16 +483,16 @@ entities: - uid: 73 components: - type: Transform - parent: 71 + parent: 74 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingOuterHardsuitAncientEVA +- proto: ClothingOuterHardsuitBasic entities: - - uid: 74 + - uid: 90 components: - type: Transform - parent: 71 + parent: 74 - type: Physics canCollide: False - type: InsideEntityStorage @@ -467,7 +501,7 @@ entities: - uid: 75 components: - type: Transform - parent: 71 + parent: 74 - type: Physics canCollide: False - type: InsideEntityStorage @@ -476,7 +510,7 @@ entities: - uid: 76 components: - type: Transform - parent: 71 + parent: 74 - type: Physics canCollide: False - type: InsideEntityStorage @@ -492,10 +526,17 @@ entities: - uid: 77 components: - type: Transform - parent: 71 + parent: 74 - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ComputerDeepSpaceCom + entities: + - uid: 232 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 - proto: ComputerShuttle entities: - uid: 84 @@ -516,8 +557,16 @@ entities: immutable: False temperature: 293.14783 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - 0 - 0 - 0 @@ -534,36 +583,36 @@ entities: showEnts: False occludes: True ents: - - 11 - - 29 - - 24 - - 13 - - 25 - - 37 - - 33 - - 32 - - 38 - - 16 - - 15 - - 19 - - 17 - - 18 - - 20 - - 40 - - 14 - - 22 - - 30 - - 21 - - 34 - - 23 - - 35 - - 28 - - 36 - - 27 - - 39 - - 31 - - 26 - 12 + - 26 + - 31 + - 39 + - 27 + - 36 + - 28 + - 35 + - 23 + - 34 + - 21 + - 30 + - 22 + - 14 + - 40 + - 20 + - 18 + - 17 + - 19 + - 15 + - 16 + - 38 + - 32 + - 33 + - 37 + - 25 + - 13 + - 24 + - 29 + - 11 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -595,6 +644,15 @@ entities: rot: 3.141592653589793 rad pos: 1.8425496,-6.086302 parent: 1 +- proto: Eftpos + entities: + - uid: 233 + components: + - type: Transform + parent: 74 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: EggySeeds entities: - uid: 89 @@ -607,16 +665,25 @@ entities: - uid: 78 components: - type: Transform - parent: 71 + parent: 74 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: FolderSpawner +- proto: FaxMachineBase entities: - - uid: 90 + - uid: 126 components: - type: Transform - pos: 2.6497245,-0.5822141 + pos: 2.5,-0.5 + parent: 1 + - type: FaxMachine + name: Шаттл Бистро +- proto: FolderSpawner + entities: + - uid: 188 + components: + - type: Transform + pos: 2.6700735,-0.7461357 parent: 1 - proto: FoodBowlBig entities: @@ -1066,6 +1133,13 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,0.5 parent: 1 +- proto: GrowingPot + entities: + - uid: 187 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 - proto: Gyroscope entities: - uid: 123 @@ -1088,13 +1162,6 @@ entities: - type: Transform pos: 1.5,-1.5 parent: 1 -- proto: hydroponicsSoil - entities: - - uid: 126 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 1 - proto: HydroponicsToolClippers entities: - uid: 127 @@ -1122,7 +1189,7 @@ entities: - uid: 80 components: - type: Transform - parent: 71 + parent: 74 - type: Physics canCollide: False - type: InsideEntityStorage @@ -1147,6 +1214,9 @@ entities: - type: Transform pos: 0.5,-2.5 parent: 1 + - type: PointLight + color: '#D56C6CFF' + enabled: True - type: EntityStorage air: volume: 200 @@ -1165,6 +1235,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -1191,6 +1269,67 @@ entities: showEnts: False occludes: True ent: null +- proto: LockerSteel + entities: + - uid: 74 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - type: PointLight + color: '#D56C6CFF' + enabled: True + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14703 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 233 + - 133 + - 80 + - 76 + - 73 + - 78 + - 81 + - 77 + - 72 + - 79 + - 75 + - 185 + - 90 + - 82 + - 147 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: MaterialSheetMeat entities: - uid: 39 @@ -1212,25 +1351,26 @@ entities: - uid: 81 components: - type: Transform - parent: 71 + parent: 74 - type: Physics canCollide: False - type: InsideEntityStorage - proto: NoticeBoard entities: - - uid: 133 + - uid: 234 components: - type: Transform - pos: -1.5,-2.5 + pos: -0.5,-2.5 parent: 1 - proto: Pen entities: - - uid: 232 + - uid: 82 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.27949,-0.47790605 - parent: 1 + parent: 74 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: PlushieVox entities: - uid: 134 @@ -1238,6 +1378,9 @@ entities: - type: Transform pos: -0.5571752,-4.2839594 parent: 1 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} - proto: PosterLegitFruitBowl entities: - uid: 135 @@ -1333,8 +1476,10 @@ entities: - uid: 147 components: - type: Transform - pos: 2.6184745,-0.09783912 - parent: 1 + parent: 74 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: Shovel entities: - uid: 148 @@ -1350,6 +1495,7 @@ entities: pos: -0.5,-4.5 parent: 1 - type: DeviceLinkSink + invokeCounter: 2 links: - 160 - uid: 150 @@ -1358,6 +1504,7 @@ entities: pos: -0.5,-3.5 parent: 1 - type: DeviceLinkSink + invokeCounter: 2 links: - 160 - uid: 151 @@ -1366,6 +1513,7 @@ entities: pos: -0.5,-5.5 parent: 1 - type: DeviceLinkSink + invokeCounter: 2 links: - 160 - uid: 152 @@ -1374,6 +1522,7 @@ entities: pos: -3.5,-4.5 parent: 1 - type: DeviceLinkSink + invokeCounter: 2 links: - 160 - proto: ShuttleWindow @@ -1459,7 +1608,7 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-6.5 parent: 1 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 164 components: @@ -1467,6 +1616,17 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-6.5 parent: 1 +- proto: SpaceCash2500 + entities: + - uid: 133 + components: + - type: Transform + parent: 74 + - type: Stack + count: 7500 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: StoolBar entities: - uid: 165 @@ -1603,8 +1763,10 @@ entities: - uid: 185 components: - type: Transform - pos: 0.5731925,-0.16962886 - parent: 1 + parent: 74 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: TravelingChefSpawner entities: - uid: 186 @@ -1612,18 +1774,6 @@ entities: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 187 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 1 -- proto: VendingMachineChang - entities: - - uid: 188 - components: - - type: Transform - pos: 2.5,0.5 - parent: 1 - proto: WallShuttle entities: - uid: 189 diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index edd74ab291..f3b82cb06a 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -30,6 +30,7 @@ - type: Access groups: - AllAccess + - Everything # WD tags: - NuclearOperative - SyndicateAgent diff --git a/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml b/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml index 20883af760..7f1eaeaf2f 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml @@ -639,6 +639,7 @@ id: LostCargoTechnician randomizeName: false components: + - type: FillIDCard # WD - type: GhostRole name: ghost-role-information-lost-cargo-technical-name description: ghost-role-information-lost-cargo-technical-description @@ -706,7 +707,23 @@ - type: RandomMetadata nameSegments: - names_clown - - type: Pacified # WD + # WD Edit start + - type: Pacified + - type: Clumsy + clumsyDamage: + types: + Blunt: 5 + Piercing: 4 + groups: + Burn: 3 + - type: SleepEmitSound + snore: /Audio/Voice/Misc/silly_snore.ogg + interval: 10 + - type: FillIDCard + isContractor: true + - type: AddImplant + implants: [ SadTromboneImplant ] + # WD Edit end - type: randomHumanoidSettings id: ClownTroupeBanana @@ -722,7 +739,23 @@ - type: RandomMetadata nameSegments: - names_clown - - type: Pacified # WD + # WD Edit start + - type: Pacified + - type: Clumsy + clumsyDamage: + types: + Blunt: 5 + Piercing: 4 + groups: + Burn: 3 + - type: SleepEmitSound + snore: /Audio/Voice/Misc/silly_snore.ogg + interval: 10 + - type: FillIDCard + isContractor: true + - type: AddImplant + implants: [ SadTromboneImplant ] + # WD Edit end # Traveling exotic chef @@ -767,6 +800,8 @@ nameSegments: - names_first - names_last + - type: FillIDCard # WD + isContractor: true # Disaster victim @@ -831,6 +866,7 @@ nameSegments: - names_first - names_last + - type: FillIDCard # WD - type: randomHumanoidSettings parent: Nanotrasen # WD @@ -850,6 +886,7 @@ nameSegments: - names_first - names_last + - type: FillIDCard # WD - type: randomHumanoidSettings parent: Nanotrasen # WD @@ -869,6 +906,9 @@ nameSegments: - names_first - names_last + - type: FillIDCard # WD + - type: AddImplant # WD + implants: [ MindShieldImplant ] # Syndie Disaster Victim diff --git a/Resources/Prototypes/Entities/Objects/Devices/door_remote.yml b/Resources/Prototypes/Entities/Objects/Devices/door_remote.yml index 25ac56a6da..cfa7a579c2 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/door_remote.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/door_remote.yml @@ -176,5 +176,6 @@ - type: Access groups: - AllAccess + - Everything # WD tags: - CentralCommand diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml index 3c457a3bdb..4dc59139ed 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml @@ -313,7 +313,7 @@ - type: startingGear id: BananaClown equipment: - id: ClownPDA # TODO + id: ClownIDCardContractor # WD back: ClothingBackpackClown shoes: ClothingShoesClownBanana jumpsuit: ClothingUniformJumpsuitClownBanana @@ -328,7 +328,7 @@ equipment: jumpsuit: ClothingUniformJumpsuitClown shoes: ClothingShoesClown - id: ClownPDA # TODO + id: ClownIDCardContractor # WD back: ClothingBackpackClown ears: ClothingHeadsetServiceContractor # WD mask: ClothingMaskClown @@ -365,7 +365,7 @@ equipment: jumpsuit: ClothingUniformJumpsuitChef shoes: ClothingShoesColorWhite - id: ChefPDA # TODO + id: ChefIDCardContractor # WD back: ClothingBackpackSatchel ears: ClothingHeadsetServiceContractor # WD belt: ClothingBeltChef diff --git a/Resources/Prototypes/Roles/play_time_trackers.yml b/Resources/Prototypes/Roles/play_time_trackers.yml index 159905dd3e..35b9235770 100644 --- a/Resources/Prototypes/Roles/play_time_trackers.yml +++ b/Resources/Prototypes/Roles/play_time_trackers.yml @@ -156,28 +156,3 @@ - type: playTimeTracker id: JobZookeeper - -# WHITE -- type: playTimeTracker - id: JobInspector - -- type: playTimeTracker - id: JobBomzh - -- type: playTimeTracker - id: JobBrigmedic - -- type: playTimeTracker - id: JobMaid - -- type: playTimeTracker - id: JobCargoTechnicianAnotherSector - -- type: playTimeTracker - id: JobChiefMedicalOfficerAnotherSector - -- type: playTimeTracker - id: JobCaptainAnotherSector - -- type: playTimeTracker - id: JobResearchDirectorAnotherSector diff --git a/Resources/Prototypes/_White/Access/misc.yml b/Resources/Prototypes/_White/Access/misc.yml new file mode 100644 index 0000000000..ce05dcc92b --- /dev/null +++ b/Resources/Prototypes/_White/Access/misc.yml @@ -0,0 +1,18 @@ +- type: accessGroup + id: Everything + tags: + - AllAccess + - NuclearOperative + - SyndicateAgent + - CentralCommand + - Mercenary + - ClownContractor + - ChefContractor + +- type: accessLevel + id: ClownContractor + name: Клоун контрактник + +- type: accessLevel + id: ChefContractor + name: Шеф-повар контрактник diff --git a/Resources/Prototypes/_White/Entities/Objects/Misc/airlocks.yml b/Resources/Prototypes/_White/Entities/Objects/Misc/airlocks.yml new file mode 100644 index 0000000000..b23cd2f094 --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Objects/Misc/airlocks.yml @@ -0,0 +1,235 @@ +- type: entity + parent: DoorElectronics + id: DoorElectronicsClownContractor + suffix: ClownContractor, Locked + components: + - type: AccessReader + access: [["ClownContractor"]] + +- type: entity + parent: Airlock + id: AirlockClownContractorLocked + suffix: ClownContractor, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsClownContractor ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: AirlockGlass + id: AirlockClownContractorGlassLocked + suffix: ClownContractor, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsClownContractor ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: AirlockShuttle + id: AirlockClownContractorShuttleLocked + suffix: ClownContractor, Docking, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsClownContractor ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: AirlockGlassShuttle + id: AirlockClownContractorGlassShuttleLocked + suffix: ClownContractor, Glass, Docking, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsClownContractor ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: Windoor + id: WindoorClownContractorLocked + suffix: ClownContractor, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsClownContractor ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: WindoorSecure + id: WindoorSecureClownContractorLocked + suffix: ClownContractor, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsClownContractor ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: WindoorPlasma + id: PlasmaWindoorClownContractorLocked + suffix: ClownContractor, Locked, Plasma + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsClownContractor ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: WindoorUranium + id: UraniumWindoorClownContractorLocked + suffix: ClownContractor, Locked, Uranium + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsClownContractor ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: WindoorSecurePlasma + id: PlasmaWindoorSecureClownContractorLocked + suffix: ClownContractor, Locked, Plasma + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsClownContractor ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: WindoorSecureUranium + id: UraniumWindoorSecureClownContractorLocked + suffix: ClownContractor, Locked, Uranium + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsClownContractor ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: DoorElectronics + id: DoorElectronicsChefContractor + suffix: ChefContractor, Locked + components: + - type: AccessReader + access: [["ChefContractor"]] + +- type: entity + parent: Airlock + id: AirlockChefContractorLocked + suffix: ChefContractor, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsChefContractor ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: AirlockGlass + id: AirlockChefContractorGlassLocked + suffix: ChefContractor, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsChefContractor ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: AirlockShuttle + id: AirlockChefContractorShuttleLocked + suffix: ChefContractor, Docking, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsChefContractor ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: AirlockGlassShuttle + id: AirlockChefContractorGlassShuttleLocked + suffix: ChefContractor, Glass, Docking, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsChefContractor ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: Windoor + id: WindoorChefContractorLocked + suffix: ChefContractor, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsChefContractor ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: WindoorSecure + id: WindoorSecureChefContractorLocked + suffix: ChefContractor, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsChefContractor ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: WindoorPlasma + id: PlasmaWindoorChefContractorLocked + suffix: ChefContractor, Locked, Plasma + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsChefContractor ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: WindoorUranium + id: UraniumWindoorChefContractorLocked + suffix: ChefContractor, Locked, Uranium + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsChefContractor ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: WindoorSecurePlasma + id: PlasmaWindoorSecureChefContractorLocked + suffix: ChefContractor, Locked, Plasma + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsChefContractor ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: WindoorSecureUranium + id: UraniumWindoorSecureChefContractorLocked + suffix: ChefContractor, Locked, Uranium + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsChefContractor ] + - type: Wires + layoutId: AirlockArmory diff --git a/Resources/Prototypes/_White/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/_White/Entities/Objects/Misc/identification_cards.yml index d47c352fd7..ccfa58f6f3 100644 --- a/Resources/Prototypes/_White/Entities/Objects/Misc/identification_cards.yml +++ b/Resources/Prototypes/_White/Entities/Objects/Misc/identification_cards.yml @@ -29,3 +29,23 @@ components: - type: PresetIdCard job: ResearchDirectorAnotherSector + +- type: entity + parent: IDCardStandard + id: ClownIDCardContractor + components: + - type: Sprite + layers: + - state: non_faction + - type: PresetIdCard + job: ClownContractor + +- type: entity + parent: IDCardStandard + id: ChefIDCardContractor + components: + - type: Sprite + layers: + - state: non_faction + - type: PresetIdCard + job: ChefContractor diff --git a/Resources/Prototypes/_White/Roles/Jobs/another_sector.yml b/Resources/Prototypes/_White/Roles/Jobs/misc.yml similarity index 65% rename from Resources/Prototypes/_White/Roles/Jobs/another_sector.yml rename to Resources/Prototypes/_White/Roles/Jobs/misc.yml index 377c1d2363..9986d15b25 100644 --- a/Resources/Prototypes/_White/Roles/Jobs/another_sector.yml +++ b/Resources/Prototypes/_White/Roles/Jobs/misc.yml @@ -21,9 +21,6 @@ playTimeTracker: JobCaptainAnotherSector icon: "JobIconCaptain" supervisors: job-supervisors-centcom - special: - - !type:AddImplantSpecial - implants: [ MindShieldImplant ] - type: job id: ResearchDirectorAnotherSector @@ -32,3 +29,23 @@ playTimeTracker: JobResearchDirectorAnotherSector icon: "JobIconResearchDirector" supervisors: job-supervisors-captain + +- type: job + id: ClownContractor + name: клоун контрактник + description: job-description-clown + playTimeTracker: JobClownContractor + icon: "JobIconVisitor" + supervisors: job-supervisors-hop + access: + - ClownContractor + +- type: job + id: ChefContractor + name: шеф-повар контрактник + description: job-description-chef + playTimeTracker: JobChefContractor + icon: "JobIconVisitor" + supervisors: job-supervisors-hop + access: + - ChefContractor diff --git a/Resources/Prototypes/_White/Roles/play_time_trackers.yml b/Resources/Prototypes/_White/Roles/play_time_trackers.yml new file mode 100644 index 0000000000..bb3b7c5001 --- /dev/null +++ b/Resources/Prototypes/_White/Roles/play_time_trackers.yml @@ -0,0 +1,32 @@ +- type: playTimeTracker + id: JobInspector + +- type: playTimeTracker + id: JobBomzh + +- type: playTimeTracker + id: JobBrigmedic + +- type: playTimeTracker + id: JobMaid + +- type: playTimeTracker + id: JobCargoTechnicianAnotherSector + +- type: playTimeTracker + id: JobChiefMedicalOfficerAnotherSector + +- type: playTimeTracker + id: JobCaptainAnotherSector + +- type: playTimeTracker + id: JobResearchDirectorAnotherSector + +- type: playTimeTracker + id: JobClownContractor + +- type: playTimeTracker + id: JobChefContractor + +- type: playTimeTracker + id: JobMercenary diff --git a/Resources/Prototypes/_White/mercenary.yml b/Resources/Prototypes/_White/mercenary.yml index e63dfbe20b..4b423eb101 100644 --- a/Resources/Prototypes/_White/mercenary.yml +++ b/Resources/Prototypes/_White/mercenary.yml @@ -16,7 +16,7 @@ - id: Tourniquet - id: Lighter - id: CigPackBlack - - id: SpaceCash500 + - id: SpaceCash5000 - id: FlashlightLantern - type: startingGear @@ -79,6 +79,8 @@ nameSegments: - names_first - names_last + - type: FillIDCard + isContractor: true # Book - type: entity @@ -120,7 +122,7 @@ # Airlock - type: accessLevel id: Mercenary - name: id-card-access-level-mercenary + name: Наёмник - type: entity parent: DoorElectronics @@ -139,9 +141,17 @@ - type: Sprite layers: - state: non_faction - - type: Access - tags: - - Mercenary + - type: PresetIdCard + job: Mercenary + +- type: job + id: Mercenary + name: наёмник + description: ghost-role-information-mercenary-standard-description + playTimeTracker: JobMercenary + icon: "JobIconVisitor" + access: + - Mercenary - type: entity parent: Airlock @@ -154,3 +164,101 @@ - type: Wires layoutId: AirlockArmory +- type: entity + parent: AirlockGlass + id: AirlockMercenaryGlassLocked + suffix: Mercenary, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsMercenary ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: AirlockShuttle + id: AirlockMercenaryShuttleLocked + suffix: Mercenary, Docking, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsMercenary ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: AirlockGlassShuttle + id: AirlockMercenaryGlassShuttleLocked + suffix: Mercenary, Glass, Docking, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsMercenary ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: Windoor + id: WindoorMercenaryLocked + suffix: Mercenary, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsMercenary ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: WindoorSecure + id: WindoorSecureMercenaryLocked + suffix: Mercenary, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsMercenary ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: WindoorPlasma + id: PlasmaWindoorMercenaryLocked + suffix: Mercenary, Locked, Plasma + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsMercenary ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: WindoorUranium + id: UraniumWindoorMercenaryLocked + suffix: Mercenary, Locked, Uranium + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsMercenary ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: WindoorSecurePlasma + id: PlasmaWindoorSecureMercenaryLocked + suffix: Mercenary, Locked, Plasma + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsMercenary ] + - type: Wires + layoutId: AirlockArmory + +- type: entity + parent: WindoorSecureUranium + id: UraniumWindoorSecureMercenaryLocked + suffix: Mercenary, Locked, Uranium + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsMercenary ] + - type: Wires + layoutId: AirlockArmory From 434ebba8659f3795f3c9f140aa4ec185b283c38a Mon Sep 17 00:00:00 2001 From: BIGZi0348 Date: Sun, 16 Mar 2025 18:24:58 +0300 Subject: [PATCH 20/22] =?UTF-8?q?=D0=9F=D1=80=D0=B0=D0=B2=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Resources/Prototypes/Catalog/thief_toolbox_sets.yml | 2 +- Resources/Prototypes/GameRules/midround.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Resources/Prototypes/Catalog/thief_toolbox_sets.yml b/Resources/Prototypes/Catalog/thief_toolbox_sets.yml index 3a1dc4ec6b..725ea8dea2 100644 --- a/Resources/Prototypes/Catalog/thief_toolbox_sets.yml +++ b/Resources/Prototypes/Catalog/thief_toolbox_sets.yml @@ -111,7 +111,7 @@ - SmokeGrenade - SmokeGrenade -# - type: thiefBackpackSet # Буквальная легализация армии метадружков +# - type: thiefBackpackSet # Буквальная легализация армии метадружков # id: SlaverySet # name: thief-backpack-category-slavery-name # description: thief-backpack-category-slavery-description diff --git a/Resources/Prototypes/GameRules/midround.yml b/Resources/Prototypes/GameRules/midround.yml index 3f1e8d4aac..882c933540 100644 --- a/Resources/Prototypes/GameRules/midround.yml +++ b/Resources/Prototypes/GameRules/midround.yml @@ -46,8 +46,8 @@ allowNonHumans: true multiAntagSetting: NotExclusive startingGear: ThiefGear - components: - - type: Pacified + # components: # WD EDIT + # - type: Pacified mindComponents: - type: ThiefRole prototype: Thief From e93f1488a023eb74bd7a1b146011f38f2c359479 Mon Sep 17 00:00:00 2001 From: BIGZi0348 Date: Sun, 16 Mar 2025 22:29:46 +0300 Subject: [PATCH 21/22] runitback --- Resources/Locale/ru-RU/thief/backpack.ftl | 6 ++--- .../Prototypes/Catalog/thief_toolbox_sets.yml | 26 +++++++++---------- .../Entities/Objects/Tools/toolbox.yml | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Resources/Locale/ru-RU/thief/backpack.ftl b/Resources/Locale/ru-RU/thief/backpack.ftl index 566e2ce90c..db2f5b9c3d 100644 --- a/Resources/Locale/ru-RU/thief/backpack.ftl +++ b/Resources/Locale/ru-RU/thief/backpack.ftl @@ -56,9 +56,9 @@ thief-backpack-category-smuggler-description = thief-backpack-category-slavery-name = набор рабовладельца thief-backpack-category-slavery-description = - Набор, состоящий из трёх имплантеров подчинения - и стильной одежды рабовладельца. - Собери собственную армию послушных рабов! + Набор для кукловода. + Включает в себя имплант подчинения, стильный прикид рабовладельца, + мыло для удаления своих отпечатков и особые ключи шифрования. thief-backpack-category-hitech-name = высокотехнологичный набор thief-backpack-category-hitech-description = diff --git a/Resources/Prototypes/Catalog/thief_toolbox_sets.yml b/Resources/Prototypes/Catalog/thief_toolbox_sets.yml index 725ea8dea2..47cb564d65 100644 --- a/Resources/Prototypes/Catalog/thief_toolbox_sets.yml +++ b/Resources/Prototypes/Catalog/thief_toolbox_sets.yml @@ -111,19 +111,19 @@ - SmokeGrenade - SmokeGrenade -# - type: thiefBackpackSet # Буквальная легализация армии метадружков -# id: SlaverySet -# name: thief-backpack-category-slavery-name -# description: thief-backpack-category-slavery-description -# sprite: -# sprite: /Textures/Clothing/Head/Hats/syndiecap_maa.rsi -# state: icon -# content: -# - MindSlaveImplanter -# - MindSlaveImplanter -# - MindSlaveImplanter -# - ClothingOuterCoatSyndieCap -# - ClothingHeadHatSyndieMAA +- type: thiefBackpackSet + id: SlaverySet + name: thief-backpack-category-slavery-name + description: thief-backpack-category-slavery-description + sprite: + sprite: /Textures/Clothing/Head/Hats/syndiecap_maa.rsi + state: icon + content: + - MindSlaveImplanter + - SoapOmega + - BoxEncryptionKeySyndie + - ClothingOuterCoatSyndieCap + - ClothingHeadHatSyndieMAA - type: thiefBackpackSet id: HiTechSet diff --git a/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml b/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml index e37f8abcfa..8a5620371f 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml @@ -174,7 +174,7 @@ - SleeperSet - CommunicatorSet - SmugglerSet - # - SlaverySet # WD + - SlaverySet # WD - HiTechSet # WD - type: ActivatableUI key: enum.ThiefBackpackUIKey.Key From dec6e28e428843b9d57eb0de006236fd7ef7fae6 Mon Sep 17 00:00:00 2001 From: RavmorganButOnCocaine Date: Sun, 16 Mar 2025 19:36:47 +0000 Subject: [PATCH 22/22] Automatic changelog update --- Resources/Changelog/ChangelogWhite.yml | 93 +++++++++++++++++++++++--- 1 file changed, 84 insertions(+), 9 deletions(-) diff --git a/Resources/Changelog/ChangelogWhite.yml b/Resources/Changelog/ChangelogWhite.yml index f0f0c8e234..92381034c4 100644 --- a/Resources/Changelog/ChangelogWhite.yml +++ b/Resources/Changelog/ChangelogWhite.yml @@ -1,13 +1,4 @@ Entries: -- author: rhailrake - changes: - - message: Old music. - type: Add - - message: lobby tweaks. - type: Tweak - id: 169 - time: '2024-02-29T17:36:08.0000000+00:00' - url: https://api.github.com/repos/frosty-dev/ss14-core/pulls/149 - author: nairsark changes: - message: RCD can place floor on platings @@ -9017,3 +9008,87 @@ id: 668 time: '2025-03-15T18:20:14.0000000+00:00' url: https://api.github.com/repos/frosty-dev/ss14-core/pulls/919 +- author: BIG_Zi_348 + changes: + - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u0440\u0438\ + \u043A\u043E\u043B\u044B \u0434\u043B\u044F \u0430\u0434\u043C\u0438\u043D \u0441\ + \u043F\u0430\u0432\u043D\u0430." + type: Add + - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043A\u043E\u043D\ + \u0441\u043E\u043B\u0438 \u0434\u0430\u043B\u044C\u043D\u0435\u0439 \u0441\u0432\ + \u044F\u0437\u0438 \u043D\u0430 \u0448\u0430\u0442\u0442\u043B\u044B." + type: Add + - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043E\u0431\u044A\ + \u0435\u043A\u0442\u044B \u0438\u043D\u0442\u0435\u0440\u0435\u0441\u0430 \u0434\ + \u043B\u044F \u0433\u043E\u0441\u0442-\u0440\u043E\u043B\u0435\u0439 \u0441\u043E\ + \ \u0441\u0432\u043E\u0438\u043C\u0438 \u0448\u0430\u0442\u0442\u043B\u0430\u043C\ + \u0438." + type: Add + - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D \u0438\u043C\u043F\u043B\ + \u0430\u043D\u0442 \u0437\u0430\u0449\u0438\u0442\u044B \u0440\u0430\u0437\u0443\ + \u043C\u0430 \u043F\u043E\u0442\u0435\u0440\u044F\u043D\u043D\u043E\u043C\u0443\ + \ \u043A\u0430\u043F\u0438\u0442\u0430\u043D\u0443." + type: Add + - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0438\u043D\u0434\ + \u0438\u0432\u0438\u0434\u0443\u0430\u043B\u044C\u043D\u044B\u0435 \u0434\u043E\ + \u0441\u0442\u0443\u043F\u044B \u0434\u043B\u044F \u0433\u043E\u0441\u0442-\u0440\ + \u043E\u043B\u0435\u0439 \u0441\u043E \u0441\u0432\u043E\u0438\u043C\u0438 \u0448\ + \u0430\u0442\u0442\u043B\u0430\u043C\u0438." + type: Add + - message: "\u041F\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0443\u044E\u0449\ + \u0438\u043C \u043A\u043B\u043E\u0443\u043D\u0430\u043C \u0434\u043E\u0431\u0430\ + \u0432\u043B\u0435\u043D \u0438\u043C\u043F\u043B\u0430\u043D\u0442 \u0433\u0440\ + \u0443\u0441\u0442\u043D\u043E\u0433\u043E \u0442\u0440\u043E\u043C\u0431\u043E\ + \u043D\u0430 \u0438 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442 \u043D\ + \u0435\u0443\u043A\u043B\u044E\u0436\u0435\u0441\u0442\u0438 (\u0448\u0440\u0438\ + \u0444\u0442 Comic Sans, \u0441\u043C\u0435\u0448\u043D\u044B\u0435 \u0437\u0432\ + \u0443\u043A\u0438 \u0432\u043E \u0432\u0440\u0435\u043C\u044F \u0441\u043D\u0430\ + \ \u0438 \u043F\u0440\u043E\u0447.)." + type: Add + - message: "\u0413\u043E\u0441\u0442-\u0440\u043E\u043B\u0438 \u0441\u043E \u0441\ + \u0432\u043E\u0438\u043C\u0438 \u0448\u0430\u0442\u0442\u043B\u0430\u043C\u0438\ + \ \u043F\u043E\u043B\u0443\u0447\u0438\u043B\u0438 \u0438\u043D\u0434\u0438\u0432\ + \u0438\u0434\u0443\u0430\u043B\u044C\u043D\u044B\u0435 ID \u043A\u0430\u0440\ + \u0442\u044B." + type: Tweak + - message: "\u041F\u043E\u0442\u0435\u0440\u044F\u043D\u043D\u044B\u0435 \u0433\u043B\ + \u0430\u0432\u044B \u0442\u0435\u043F\u0435\u0440\u044C \u043C\u043E\u0433\u0443\ + \u0442 \u0431\u044B\u0442\u044C \u0442\u043E\u043B\u044C\u043A\u043E \u043B\u044E\ + \u0434\u044C\u043C\u0438." + type: Tweak + - message: "\u041F\u043E\u0442\u0435\u0440\u044F\u043D\u043D\u044B\u0435 \u0433\u043B\ + \u0430\u0432\u044B \u0431\u043E\u043B\u0435\u0435 \u043D\u0435 \u0438\u043C\u0435\ + \u044E\u0442 \u0441\u0442\u0430\u043D\u0446\u0438\u043E\u043D\u043D\u044B\u0445\ + \ \u0434\u043E\u0441\u0442\u0443\u043F\u043E\u0432 \u0438 \u0440\u0430\u0431\ + \u043E\u0442\u0430\u044E\u0449\u0438\u0445 \u043A\u043B\u044E\u0447\u0435\u0439\ + \ \u0448\u0438\u0444\u0440\u043E\u0432\u0430\u043D\u0438\u044F." + type: Tweak + - message: "\u041C\u0430\u0433 \u0442\u0435\u043F\u0435\u0440\u044C \u0438\u043C\ + \u0435\u0435\u0442 \u0438\u043C\u043C\u0443\u043D\u0438\u0442\u0435\u0442 \u043A\ + \ \u0438\u043C\u043F\u043B\u0430\u043D\u0442\u0435\u0440\u0443 \u043C\u0430\u0439\ + \u043D\u0434\u0441\u043B\u0435\u0439\u0432." + type: Tweak + - message: "\u0421\u0442\u043E\u0438\u043C\u043E\u0441\u0442\u044C \u0438\u043C\u043F\ + \u043B\u0430\u043D\u0442\u0430 \u043C\u0430\u0439\u043D\u0434\u0441\u043B\u0435\ + \u0439\u0432 \u0432\u043E\u0437\u0440\u043E\u0441\u043B\u0430 \u0434\u043E 10\ + \ \u0442\u043A." + type: Tweak + - message: "\u0418\u0437\u043C\u0435\u043D\u0451\u043D \u043D\u0430\u0431\u043E\u0440\ + \ \u0432\u043E\u0440\u0430 \u0441 \u0438\u043C\u043F\u043B\u0430\u043D\u0442\ + \u0430\u043C\u0438 \u043F\u043E\u0434\u0447\u0438\u043D\u0435\u043D\u0438\u044F\ + ." + type: Tweak + - message: "\u0418\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0430 \u043B\u043E\ + \u0433\u0438\u043A\u0430 \u043F\u043E\u0434\u0431\u043E\u0440\u0430 \u044F\u0434\ + \u0435\u0440\u043D\u044B\u0445 \u043E\u043F\u0435\u0440\u0430\u0442\u0438\u0432\ + \u043D\u0438\u043A\u043E\u0432." + type: Fix + - message: "\u0418\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0430 \u043B\u043E\ + \u043A\u0430\u043B\u0438\u0437\u0430\u0446\u0438\u044F." + type: Fix + - message: "\u0423\u0431\u0440\u0430\u043D \u043F\u0430\u0446\u0438\u0444\u0438\u0437\ + \u043C \u0443 \u0432\u043E\u0440\u0430." + type: Remove + id: 669 + time: '2025-03-16T19:35:42.0000000+00:00' + url: https://api.github.com/repos/frosty-dev/ss14-core/pulls/922