diff --git a/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs b/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs index 7a19fd13b2..9b0d0e55cf 100644 --- a/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs +++ b/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs @@ -168,10 +168,11 @@ private bool TryPilot(EntityUid user, EntityUid uid) { if (!_tags.HasTag(user, "CanPilot") || !TryComp(uid, out var component) || - !this.IsPowered(uid, EntityManager) || - !Transform(uid).Anchored || + // !this.IsPowered(uid, EntityManager) || Stories + // !Transform(uid).Anchored || Stories !_blocker.CanInteract(user, uid)) { + Logger.Error("111"); return false; } diff --git a/Content.Server/Stories/Prison/PrisonShuttleComponent.cs b/Content.Server/Stories/Prison/PrisonShuttleComponent.cs new file mode 100644 index 0000000000..6e8b5e90d1 --- /dev/null +++ b/Content.Server/Stories/Prison/PrisonShuttleComponent.cs @@ -0,0 +1,7 @@ +namespace Content.Server.Stories.Prison; + +[RegisterComponent] +public sealed partial class PrisonShuttleComponent : Component +{ + +} diff --git a/Content.Server/Stories/Prison/StationPrisonComponent.cs b/Content.Server/Stories/Prison/StationPrisonComponent.cs new file mode 100644 index 0000000000..b5826f220a --- /dev/null +++ b/Content.Server/Stories/Prison/StationPrisonComponent.cs @@ -0,0 +1,15 @@ +using Content.Server.Maps; +using Robust.Shared.Prototypes; +using Content.Shared.Whitelist; + +namespace Content.Server.Shuttles.Components; + +[RegisterComponent] +public sealed partial class StationPrisonComponent : Component +{ + [DataField] + public ProtoId GameMap = new("/Maps/prison.yml"); + + [DataField] + public EntityWhitelist Whitelist = new(); +} diff --git a/Content.Server/Stories/Prison/StationPrisonSystem.cs b/Content.Server/Stories/Prison/StationPrisonSystem.cs new file mode 100644 index 0000000000..8ccdfd1115 --- /dev/null +++ b/Content.Server/Stories/Prison/StationPrisonSystem.cs @@ -0,0 +1,33 @@ +using Content.Server.GameTicking; +using Content.Server.Shuttles.Components; +using Robust.Server.GameObjects; +using Robust.Server.Maps; +using Robust.Shared.Map; +using Robust.Shared.Prototypes; + +namespace Content.Server.Shuttles.Systems; + +public sealed partial class StationPrisonSystem : EntitySystem +{ + [Dependency] private readonly GameTicker _gameTicker = default!; + [Dependency] private readonly MapSystem _map = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly ShuttleSystem _shuttle = default!; + public override void Initialize() + { + SubscribeLocalEvent(OnStationInit); + } + + private void OnStationInit(EntityUid uid, StationPrisonComponent component, MapInitEvent args) + { + var mapUid = _map.CreateMap(out var mapId); + _mapManager.AddUninitializedMap(mapId); + var gameMap = _prototypeManager.Index(component.GameMap); + var grids = _gameTicker.LoadGameMap(gameMap, mapId, null); + _mapManager.DoMapInitialize(mapId); + + _shuttle.TryAddFTLDestination(mapId, true, out _); + _shuttle.SetFTLWhitelist(mapUid, component.Whitelist); + } +} diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/backpacks/startergear/backpack.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/backpacks/startergear/backpack.ftl index 1a72f06112..3550807368 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/backpacks/startergear/backpack.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/backpacks/startergear/backpack.ftl @@ -1,7 +1,3 @@ -ent-ClothingBackpackSpacePrisonFilled = { ent-ClothingBackpackSpacePrison } - .desc = { ent-ClothingBackpackSpacePrison.desc } -ent-ClothingBackpackJediNtFilled = { ent-ClothingBackpackJediNt } - .desc = { ent-ClothingBackpackJediNt.desc } ent-ClothingBackpackIAAFilled = { ent-ClothingBackpack } .desc = { ent-ClothingBackpack.desc } ent-ClothingBackpackPsychologistFilled = { ent-ClothingBackpackMedical } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/backpacks/startergear/duffelbag.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/backpacks/startergear/duffelbag.ftl index 814cb57f71..bf39d8f125 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/backpacks/startergear/duffelbag.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/backpacks/startergear/duffelbag.ftl @@ -1,5 +1,3 @@ -ent-ClothingBackpackDuffelSpacePrisonFilled = { ent-ClothingBackpackDuffelSpacePrison } - .desc = { ent-ClothingBackpackDuffelSpacePrison.desc } ent-ClothingBackpackDuffelIAAFilled = { ent-ClothingBackpackDuffel } .desc = { ent-ClothingBackpackDuffel.desc } ent-ClothingBackpackDuffelPsychologistFilled = { ent-ClothingBackpackDuffelMedical } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/lockers/jedi_nt.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/lockers/jedi_nt.ftl index 81eedd1da5..e69de29bb2 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/lockers/jedi_nt.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/lockers/jedi_nt.ftl @@ -1,3 +0,0 @@ -ent-LockerJediNtFilled = { ent-LockerJediNt } - .suffix = Заполненный - .desc = { ent-LockerJediNt.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/lockers/suit_storage.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/lockers/suit_storage.ftl deleted file mode 100644 index f033260851..0000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/lockers/suit_storage.ftl +++ /dev/null @@ -1,9 +0,0 @@ -ent-SuitStorageOfficerSP = { ent-SuitStorageBase } - .suffix = Офицер Космической Тюрьмы - .desc = { ent-SuitStorageBase.desc } -ent-SuitStorageEngiSP = { ent-SuitStorageBase } - .suffix = Инженер Космической Тюрьмы - .desc = { ent-SuitStorageBase.desc } -ent-SuitStorageWardenOfSP = { ent-SuitStorageBase } - .suffix = Глава Космической Тюрьмы - .desc = { ent-SuitStorageBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/back/backpacks.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/back/backpacks.ftl deleted file mode 100644 index cc462873fe..0000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/back/backpacks.ftl +++ /dev/null @@ -1,4 +0,0 @@ -ent-ClothingBackpackJediNt = рюкзак стража клинка - .desc = Кажется, вы где-то это уже видели. -ent-ClothingBackpackSpacePrison = рюкзак сотрудника космической тюрьмы - .desc = Это очень прочный рюкзак. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/back/duffel.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/back/duffel.ftl deleted file mode 100644 index 28d7d8a248..0000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/back/duffel.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-ClothingBackpackDuffelSpacePrison = вещмешок сотрудника космической тюрьмы - .desc = Большой вещмешок для хранения дополнительных предметов, связанных с обеспечением безопасности. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/back/satchel.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/back/satchel.ftl deleted file mode 100644 index 90983a21a5..0000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/back/satchel.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-ClothingBackpackSatchelSpacePrison = сумка сотрудника космической тюрьмы - .desc = Прочная сумка для обеспечения безопасности. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/ears/headsets.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/ears/headsets.ftl index ba3fd39390..989ef2605a 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/ears/headsets.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/ears/headsets.ftl @@ -1,4 +1,2 @@ ent-ClothingHeadsetIAA = гарнитура АВД .desc = Гарнитура агента внутренних дел, чтобы услышать последние слова капитана. -ent-ClothingHeadsetPrison = гарнитура космической тюрьмы - .desc = Гарнитура, используемая сотрудниками космической тюрьмы. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/ears/headsets_alt.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/ears/headsets_alt.ftl index 91369c9355..aaffc3f7ea 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/ears/headsets_alt.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/ears/headsets_alt.ftl @@ -1,4 +1,2 @@ ent-ClothingHeadsetJediNtAlt = полноразмерная гарнитура стража клинка - .desc = Почему тут нет командной частоты? -ent-ClothingHeadsetPrisonAlt = полноразмерная гарнитура ГКТ - .desc = { ent-ClothingHeadsetAlt.desc } + .desc = Почему тут нет командной частоты? \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/eyes/glasses.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/eyes/glasses.ftl deleted file mode 100644 index 949cc8cc87..0000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/eyes/glasses.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-ClothingEyesGlassesSpacePrison = солнцезащитные очки сотрудника космической тюрьмы - .desc = Странная древняя технология используется для обеспечения элементарной защиты глаз. Усиленная защита блокирует многие вспышки. Их часто носят сотрудники бюджетных служб безопасности. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/head/hats.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/head/hats.ftl deleted file mode 100644 index 08b69002fb..0000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/head/hats.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-ClothingHeadHatBeretSP = берет космической тюрьмы - .desc = Берет - любимый головной убор художников. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/head/soft.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/head/soft.ftl deleted file mode 100644 index 89944a459e..0000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/head/soft.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-ClothingHeadHatSPsoft = кепка космической тюрьмы - .desc = Это надежная бейсболка со вкусом подобранного синего цвета. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/neck/cloaks.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/neck/cloaks.ftl deleted file mode 100644 index 0d8c273623..0000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/neck/cloaks.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-ClothingNeckCloakHoSP = плащ главы космической тюрьмы - .desc = Изысканный серый плащ, подходящий для тех, кто умеет доминировать над обидчиками. Попробуйте проявить вежливость в судебном преследовании! diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/outerclothing/coats.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/outerclothing/coats.ftl index 2e941af6a3..f18ac05659 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/outerclothing/coats.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/outerclothing/coats.ftl @@ -1,4 +1,2 @@ ent-ClothingOuterCoatJedi = накидка джедая .desc = Длинный вид одежды, который свободно лежит на плечах, охватывая шею, но не имеет капюшона. -ent-ClothingOuterCoatHoSP = пальто начальника космической тюрьмы - .desc = Прочное холщовое пальто, разработанное и созданное компанией TX Fabrication Corp. Его ношение заставляет сочувствовать судьбе тибетцев. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/outerclothing/wintercoats.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/outerclothing/wintercoats.ftl deleted file mode 100644 index e585f92f3b..0000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/outerclothing/wintercoats.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-ClothingOuterWinterSP = зимнее пальто космической тюрьмы - .desc = { ent-ClothingOuterWinterCoat.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/uniforms/jumpskirts.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/uniforms/jumpskirts.ftl deleted file mode 100644 index d9b38b524e..0000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/uniforms/jumpskirts.ftl +++ /dev/null @@ -1,4 +0,0 @@ -ent-ClothingUniformJumpskirtSP = юбка-комбинезон космической тюрьмы - .desc = Юбка-комбинезон из прочного материала, обеспечивающая надежную защиту. -ent-ClothingUniformJumpskirtHoSP = юбка-комбинезон главы космической тюрьмы - .desc = Юбка-комбинезон из прочного материала, обеспечивающая надежную защиту. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/uniforms/jumpsuits.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/uniforms/jumpsuits.ftl index cf2b50df84..04d7191c29 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/uniforms/jumpsuits.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/clothing/uniforms/jumpsuits.ftl @@ -2,7 +2,3 @@ ent-ClothingUniformJumpsuitJedi = роба джедая .desc = Свободная роба, носимая членами Ордена джедаев. ent-ClothingUniformJumpsuitJediNt = униформа стража клинка .desc = Специальная униформа никак не повышающая точность владения мечом. -ent-ClothingUniformJumpsuitSP = комбинезон космической тюрьмы - .desc = Комбинезон из прочного материала, обеспечивающий надежную защиту. -ent-ClothingUniformJumpsuitHoSP = комбинезон главы космической тюрьмы - .desc = Комбинезон из прочного материала, обеспечивающий надежную защиту. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/devices/encryption_keys.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/devices/encryption_keys.ftl index 76843e3681..b759480f39 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/devices/encryption_keys.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/devices/encryption_keys.ftl @@ -1,4 +1,2 @@ ent-EncryptionKeyIAA = ключ шифрования авд .desc = Ключ шифрования, используемый самым дотошным человеком. -ent-EncryptionKeyPrison = ключ шифрования космической тюрьмы - .desc = Ключ шифрования diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/devices/pda.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/devices/pda.ftl index a700ef776c..e9aaa7be37 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/devices/pda.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/devices/pda.ftl @@ -1,12 +1,4 @@ ent-JediNtPDA = КПК стража клинка .desc = Черный, чтобы скрыть повреждения от неправильного использования светового меча. -ent-HeadOfSPPDA = КПК главы космической тюрьмы - .desc = Синий, чтобы скрыть пятна крови пассажира. -ent-SpacePrisonOfficerPDA = КПК офицера космической тюрьмы - .desc = Синий, чтобы скрыть пятна крови пассажира. -ent-SpacePrisonEngineerPDA = КПК инженера космической тюрьмы - .desc = Синий, чтобы скрыть пятна крови пассажира. -ent-SpacePrisonMedicPDA = КПК медика космической тюрьмы - .desc = Синий, чтобы скрыть пятна крови пассажира. ent-IAAPDA = КПК агента внутрених дел .desc = Корпорация и прибыль - лучшие друзья. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/misc/identification_cards.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/misc/identification_cards.ftl index f79621e331..5c98b8297b 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/misc/identification_cards.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/misc/identification_cards.ftl @@ -1,12 +1,4 @@ -ent-HeadOfSPIDCard = ID карта главы космической тюрьмы - .desc = { ent-IDCardStandard.desc } -ent-SpacePrisonOfficerIDCard = ID карта офицера космической тюрьмы - .desc = { ent-HeadOfSPIDCard.desc } -ent-SpacePrisonEngineerIDCard = ID карта инженера космической тюрьмы - .desc = { ent-HeadOfSPIDCard.desc } -ent-SpacePrisonMedicIDCard = ID карта медика космической тюрьмы - .desc = { ent-HeadOfSPIDCard.desc } ent-IAAIDCard = ID карта агента внутрених дел - .desc = { ent-HeadOfSPIDCard.desc } + .desc = { ent-PRISONIDCardHeadOfPrison.desc } ent-JediNtIDCard = ID карта стража клинка .desc = Карта, необходимая для доступа в различные области станции. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/misc/stamps.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/misc/stamps.ftl index e6521e38da..77b3219f60 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/misc/stamps.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/misc/stamps.ftl @@ -1,6 +1,3 @@ -ent-RubberStampHoSP = печать главы космической тюрьмы - .suffix = НЕ МАППИТЬ - .desc = { ent-RubberStampBase.desc } ent-RubberStampIAA = печать агента внутрених дел .suffix = НЕ МАППИТЬ .desc = { ent-RubberStampBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/weapons/melee/sword.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/weapons/melee/sword.ftl index ecff3faf8a..e69de29bb2 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/weapons/melee/sword.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/weapons/melee/sword.ftl @@ -1,2 +0,0 @@ -ent-HoSPSabre = сабля главы космической тюрьмы - .desc = Парадное оружие, принадлежащее главе космической тюрьмы. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/structures/storage/closets/lockers/lockers.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/structures/storage/closets/lockers/lockers.ftl index e95d2cbc52..6ee026ff60 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/structures/storage/closets/lockers/lockers.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/structures/storage/closets/lockers/lockers.ftl @@ -1,6 +1,2 @@ ent-LockerJediNt = шкаф стража клинка .desc = Арсенал моды каждого стража клинка. -ent-LockerSpacePrison = шкаф офицера космической тюрьмы - .desc = { ent-LockerBaseSecure.desc } -ent-LockerWardenOfSP = шкаф главы космической тюрьмы - .desc = { ent-LockerSpacePrison.desc } diff --git a/Resources/Locale/ru-RU/stories/job/department.ftl b/Resources/Locale/ru-RU/stories/job/department.ftl index 649180cf62..9e7e6e357e 100644 --- a/Resources/Locale/ru-RU/stories/job/department.ftl +++ b/Resources/Locale/ru-RU/stories/job/department.ftl @@ -1 +1 @@ -department-SpacePrison = Космическая Тюрьма +department-Prison = Космическая Тюрьма diff --git a/Resources/Locale/ru-RU/stories/job/job-names.ftl b/Resources/Locale/ru-RU/stories/job/job-names.ftl index a97699fafa..19b3949d26 100644 --- a/Resources/Locale/ru-RU/stories/job/job-names.ftl +++ b/Resources/Locale/ru-RU/stories/job/job-names.ftl @@ -1,11 +1,7 @@ -job-name-hosp = глава космической тюрьмы -job-name-space-prison-officer = офицер космической тюрьмы -job-name-space-prison-engineer = инженер космической тюрьмы -job-name-space-prison-medic = медик космической тюрьмы job-name-iaa = агент внутрених дел # Role timers - Make these alphabetical or I cut you -JobHeadOfSpacePrison = глава космической тюрьмы -JobSpacePrisonOfficer = офицер космической тюрьмы -JobSpacePrisonEngineer = инженер космической тюрьмы -JobSpacePrisonMedic = медик космической тюрьмы +JobHeadOfSpacePrison = глава тюрьмы +JobSpacePrisonOfficer = офицер тюрьмы +JobSpacePrisonEngineer = инженер тюрьмы +JobSpacePrisonMedic = медик тюрьмы JobIAA = агент внутрених дел diff --git a/Resources/Locale/ru-RU/stories/job/job-supervisors.ftl b/Resources/Locale/ru-RU/stories/job/job-supervisors.ftl index 80e329c127..e69de29bb2 100644 --- a/Resources/Locale/ru-RU/stories/job/job-supervisors.ftl +++ b/Resources/Locale/ru-RU/stories/job/job-supervisors.ftl @@ -1 +0,0 @@ -job-supervisors-hosp = главе космической тюрьмы diff --git a/Resources/Locale/ru-RU/stories/paper/stamp-component.ftl b/Resources/Locale/ru-RU/stories/paper/stamp-component.ftl index e2d91e8635..6dbfd365bd 100644 --- a/Resources/Locale/ru-RU/stories/paper/stamp-component.ftl +++ b/Resources/Locale/ru-RU/stories/paper/stamp-component.ftl @@ -1,3 +1,2 @@ -stamp-component-stamped-name-hosp = Глава космической тюрьмы stamp-component-stamped-name-iaa = Агент внутрених дел stamp-component-stamped-name-psychologist = Психолог diff --git a/Resources/Maps/Stories/Shuttles/prison.yml b/Resources/Maps/Stories/Shuttles/prison.yml new file mode 100644 index 0000000000..5a53c9c3f0 --- /dev/null +++ b/Resources/Maps/Stories/Shuttles/prison.yml @@ -0,0 +1,3912 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 36: FloorDarkMini + 37: FloorDarkMono + 41: FloorDarkPlastic + 98: FloorSteelCheckerDark + 115: FloorWhite + 128: Lattice + 129: Plating + 132: PlatingBurnt + 133: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: PRISON VRE-15 + - type: Transform + pos: -0.546875,-0.45312524 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: YgAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAJAAAAAAAJAAAAAAAKQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAJAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAJAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAJAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKQAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAJAAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAJAAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAJAAAAAAAKQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAhQAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAhAAAAAAAhQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAgQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: JQAAAAAAJQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAhAAAAAAAhQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAhAAAAAAAhQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAhAAAAAAAhQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAhAAAAAAAhQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: '#52B4E996' + id: BrickCornerOverlayNE + decals: + 0: 3,-12 + 4: 4,-14 + - node: + color: '#52B4E996' + id: BrickCornerOverlayNW + decals: + 1: 2,-12 + - node: + color: '#52B4E996' + id: BrickCornerOverlaySE + decals: + 8: 4,-18 + - node: + color: '#52B4E996' + id: BrickLineOverlayE + decals: + 3: 3,-13 + 5: 4,-15 + 6: 4,-16 + 7: 4,-17 + - node: + color: '#52B4E996' + id: BrickLineOverlayW + decals: + 2: 2,-13 + 9: 3,-17 + 10: 3,-16 + - node: + color: '#5268CC93' + id: CheckerNESW + decals: + 38: -2,3 + 39: -1,4 + - node: + color: '#5268CCFF' + id: CheckerNESW + decals: + 51: -3,2 + - node: + color: '#5268CC93' + id: CheckerNWSE + decals: + 40: 2,3 + 41: 1,4 + - node: + color: '#5268CCFF' + id: CheckerNWSE + decals: + 52: 3,2 + - node: + color: '#5268CC93' + id: FullTileOverlayGreyscale + decals: + 42: 0,5 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 13: 1,-14 + - node: + color: '#5268CC93' + id: HalfTileOverlayGreyscale + decals: + 43: -1,5 + 44: 1,5 + - node: + color: '#5268CC93' + id: HalfTileOverlayGreyscale180 + decals: + 45: -1,3 + 46: 0,3 + 47: 1,3 + - node: + color: '#5268CC93' + id: HalfTileOverlayGreyscale270 + decals: + 34: -3,5 + 35: -3,4 + 36: -3,3 + - node: + color: '#5268CC93' + id: HalfTileOverlayGreyscale90 + decals: + 32: 3,5 + 33: 3,4 + 37: 3,3 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 23: 0,-18 + - node: + color: '#52B4E996' + id: MiniTileInnerOverlayNE + decals: + 12: 3,-14 + - node: + color: '#52B4E996' + id: MiniTileInnerOverlaySW + decals: + 11: 3,-15 + - node: + color: '#5268CC93' + id: MiniTileLineOverlayS + decals: + 48: 0,2 + 49: -1,2 + 50: 1,2 + - node: + color: '#5268CC93' + id: QuarterTileOverlayGreyscale + decals: + 30: -2,6 + - node: + color: '#5268CC93' + id: QuarterTileOverlayGreyscale180 + decals: + 26: 2,2 + 27: 3,3 + - node: + color: '#5268CC93' + id: QuarterTileOverlayGreyscale270 + decals: + 24: -2,2 + 25: -3,3 + - node: + color: '#5268CC93' + id: QuarterTileOverlayGreyscale90 + decals: + 31: 2,6 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 22: 0,-17 + - node: + color: '#5268CC93' + id: ThreeQuarterTileOverlayGreyscale + decals: + 28: -3,6 + - node: + color: '#5268CC93' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 29: 3,6 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 18: 1,-16 + 19: 1,-17 + 21: 1,-18 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleE + decals: + 14: 0,-14 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleW + decals: + 15: 2,-14 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 16: -1,-16 + 17: -1,-17 + 20: -1,-18 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65309 + 0,-1: + 0: 57111 + -1,0: + 0: 60934 + 0,1: + 0: 3327 + -1,1: + 0: 1774 + 1: 4096 + 1,1: + 1: 4096 + 1,0: + 1: 8736 + -2,0: + 1: 34944 + -1,-1: + 0: 28172 + 1: 16 + -2,-4: + 1: 32836 + -2,-5: + 1: 17472 + -1,-4: + 0: 28667 + -1,-5: + 0: 48000 + 1: 96 + -1,-3: + 1: 16 + 0: 52230 + -1,-2: + 0: 52236 + 0,-4: + 0: 57339 + 0,-3: + 0: 30493 + 0,-2: + 0: 30487 + 0,-5: + 0: 47920 + 1: 192 + 1,-4: + 0: 273 + 1: 9284 + 1,-3: + 1: 16 + 1,-1: + 1: 16 + 1,-5: + 0: 4352 + 1: 17472 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 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 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: PrisonShuttle +- proto: AirAlarm + entities: + - uid: 592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + - type: DeviceList + devices: + - 507 + - 506 + - 541 + - 542 + - 599 + - 598 + - 543 + - 504 + - 505 + - 544 + - 601 + - 600 + - 610 + - 603 + - 602 + - 502 + - 503 + - 546 + - 545 + - 604 + - 605 + - 606 + - 564 + - 565 + - uid: 595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 1 + - type: DeviceList + devices: + - 607 + - 608 + - 609 + - 508 + - 509 + - 547 +- proto: AirCanister + entities: + - uid: 538 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 1 + - uid: 230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 1 + - uid: 399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 104 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 +- proto: BannerEngineering + entities: + - uid: 269 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 1 +- proto: BannerMedical + entities: + - uid: 268 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 1 +- proto: Bed + entities: + - uid: 195 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 450 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 451 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 452 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 453 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 +- proto: BedsheetOrange + entities: + - uid: 454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 1 + - uid: 455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 + - uid: 456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + - uid: 457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 +- proto: BedsheetWiz + entities: + - uid: 196 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 +- proto: BlastDoorBridgeOpen + entities: + - uid: 488 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 1 + - uid: 489 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 3 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 417 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1 + - uid: 421 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 422 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 423 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 425 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 426 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 428 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 431 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 433 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 434 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 436 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 437 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 438 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 439 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 441 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 444 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 445 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 447 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 1 + - uid: 449 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1 +- proto: CableHV + entities: + - uid: 224 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 370 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 386 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 387 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 389 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 396 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 +- proto: CableMV + entities: + - uid: 231 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 223 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 1 + - uid: 459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 1 + - uid: 460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-8.5 + parent: 1 + - uid: 461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 1 + - uid: 462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 1 + - uid: 463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 1 + - uid: 464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 1 + - uid: 465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 1 + - uid: 466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 1 + - uid: 467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 + - uid: 468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 1 + - uid: 469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 1 + - uid: 470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - uid: 471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 1 + - uid: 472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + - uid: 473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + - uid: 476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + - uid: 481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 +- proto: ClosetWallEmergency + entities: + - uid: 482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-10.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 483 + - 484 + - 485 + - 611 + - 612 + - uid: 613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-10.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 614 + - 615 + - 616 + - 617 + - 618 + - uid: 619 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 620 + - 621 + - 622 + - 623 + - 624 + - uid: 625 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 626 + - 627 + - 628 + - 629 + - 630 +- proto: ClothingHeadHelmetEVA + entities: + - uid: 611 + components: + - type: Transform + parent: 482 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 615 + components: + - type: Transform + parent: 613 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 621 + components: + - type: Transform + parent: 619 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 628 + components: + - type: Transform + parent: 625 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskGas + entities: + - uid: 483 + components: + - type: Transform + parent: 482 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 618 + components: + - type: Transform + parent: 613 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 624 + components: + - type: Transform + parent: 619 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 629 + components: + - type: Transform + parent: 625 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitEVAPrisoner + entities: + - uid: 484 + components: + - type: Transform + parent: 482 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 614 + components: + - type: Transform + parent: 613 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 620 + components: + - type: Transform + parent: 619 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 626 + components: + - type: Transform + parent: 625 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ExtendedEmergencyNitrogenTankFilled + entities: + - uid: 485 + components: + - type: Transform + parent: 482 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 617 + components: + - type: Transform + parent: 613 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 623 + components: + - type: Transform + parent: 619 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 627 + components: + - type: Transform + parent: 625 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ExtendedEmergencyOxygenTankFilled + entities: + - uid: 612 + components: + - type: Transform + parent: 482 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 616 + components: + - type: Transform + parent: 613 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 622 + components: + - type: Transform + parent: 619 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 630 + components: + - type: Transform + parent: 625 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FaxMachineBase + entities: + - uid: 283 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: FireAlarm + entities: + - uid: 593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - type: DeviceList + devices: + - 507 + - 506 + - 541 + - 542 + - 599 + - 598 + - 543 + - 504 + - 505 + - 544 + - 601 + - 600 + - 610 + - 603 + - 602 + - 502 + - 503 + - 546 + - 545 + - 604 + - 605 + - 606 + - 564 + - 565 + - uid: 594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 1 + - type: DeviceList + devices: + - 607 + - 608 + - 609 + - 508 + - 509 + - 547 +- proto: Firelock + entities: + - uid: 610 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 +- proto: FirelockEdge + entities: + - uid: 598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 + - uid: 599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 + - uid: 600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 + - uid: 601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 + - uid: 604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 + - uid: 605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 + - uid: 606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 + - uid: 607 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 595 + - 594 + - uid: 608 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 595 + - 594 + - uid: 609 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 595 + - 594 +- proto: FirelockGlass + entities: + - uid: 106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 1 + - uid: 107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 1 + - uid: 602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 + - uid: 603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 +- proto: GasDualPortVentPump + entities: + - uid: 501 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 1 +- proto: GasPipeBend + entities: + - uid: 510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 1 + - uid: 549 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 + - uid: 557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 1 + - uid: 562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 1 + - uid: 568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - uid: 569 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 579 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 1 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 582 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + - uid: 589 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 + - uid: 590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-13.5 + parent: 1 +- proto: GasPipeFourway + entities: + - uid: 511 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1 + - uid: 520 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 521 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 527 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 +- proto: GasPipeStraight + entities: + - uid: 512 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 1 + - uid: 514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 1 + - uid: 515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 1 + - uid: 516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 1 + - uid: 517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 1 + - uid: 518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 1 + - uid: 519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 1 + - uid: 522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + - uid: 524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 + - uid: 525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + - uid: 526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 1 + - uid: 528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 530 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 532 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 533 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 534 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 1 + - uid: 550 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1 + - uid: 551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - uid: 552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + - uid: 553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + - uid: 559 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 560 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 + - uid: 561 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 1 + - uid: 566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + - uid: 570 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 571 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 572 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 573 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 574 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 575 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 584 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 585 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 587 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 +- proto: GasPipeTJunction + entities: + - uid: 548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 1 + - uid: 555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + - uid: 556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 + - uid: 558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + - uid: 576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 +- proto: GasPort + entities: + - uid: 536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-15.5 + parent: 1 +- proto: GasVentPump + entities: + - uid: 500 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 + - uid: 503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 + - uid: 504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 + - uid: 505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 + - uid: 506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 + - uid: 507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 + - uid: 508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 595 + - 594 + - uid: 509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 595 + - 594 +- proto: GasVentScrubber + entities: + - uid: 541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 + - uid: 542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 + - uid: 543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 + - uid: 544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 + - uid: 545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 + - uid: 546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 + - uid: 547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 595 + - 594 + - uid: 564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 + - uid: 565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 592 + - 593 +- proto: GeneratorBasic15kW + entities: + - uid: 65 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 1 + - uid: 495 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 73 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 1 +- proto: Grille + entities: + - uid: 24 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 1 + - uid: 217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 1 +- proto: GunSafeDisabler + entities: + - uid: 493 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - type: AccessReader + access: + - - Security +- proto: GunSafePistolMk58 + entities: + - uid: 492 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - type: AccessReader + access: + - - Security +- proto: GunSafeRifleLecter + entities: + - uid: 494 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - type: AccessReader + access: + - - Security +- proto: Gyroscope + entities: + - uid: 499 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 1 +- proto: LockerWallMedicalDoctorFilled + entities: + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-16.5 + parent: 1 +- proto: LuxuryPen + entities: + - uid: 632 + components: + - type: Transform + pos: 2.2103252,0.15872943 + parent: 1 +- proto: MedicalBed + entities: + - uid: 270 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 1 +- proto: NitrogenCanister + entities: + - uid: 540 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 +- proto: OxygenCanister + entities: + - uid: 539 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 1 +- proto: PlushieSpaceLizard + entities: + - uid: 591 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 1 +- proto: PosterContrabandMissingSpacepen + entities: + - uid: 267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 1 +- proto: PottedPlantRandomPlastic + entities: + - uid: 108 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 284 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-17.5 + parent: 1 + - uid: 337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + - uid: 346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 1 + - uid: 348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + - uid: 349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - uid: 350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 +- proto: PoweredlightSodium + entities: + - uid: 277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 1 + - uid: 278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 + - uid: 345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 1 + - uid: 352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 +- proto: PRISONAirlockGlassLocked + entities: + - uid: 164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 +- proto: PRISONAirlockGlassLockedHeadOfPrison + entities: + - uid: 200 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: PRISONAirlockLocked + entities: + - uid: 162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 1 +- proto: PRISONAirlockLockedEng + entities: + - uid: 2 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 1 +- proto: PRISONAirlockLockedMed + entities: + - uid: 105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 1 +- proto: PRISONAirlockShuttleLocked + entities: + - uid: 218 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 1 +- proto: PRISONClothingHeadHatCapHeadOfPrison + entities: + - uid: 194 + components: + - type: Transform + pos: 2.9807463,-0.24409425 + parent: 1 +- proto: PRISONComputerShuttle + entities: + - uid: 150 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 +- proto: PRISONFlag + entities: + - uid: 338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 +- proto: PRISONShuttleWindow + entities: + - uid: 10 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 1 +- proto: PRISONShuttleWindowDiagonal + entities: + - uid: 137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 1 +- proto: PRISONVendingMachine + entities: + - uid: 187 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 +- proto: PRISONVendingMachineDrobe + entities: + - uid: 188 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 +- proto: PRISONWallShuttle + entities: + - uid: 15 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + - uid: 34 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 + - uid: 47 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 50 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 51 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 52 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 58 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - uid: 59 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-17.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-18.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 80 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 81 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 1 + - uid: 85 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 1 + - uid: 86 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 1 + - uid: 91 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 1 + - uid: 95 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-13.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-15.5 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-16.5 + parent: 1 + - uid: 99 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 1 + - uid: 100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 1 + - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-15.5 + parent: 1 + - uid: 102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-16.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-18.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-18.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 +- proto: PRISONWallShuttleDiagonal + entities: + - uid: 54 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-18.5 + parent: 1 + - uid: 64 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 1 + - uid: 87 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 1 + - uid: 90 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + - uid: 171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 1 + - uid: 172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-18.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-14.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 1 + - uid: 212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-14.5 + parent: 1 + - uid: 213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 1 +- proto: SignalButtonBridge + entities: + - uid: 491 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 +- proto: SignPrison + entities: + - uid: 165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 222 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 221 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 398 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 +- proto: TableGlass + entities: + - uid: 273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 197 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 +- proto: Thruster + entities: + - uid: 66 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-17.5 + parent: 1 + - uid: 70 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-16.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-15.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-17.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 1 + - uid: 76 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-15.5 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + - uid: 114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 +- proto: VendingMachineMedical + entities: + - uid: 266 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 +- proto: VendingMachineMediDrobe + entities: + - uid: 265 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 151 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 1 +- proto: WallmountTelescreen + entities: + - uid: 280 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 +- proto: WardrobePrisonFilled + entities: + - uid: 189 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 +- proto: WeaponCapacitorRecharger + entities: + - uid: 199 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 +- proto: WindoorSecureExternalLocked + entities: + - uid: 26 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 12 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 44 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - uid: 159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 +... diff --git a/Resources/Maps/Stories/prison.yml b/Resources/Maps/Stories/prison.yml new file mode 100644 index 0000000000..2ecf1bf571 --- /dev/null +++ b/Resources/Maps/Stories/prison.yml @@ -0,0 +1,24588 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 43: FloorAsphalt + 56: FloorAsteroidSand + 58: FloorAsteroidSandRed + 55: FloorAsteroidSandUnvariantized + 59: FloorAsteroidTile + 2: FloorAstroGrass + 60: FloorBlue + 20: FloorBlueCircuit + 54: FloorBoxing + 12: FloorBrokenWood + 1: FloorCarpetClown + 10: FloorCarpetOffice + 22: FloorClown + 32: FloorDark + 5: FloorDarkDiagonal + 30: FloorDarkDiagonalMini + 4: FloorDarkHerringbone + 28: FloorDarkMini + 29: FloorDarkMono + 17: FloorDarkOffset + 9: FloorDarkPavement + 3: FloorDarkPavementVertical + 18: FloorDarkPlastic + 52: FloorDirt + 37: FloorFreezer + 40: FloorGold + 14: FloorGrass + 16: FloorGrassJungle + 49: FloorGrayConcrete + 8: FloorLaundry + 51: FloorMetalDiamond + 31: FloorMiningLight + 53: FloorMowedAstroGrass + 27: FloorOldConcrete + 35: FloorPlanetDirt + 11: FloorPlanetGrass + 23: FloorPlastic + 39: FloorRGlass + 38: FloorReinforced + 48: FloorRockVault + 26: FloorShuttleRed + 44: FloorSteel + 41: FloorSteelBurnt + 6: FloorSteelCheckerDark + 21: FloorSteelCheckerLight + 42: FloorSteelDamaged + 24: FloorSteelDirty + 25: FloorSteelLime + 19: FloorTechMaint3 + 36: FloorWebTile + 7: FloorWhite + 46: FloorWhiteDiagonal + 47: FloorWhiteMini + 45: FloorWhitePlastic + 13: FloorWood + 34: FloorWoodLarge + 33: FloorWoodTile + 128: Lattice + 15: Plating + 57: PlatingAsteroid + 50: PlatingBurnt +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 2 + components: + - type: MetaData + name: Prison X-12 + - type: Transform + pos: -6.1248283,24.663872 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADwAAAAAADwAAAAAADwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADwAAAAAADwAAAAAADwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAIAAAAAAAIAAAAAAAMAAAAAAAIAAAAAAAIAAAAAAADwAAAAAADwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAIAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAIAAAAAAADwAAAAAAIAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAIAAAAAAADwAAAAAAMAAAAAAADwAAAAAAIAAAAAAADwAAAAAAIAAAAAAAHAAAAAAAHAAAAAAADwAAAAAADwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAIAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAIAAAAAAADwAAAAAAIAAAAAAAHgAAAAAAHgAAAAAADwAAAAAADwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAIAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAIAAAAAAADwAAAAAAIAAAAAAAHAAAAAAAHAAAAAAADwAAAAAADwAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAAHAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHAAAAAAAAwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAHAAAAAAAAwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAwAAAAAAAwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAALwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAMQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAwAAAAAAAwAAAAAAIAAAAAAALQAAAAAALgAAAAAALwAAAAAALgAAAAAALQAAAAAAIAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADwAAAAAADwAAAAAAMgAAAAAAMgAAAAAAAwAAAAAAAwAAAAAAIAAAAAAALQAAAAAALgAAAAAALwAAAAAALgAAAAAALQAAAAAAIAAAAAAAMQAAAAAAMQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAAwAAAAAAAwAAAAAAIAAAAAAALQAAAAAALgAAAAAALwAAAAAALgAAAAAALQAAAAAAIAAAAAAAMQAAAAAAMQAAAAAAMwAAAAAADwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAAwAAAAAAAwAAAAAAIAAAAAAALQAAAAAALgAAAAAALwAAAAAALgAAAAAALQAAAAAAIAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADwAAAAAABQAAAAAABQAAAAAAIAAAAAAALQAAAAAALgAAAAAALwAAAAAALgAAAAAALQAAAAAAIAAAAAAAMQAAAAAADwAAAAAAMgAAAAAAMgAAAAAADwAAAAAAMgAAAAAAMgAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: MAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADwAAAAAAIAAAAAAACwAAAAAACwAAAAAADgAAAAAAIAAAAAAAEAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAIAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAIAAAAAAAJwAAAAAANAAAAAAANAAAAAAANAAAAAAANQAAAAAANAAAAAAANAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAJwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAJwAAAAAAIAAAAAAAAgAAAAAAAgAAAAAANQAAAAAANAAAAAAANAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAANQAAAAAANQAAAAAANQAAAAAANAAAAAAANAAAAAAANAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAAAgAAAAAAAgAAAAAANQAAAAAAAgAAAAAANAAAAAAANAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAIAAAAAAAAgAAAAAAAgAAAAAANQAAAAAAAgAAAAAANAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAIAAAAAAAAgAAAAAAAgAAAAAANQAAAAAAAgAAAAAANAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAIAAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAACQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAAAgAAAAAAAgAAAAAANAAAAAAANQAAAAAANAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAACQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAANAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAACQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAACQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAACQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAAIAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: MQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAIAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAADwAAAAAAMQAAAAAADwAAAAAADwAAAAAADwAAAAAAMQAAAAAADwAAAAAAIAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAIAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAIAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAIAAAAAAAIAAAAAAAHAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAIAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAIAAAAAAAIAAAAAAAHgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAACQAAAAAACQAAAAAAIAAAAAAAHAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAwAAAAAABgAAAAAABgAAAAAABgAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAAAwAAAAAABAAAAAAABAAAAAAABgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAAAwAAAAAAHQAAAAAABAAAAAAABgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAAAwAAAAAAHQAAAAAABAAAAAAABgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAAAwAAAAAABQAAAAAABQAAAAAAHgAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAABQAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: DwAAAAAADwAAAAAAEwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAADwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAEwAAAAAAEwAAAAAADwAAAAAAIAAAAAAAEwAAAAAAEwAAAAAADwAAAAAABgAAAAAADwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADwAAAAAAEwAAAAAADwAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAABgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAADwAAAAAADwAAAAAAIAAAAAAABgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAANAAAAAAANAAAAAAANQAAAAAANAAAAAAANAAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAAEwAAAAAADwAAAAAADwAAAAAABgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAANAAAAAAANAAAAAAANQAAAAAAAgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAABgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAANAAAAAAANAAAAAAANQAAAAAANQAAAAAAIAAAAAAADwAAAAAADwAAAAAAIAAAAAAAEwAAAAAADwAAAAAADwAAAAAABgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAANAAAAAAANAAAAAAAAgAAAAAANQAAAAAAAgAAAAAAIAAAAAAADwAAAAAADwAAAAAAIAAAAAAAEwAAAAAADwAAAAAADwAAAAAABgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAANAAAAAAAAgAAAAAANQAAAAAAAgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAEwAAAAAADwAAAAAAIAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAANAAAAAAAAgAAAAAANQAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAANAAAAAAANAAAAAAANQAAAAAANQAAAAAANQAAAAAANgAAAAAANgAAAAAANgAAAAAAMQAAAAAAIAAAAAAADwAAAAAAEwAAAAAADwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAANAAAAAAANAAAAAAANQAAAAAANAAAAAAAAgAAAAAANgAAAAAANgAAAAAANgAAAAAAMQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANgAAAAAANgAAAAAANgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAABQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAwAAAAAAAwAAAAAANgAAAAAANgAAAAAANgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAABQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAABQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: DwAAAAAAIAAAAAAAIAAAAAAAFgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFgAAAAAAKQAAAAAAFwAAAAAAIAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAIAAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFwAAAAAAGAAAAAAAIAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAIAAAAAAAIAAAAAAADwAAAAAAIAAAAAAAIAAAAAAAFwAAAAAAKQAAAAAAGAAAAAAAFwAAAAAAKgAAAAAAGAAAAAAAFwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAGgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAGAAAAAAAKgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAKQAAAAAAGAAAAAAAIAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAIAAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAIAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAIAAAAAAAEwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAIAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAIAAAAAAAEwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAOgAAAAAAOQAAAAAAOQAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAADwAAAAAAIAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAIAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAIAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAOAAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAADwAAAAAAIAAAAAAANwAAAAAANwAAAAAANwAAAAAAOAAAAAAAOQAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: EAAAAAAACwAAAAAAIAAAAAAAEwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEwAAAAAADwAAAAAAEwAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAADwAAAAAACQAAAAAACQAAAAAAEwAAAAAADwAAAAAAEwAAAAAAGwAAAAAAGwAAAAAAIAAAAAAADwAAAAAAAwAAAAAAIAAAAAAAIwAAAAAAIwAAAAAAIAAAAAAADwAAAAAADwAAAAAAEwAAAAAACQAAAAAADwAAAAAADwAAAAAADwAAAAAAGwAAAAAAGwAAAAAAIAAAAAAADwAAAAAAAwAAAAAAIAAAAAAAIwAAAAAAIwAAAAAAIAAAAAAAEwAAAAAADwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAAAwAAAAAAIAAAAAAAIwAAAAAAIwAAAAAAIAAAAAAADwAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAAAEwAAAAAAGwAAAAAAGwAAAAAAIAAAAAAAJAAAAAAAAwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACQAAAAAAEwAAAAAACQAAAAAACQAAAAAADwAAAAAAGwAAAAAAGwAAAAAAIAAAAAAADwAAAAAAAwAAAAAAIAAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAACQAAAAAAEwAAAAAAEwAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAEwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAAEwAAAAAAIAAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAKwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAEwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAKwAAAAAAIAAAAAAAKwAAAAAAIAAAAAAAIAAAAAAAEwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFwAAAAAAGAAAAAAAIAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAIAAAAAAAEwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAFgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFgAAAAAAGAAAAAAAFwAAAAAAIAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAIAAAAAAADwAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAADwAAAAAADwAAAAAADwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAADwAAAAAADwAAAAAAOAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAADwAAAAAADwAAAAAAOAAAAAAADwAAAAAAMQAAAAAADwAAAAAADwAAAAAADwAAAAAAMQAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAIAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAgAAAAAAIAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAgAAAAAAIAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAABgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAABgAAAAAABAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAABgAAAAAABAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAHgAAAAAABQAAAAAABQAAAAAAHgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHgAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIAAAAAAADwAAAAAAEwAAAAAADwAAAAAADwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIAAAAAAAEwAAAAAAEwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgAAAAAAAgAAAAAAADwAAAAAAEwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAIAAAAAAADwAAAAAAEwAAAAAAEwAAAAAADwAAAAAAEwAAAAAADwAAAAAAEwAAAAAADwAAAAAADwAAAAAADwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAIAAAAAAAEwAAAAAADwAAAAAADwAAAAAAEwAAAAAADwAAAAAADwAAAAAAEwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAIAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIAAAAAAAPAAAAAAAPAAAAAAACAAAAAAAPAAAAAAAPAAAAAAADwAAAAAAMQAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAMQAAAAAANgAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIAAAAAAAPAAAAAAAPAAAAAAACAAAAAAAPAAAAAAAPAAAAAAADwAAAAAAMQAAAAAANgAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAMQAAAAAANgAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAADwAAAAAAGgAAAAAAGgAAAAAAIAAAAAAADwAAAAAADwAAAAAAPAAAAAAADwAAAAAADwAAAAAADwAAAAAAMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAADwAAAAAAGgAAAAAAGgAAAAAAIAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: MgAAAAAADwAAAAAADwAAAAAAIAAAAAAANwAAAAAANwAAAAAANwAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAANwAAAAAANwAAAAAAOAAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAANwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: HAAAAAAAHAAAAAAAIAAAAAAALQAAAAAALgAAAAAALwAAAAAALgAAAAAALQAAAAAAIAAAAAAAMgAAAAAAMgAAAAAADwAAAAAADwAAAAAAMgAAAAAAMgAAAAAADwAAAAAAHAAAAAAAHAAAAAAAIAAAAAAAIAAAAAAALQAAAAAALwAAAAAALQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAAHAAAAAAAHAAAAAAAIAAAAAAALQAAAAAALQAAAAAALwAAAAAALQAAAAAALQAAAAAAIAAAAAAALgAAAAAALgAAAAAALgAAAAAAIAAAAAAANwAAAAAANwAAAAAANwAAAAAAHAAAAAAAHAAAAAAAIAAAAAAALQAAAAAALQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALgAAAAAALgAAAAAALgAAAAAAIAAAAAAANwAAAAAANwAAAAAANwAAAAAABQAAAAAABQAAAAAAIAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAIAAAAAAALgAAAAAALgAAAAAALgAAAAAAIAAAAAAANwAAAAAANwAAAAAANwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAANwAAAAAANwAAAAAANwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAANwAAAAAANwAAAAAAOQAAAAAAJwAAAAAAIAAAAAAAJwAAAAAAIAAAAAAAJwAAAAAAIAAAAAAAJwAAAAAAIAAAAAAAJwAAAAAAIAAAAAAAJwAAAAAAIAAAAAAAIAAAAAAANwAAAAAANwAAAAAAOQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAANwAAAAAANwAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAANwAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: BAAAAAAABAAAAAAABQAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAAHAAAAAAABAAAAAAABAAAAAAABQAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAAHAAAAAAABQAAAAAABQAAAAAAHgAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAAHAAAAAAABgAAAAAABgAAAAAABgAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAAHAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAABQAAAAAABQAAAAAADwAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAIAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIAAAAAAADwAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAJwAAAAAAIAAAAAAAJwAAAAAAIAAAAAAAJwAAAAAAIAAAAAAAJwAAAAAAIAAAAAAAJwAAAAAAIAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAADwAAAAAAEgAAAAAADwAAAAAADwAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAABQAAAAAABAAAAAAABAAAAAAABQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAABQAAAAAABAAAAAAABAAAAAAABQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAHgAAAAAABQAAAAAABQAAAAAAHgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAMAAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAADwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAADwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAADwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAADwAAAAAADwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAMAAAAAAAMAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEwAAAAAADwAAAAAAEwAAAAAADwAAAAAADwAAAAAAMAAAAAAAMAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEwAAAAAADwAAAAAADwAAAAAAJQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAMAAAAAAAMAAAAAAADwAAAAAADwAAAAAADwAAAAAAEwAAAAAAEwAAAAAADwAAAAAAIAAAAAAAJQAAAAAAJQAAAAAAIAAAAAAACAAAAAAADwAAAAAADwAAAAAADwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAACAAAAAAADwAAAAAADwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAA + version: 6 + -2,-2: + ind: -2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAADwAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAADwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEwAAAAAAEwAAAAAADwAAAAAADwAAAAAADwAAAAAAEwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADwAAAAAADwAAAAAAEwAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADwAAAAAAEwAAAAAAEwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADwAAAAAAIAAAAAAACwAAAAAAEAAAAAAADgAAAAAAIAAAAAAACwAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEwAAAAAADwAAAAAADwAAAAAADwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEwAAAAAAEwAAAAAADwAAAAAADwAAAAAAEwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAADwAAAAAAAAAAAAAAgAAAAAAADwAAAAAADwAAAAAAEwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACQAAAAAAEwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgAAAAAAAgAAAAAAADwAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAACQAAAAAAEwAAAAAADwAAAAAAEwAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAAgAAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAEwAAAAAACQAAAAAAEwAAAAAADwAAAAAAEwAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAADwAAAAAADwAAAAAADgAAAAAACwAAAAAAIAAAAAAADwAAAAAADwAAAAAAEwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: EwAAAAAADwAAAAAADwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAJAAAAAAADwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAADwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAJAAAAAAADwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAADwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAADwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAADwAAAAAADwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: DwAAAAAAEwAAAAAAEwAAAAAAIAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAEwAAAAAAIAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAIAAAAAAAEwAAAAAAIAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAADwAAAAAAIAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAOAAAAAAAOAAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAOAAAAAAAOQAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAEwAAAAAADwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAADwAAAAAADwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAADwAAAAAADwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAEwAAAAAADwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: BecomesStation + id: Prison + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 982: -1.4630022,-11.958401 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 983: 0.8026228,-6.6302757 + - node: + color: '#FFFFFFFF' + id: Basalt7 + decals: + 984: 1.2088728,-11.911526 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 728: -20,14 + 729: -18,14 + 730: -17,13 + 731: -16,13 + 732: -21,13 + 733: -22,13 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 734: -19,14 + 735: -20,13 + 736: -19,13 + 737: -18,13 + 738: -22,14 + 739: -21,14 + 740: -17,14 + 741: -16,14 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 727: -19,17 + - node: + color: '#334E6DC8' + id: BrickCornerOverlayNE + decals: + 45: 12,24 + 71: -3,19 + 139: 9,5 + 153: 13,5 + - node: + color: '#334E6DFF' + id: BrickCornerOverlayNE + decals: + 179: 17,-4 + 710: -3,14 + - node: + color: '#9FED58FF' + id: BrickCornerOverlayNE + decals: + 154: 17,-9 + - node: + color: '#334E6DC8' + id: BrickCornerOverlayNW + decals: + 70: -6,19 + - node: + color: '#334E6DFF' + id: BrickCornerOverlayNW + decals: + 94: -22,9 + 174: 15,-4 + 719: -12,14 + - node: + color: '#571212FF' + id: BrickCornerOverlayNW + decals: + 188: 19,-4 + - node: + color: '#9FED58FF' + id: BrickCornerOverlayNW + decals: + 155: 15,-9 + - node: + color: '#334E6DC8' + id: BrickCornerOverlaySE + decals: + 46: 12,22 + 74: -3,16 + 140: 9,-7 + - node: + color: '#334E6DFF' + id: BrickCornerOverlaySE + decals: + 176: 17,-7 + 709: -3,11 + - node: + color: '#571212FF' + id: BrickCornerOverlaySE + decals: + 191: 20,-7 + - node: + color: '#334E6DC8' + id: BrickCornerOverlaySW + decals: + 65: -11,22 + 75: -6,16 + - node: + color: '#334E6DFF' + id: BrickCornerOverlaySW + decals: + 89: -22,7 + 175: 15,-7 + 700: -12,11 + - node: + color: '#571212FF' + id: BrickCornerOverlaySW + decals: + 190: 19,-7 + - node: + color: '#571212FF' + id: BrickEndOverlayE + decals: + 204: 29,-4 + - node: + color: '#334E67FF' + id: BrickLineOverlayE + decals: + 596: 11,22 + 597: 11,23 + 598: 11,24 + 1668: 1,7 + 1695: 18,9 + 1696: 18,8 + - node: + color: '#334E6DC8' + id: BrickLineOverlayE + decals: + 47: 12,23 + 76: -3,17 + 77: -3,18 + 141: 9,-6 + 147: 9,-3 + 148: 9,-2 + 149: 9,4 + 150: 13,3 + 151: 13,2 + 152: 13,4 + - node: + color: '#334E6DFF' + id: BrickLineOverlayE + decals: + 173: 17,-5 + 177: 17,-6 + 609: 1,21 + 711: -3,13 + 712: -3,12 + - node: + color: '#571212FF' + id: BrickLineOverlayE + decals: + 192: 20,-5 + 268: 20,-6 + - node: + color: '#9FED58FF' + id: BrickLineOverlayE + decals: + 165: 17,-10 + 166: 17,-11 + 167: 17,-12 + 168: 17,-13 + 169: 17,-14 + 170: 17,-15 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayE + decals: + 142: 9,-5 + 143: 9,-4 + 144: 9,-1 + 145: 9,2 + 146: 9,3 + - node: + color: '#334E67FF' + id: BrickLineOverlayN + decals: + 593: -11,24 + 594: -10,24 + 595: -9,24 + 1643: -17,9 + 1644: -15,9 + 1697: 3,9 + 1698: 2,9 + 1699: -2,9 + - node: + color: '#334E6DC8' + id: BrickLineOverlayN + decals: + 28: -8,24 + 29: -7,24 + 30: -6,24 + 31: 0,24 + 32: 1,24 + 33: 3,24 + 34: 5,24 + 35: 6,24 + 36: 6,24 + 37: 8,24 + 38: 10,24 + 39: 10,24 + 40: 11,24 + 41: 9,24 + 42: 7,24 + 43: 4,24 + 44: 2,24 + 78: -4,19 + 79: -5,19 + 85: -3,9 + 86: -5,9 + 87: -4,9 + 88: 4,9 + 121: 18,9 + 122: 17,9 + 123: 16,9 + 124: 15,9 + 125: 15,9 + 126: 14,9 + 127: 13,9 + 128: 12,9 + 129: 11,9 + 130: 10,9 + 131: 9,9 + 132: 8,9 + 133: 7,9 + 134: 6,9 + - node: + color: '#334E6DFF' + id: BrickLineOverlayN + decals: + 95: -21,9 + 96: -16,9 + 97: -14,9 + 98: -13,9 + 99: -12,9 + 100: -11,9 + 110: -10,9 + 111: -9,9 + 112: -8,9 + 113: -8,9 + 114: -7,9 + 115: -6,9 + 180: 16,-4 + 527: -5,24 + 528: -4,24 + 529: -3,24 + 530: -2,24 + 531: -1,24 + 713: -4,14 + 714: -5,14 + 715: -7,14 + 716: -8,14 + 717: -9,14 + 718: -11,14 + - node: + color: '#52B4E996' + id: BrickLineOverlayN + decals: + 135: 5,9 + - node: + color: '#571212FF' + id: BrickLineOverlayN + decals: + 195: 20,-4 + 196: 21,-4 + 197: 22,-4 + 198: 23,-4 + 199: 24,-4 + 200: 25,-4 + 201: 26,-4 + 202: 27,-4 + 203: 28,-4 + - node: + color: '#9FED58FF' + id: BrickLineOverlayN + decals: + 158: 9,-12 + 159: 10,-12 + 160: 11,-12 + 161: 13,-12 + 162: 12,-12 + 163: 16,-9 + 164: 14,-12 + - node: + color: '#FFA647FF' + id: BrickLineOverlayN + decals: + 211: -9,5 + 213: -9,-1 + - node: + color: '#334E67FF' + id: BrickLineOverlayS + decals: + 1637: -22,8 + 1638: -21,8 + 1639: -20,8 + 1640: -19,8 + 1641: -18,8 + 1642: -17,8 + 1645: -16,8 + 1646: -15,8 + 1647: -14,8 + 1648: -13,8 + 1649: -13,8 + 1650: -12,8 + 1651: -12,8 + 1652: -11,8 + 1653: -11,8 + 1654: -10,8 + 1655: -10,8 + 1656: -10,8 + 1657: -9,8 + 1658: -9,8 + 1659: -8,8 + 1660: -7,8 + 1661: -5,8 + 1662: -4,8 + 1663: -4,8 + 1664: -3,8 + 1665: -3,8 + 1666: -2,8 + 1669: 2,8 + 1670: 2,8 + 1671: 4,8 + 1672: 4,8 + 1673: 5,8 + 1674: 3,8 + 1675: 7,8 + 1676: 7,8 + 1677: 8,8 + 1678: 8,8 + 1679: 9,8 + 1680: 9,8 + 1681: 9,8 + 1682: 10,8 + 1683: 10,8 + 1684: 12,8 + 1685: 13,8 + 1686: 13,8 + 1687: 15,8 + 1688: 15,8 + 1689: 16,8 + 1690: 17,8 + 1691: 17,8 + 1692: 17,8 + 1693: 18,8 + 1694: 18,8 + - node: + color: '#334E6DC8' + id: BrickLineOverlayS + decals: + 48: 11,22 + 49: 10,22 + 50: 9,22 + 51: 8,22 + 52: 7,22 + 53: 6,22 + 54: 4,22 + 55: 3,22 + 56: 2,22 + 57: -3,22 + 58: -5,22 + 59: -5,22 + 60: -6,22 + 61: -7,22 + 62: -8,22 + 63: -9,22 + 64: -10,22 + 72: -5,16 + 73: -4,16 + 247: 5,22 + - node: + color: '#334E6DFF' + id: BrickLineOverlayS + decals: + 90: -21,7 + 91: -20,7 + 92: -19,7 + 101: -18,7 + 102: -16,7 + 103: -14,7 + 104: -13,7 + 105: -12,7 + 106: -12,7 + 107: -11,7 + 108: -10,7 + 109: -9,7 + 116: -4,7 + 117: -3,7 + 118: 4,7 + 119: 12,8 + 120: 16,8 + 241: 10,7 + 242: 9,7 + 243: 18,8 + 526: -4,22 + 607: -2,22 + 701: -11,11 + 702: -10,11 + 703: -9,11 + 704: -8,11 + 705: -7,11 + 706: -6,11 + 707: -5,11 + 708: -4,11 + - node: + color: '#571212FF' + id: BrickLineOverlayS + decals: + 193: 21,-4 + 194: 22,-4 + 205: 28,-4 + 206: 27,-4 + 207: 25,-4 + 208: 26,-4 + 209: 24,-4 + 210: 23,-4 + - node: + color: '#9FED58FF' + id: BrickLineOverlayS + decals: + 171: 10,-15 + 172: 14,-15 + - node: + color: '#FFA647FF' + id: BrickLineOverlayS + decals: + 212: -9,-4 + - node: + color: '#334E67FF' + id: BrickLineOverlayW + decals: + 1667: -1,7 + - node: + color: '#334E6DC8' + id: BrickLineOverlayW + decals: + 66: -11,23 + 67: -11,24 + 68: -6,18 + 69: -6,17 + 80: -2,14 + 81: -2,13 + 82: -2,12 + 83: -2,11 + 84: -2,10 + 136: -2,6 + 137: -2,5 + 138: -2,5 + - node: + color: '#334E6DFF' + id: BrickLineOverlayW + decals: + 93: -22,8 + 178: 15,-6 + 181: 15,-5 + 608: -1,21 + - node: + color: '#571212FF' + id: BrickLineOverlayW + decals: + 189: 19,-5 + 269: 19,-6 + - node: + color: '#9FED58FF' + id: BrickLineOverlayW + decals: + 156: 15,-10 + 157: 15,-11 + - node: + color: '#96DAFFFF' + id: BrickTileWhiteCornerNe + decals: + 743: 7,16 + - node: + color: '#96DAFFFF' + id: BrickTileWhiteCornerNw + decals: + 742: 3,16 + - node: + color: '#96DAFFFF' + id: BrickTileWhiteCornerSe + decals: + 744: 7,11 + - node: + color: '#96DAFFFF' + id: BrickTileWhiteCornerSw + decals: + 745: 3,11 + - node: + color: '#96DAFFFF' + id: BrickTileWhiteLineE + decals: + 750: 7,15 + 751: 7,14 + 752: 7,13 + 753: 7,12 + - node: + color: '#96DAFFFF' + id: BrickTileWhiteLineW + decals: + 746: 3,12 + 747: 3,13 + 748: 3,14 + 749: 3,15 + - node: + color: '#C6FF91FF' + id: BushCOne + decals: + 235: -24.193724,8.651961 + - node: + color: '#C6FF91FF' + id: BushCThree + decals: + 229: 11.54909,-10.077993 + 230: 10.043818,-9.458524 + 231: 13.319997,-9.0824175 + - node: + color: '#C6FF91FF' + id: BushDOne + decals: + 222: 15.738039,-16.009346 + 223: 16.800585,-17.115541 + - node: + color: '#C6FF91FF' + id: Bushb2 + decals: + 219: 13.174347,-17.181913 + 220: 14.918995,-16.960674 + 221: 17.13263,-15.965098 + - node: + color: '#9FED58FF' + id: Bushe3 + decals: + 6: -10.303516,20.854204 + - node: + color: '#9FED58FF' + id: Bushe4 + decals: + 12: -3.6626148,20.986948 + - node: + color: '#C6FF91FF' + id: Bushe4 + decals: + 232: 9.645366,-10.210736 + 233: -23.529633,9.094439 + - node: + color: '#C6FF91FF' + id: Bushf1 + decals: + 217: 12.200348,-15.832355 + - node: + color: '#9FED58FF' + id: Bushh2 + decals: + 13: -3.2346468,20.883703 + - node: + color: '#9FED58FF' + id: Bushh3 + decals: + 5: -9.875546,20.9132 + - node: + color: '#9FED58FF' + id: Bushi2 + decals: + 2: -8.872033,21.045944 + 3: -8.488336,20.809956 + - node: + color: '#9FED58FF' + id: Bushk1 + decals: + 1: -10.864302,20.972198 + 4: -9.388547,20.868954 + - node: + color: '#C6FF91FF' + id: Bushk1 + decals: + 214: 13,-16 + 215: 11,-17 + 216: 11,-16 + - node: + color: '#9FED58FF' + id: Bushl4 + decals: + 10: -5.8762484,20.89845 + 11: -4.0905848,20.824705 + - node: + color: '#FFFFFFFF' + id: Bushm1 + decals: + 987: 1.0526228,-5.9271507 + - node: + color: '#FFFFFFFF' + id: Bushm2 + decals: + 986: 0.021372795,-5.9584007 + - node: + color: '#C6FF91FF' + id: Bushm3 + decals: + 234: -24.237995,9.293553 + - node: + color: '#FFFFFFFF' + id: Bushm3 + decals: + 985: -1.0567522,-6.0209007 + - node: + color: '#9FED58FF' + id: Bushn1 + decals: + 7: -5.38925,20.957449 + - node: + color: '#C6FF91FF' + id: Bushn1 + decals: + 218: 11.226349,-16.407578 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 844: 14,15 + 845: 14,14 + 846: 14,13 + 847: 14,12 + 848: 14,16 + 849: 14,11 + - node: + color: '#000000FF' + id: Dirt + decals: + 277: 29,-6 + - node: + color: '#00000CFF' + id: Dirt + decals: + 337: 4,-23 + 338: 5,-25 + 339: 4,-22 + 346: 5,-23 + 347: 4,-24 + 348: 5,-25 + 349: 4,-24 + 358: 4,-22 + 359: 4,-23 + 360: 5,-24 + - node: + cleanable: True + color: '#00000CFF' + id: Dirt + decals: + 310: 3,-3 + 322: 24,-15 + 323: 21,-15 + 324: 22,-13 + 325: 22,-12 + 326: 24,-12 + 327: 26,-11 + 332: 28,-15 + 333: 26,-11 + 334: 29,-11 + 335: 29,-12 + - node: + cleanable: True + color: '#001C00FF' + id: Dirt + decals: + 532: -4,24 + 544: 0,24 + 557: -9,-13 + 558: -9,-12 + 559: -9,-13 + 568: -11,-17 + 569: -12,-17 + 570: -11,-17 + 571: -11,-17 + 590: -12,-17 + 591: -11,-18 + - node: + color: '#00260CFF' + id: Dirt + decals: + 293: 27,-1 + - node: + cleanable: True + color: '#06000CFF' + id: Dirt + decals: + 373: 17,-9 + 374: 16,-9 + 375: 17,-11 + 376: 17,-9 + 377: 20,-9 + 389: 24,-12 + 390: 24,-12 + 391: 23,-12 + 392: 24,-11 + 393: 25,-12 + 394: 25,-12 + 395: 24,-13 + 396: 25,-11 + 397: 25,-11 + 434: 21,-18 + 435: 23,-18 + 436: 20,-19 + 437: 19,-18 + 438: 26,-22 + 449: 28,-19 + 453: 32,-16 + 454: 33,-17 + 455: 32,-17 + 461: 32,-16 + 462: 32,-17 + 463: 33,-16 + 464: 33,-16 + 465: 32,-16 + 466: 31,-14 + 467: 32,-12 + 468: 32,-12 + 480: 33,-13 + 481: 33,-11 + 482: 33,-11 + 483: 31,-11 + 484: 32,-12 + 485: 32,-12 + 486: 31,-7 + 487: 31,-7 + 498: 33,0 + 499: 34,0 + 500: 34,0 + 501: 31,4 + 502: 32,4 + 503: 31,4 + 504: 13,9 + 519: 12,9 + 520: 13,9 + 521: 13,9 + - node: + color: '#571212FF' + id: Dirt + decals: + 270: 25,-6 + 271: 26,-7 + 272: 29,-6 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 236: 29,6 + 237: 25,5 + 238: 29,-2 + 239: 28,-2 + 240: 29,-1 + 626: -12,16 + 627: -11,16 + 628: -12,18 + 629: -11,19 + 630: -12,17 + 631: -11,17 + 632: -10,17 + 633: -11,18 + 634: -9,19 + 635: -9,18 + 636: -10,17 + 637: -9,16 + 638: -8,16 + 639: -8,16 + 640: -10,16 + 641: -10,18 + 642: -10,19 + 643: -12,19 + 644: -9,17 + 645: -8,17 + 646: -8,17 + 647: -8,19 + 648: -10,19 + 649: -11,19 + 650: -12,18 + 651: -12,17 + 652: -12,16 + 653: -10,16 + 654: -9,17 + 655: -8,18 + 656: -8,17 + 657: -10,17 + 658: -12,18 + 659: -10,19 + 660: -10,19 + 661: -10,18 + 662: -9,17 + 663: -10,17 + 664: -11,16 + 665: -9,16 + 666: -8,16 + 667: -8,18 + 668: -8,19 + 669: -9,19 + 798: 8,19 + 799: 9,20 + 800: 9,19 + 801: 10,18 + 802: 10,19 + 803: 10,20 + 804: 10,20 + 805: 11,18 + 806: 11,20 + 807: 11,20 + 808: 10,19 + 809: 10,18 + 850: 9,11 + 851: 10,14 + 852: 9,12 + 853: 9,13 + 854: 9,15 + 855: 9,15 + 856: 9,14 + 857: 10,14 + 858: 10,12 + 859: 10,11 + 860: 10,11 + 861: 10,10 + 862: 11,11 + 863: 11,11 + 864: 10,12 + 898: 12,11 + 899: 12,11 + 900: 13,14 + 901: 13,15 + 902: 13,16 + 903: 12,16 + 904: 13,15 + 905: 15,16 + 906: 15,14 + 907: 15,13 + 908: 15,12 + 909: 11,16 + 910: 10,16 + 911: 9,14 + 912: 9,11 + 913: 13,11 + 914: 16,11 + 915: 17,13 + 916: 17,16 + 917: 18,15 + 918: 17,14 + 919: 16,13 + 920: 18,12 + 921: 18,11 + 922: 18,13 + 923: 18,15 + 924: 16,16 + 925: 16,16 + 926: 16,15 + 927: 16,13 + 928: 17,13 + 929: 17,12 + 930: 17,12 + 931: 16,11 + 932: 17,11 + 933: 17,11 + 934: 17,13 + 935: 16,14 + 991: -8,-16 + 992: -8,-17 + 993: -7,-16 + 994: -7,-18 + 995: -6,-18 + 996: -7,-17 + 997: -8,-15 + 998: -8,-15 + 999: -8,-14 + 1000: -7,-15 + 1001: -7,-16 + 1002: -6,-17 + 1003: -5,-18 + 1171: -3,-20 + 1172: -1,-20 + 1173: -1,-20 + 1174: -2,-20 + 1175: -2,-20 + 1176: -1,-20 + 1177: 1,-20 + 1178: 3,-20 + 1179: 2,-20 + 1180: 0,-20 + 1189: -2,-22 + 1190: -2,-23 + 1191: -1,-22 + 1192: 1,-23 + 1193: 1,-22 + 1194: 0,-22 + 1195: 0,-23 + 1196: 2,-22 + 1197: 1,-23 + 1198: 3,-23 + 1199: 3,-22 + 1200: 2,-23 + 1201: 1,-24 + 1202: 0,-23 + 1203: -2,-23 + 1204: -1,-23 + 1205: -4,-22 + 1206: -3,-22 + 1207: -1,-22 + 1208: 0,-23 + 1209: 3,-22 + 1210: 1,-22 + 1211: 0,-22 + 1212: -2,-22 + 1213: 2,-22 + 1214: -4,3 + 1215: -4,4 + 1216: -4,3 + 1217: -4,1 + 1218: -4,3 + 1219: -4,4 + 1220: -4,2 + 1221: -4,0 + 1222: -4,-1 + 1223: -4,-3 + 1224: -5,-3 + 1225: -3,-4 + 1226: -4,-4 + 1227: -4,-3 + 1228: -4,-2 + 1229: 4,-4 + 1230: 4,-3 + 1231: 4,-2 + 1232: 5,-2 + 1233: 5,-1 + 1234: 4,0 + 1235: 4,0 + 1236: 4,-1 + 1237: 4,1 + 1238: 5,2 + 1239: 4,2 + 1240: 4,3 + 1241: 5,3 + 1242: 4,4 + 1243: 4,5 + 1389: -22,6 + 1390: -24,6 + 1391: -23,5 + 1392: -22,4 + 1393: -24,4 + 1394: -24,6 + 1395: -23,5 + 1396: -19,6 + 1397: -19,6 + 1398: -20,5 + 1399: -20,4 + 1400: -18,4 + 1401: -19,5 + 1402: -15,5 + 1403: -15,5 + 1404: -15,5 + 1405: -15,5 + 1406: -10,5 + 1407: -10,5 + 1408: -11,6 + 1409: -11,6 + 1410: -10,6 + 1411: -11,5 + 1412: -10,5 + 1413: 16,6 + 1414: 17,6 + 1415: 16,5 + 1416: 16,5 + 1417: 17,5 + 1418: 17,5 + 1419: 16,4 + 1420: 16,3 + 1421: 17,0 + 1422: 17,-2 + 1423: 16,-2 + 1424: 16,-1 + 1425: 16,0 + 1426: 17,-1 + 1427: 17,-1 + 1428: 16,3 + 1429: 16,2 + 1430: 16,1 + 1431: 16,0 + 1432: 18,5 + 1433: 17,5 + 1434: 17,3 + 1435: 17,3 + 1436: 19,5 + 1437: 19,5 + 1438: 19,5 + 1439: 16,5 + 1450: 22,6 + 1451: 23,6 + 1452: 22,5 + 1453: 23,5 + 1454: 25,6 + 1455: 25,5 + 1456: 24,5 + 1457: 23,5 + 1458: 22,5 + 1459: 22,5 + 1460: 21,6 + 1461: 25,5 + 1462: 28,5 + 1463: 29,6 + 1464: 28,5 + 1465: 28,5 + 1466: 29,3 + 1467: 28,3 + 1468: 28,3 + 1469: 28,3 + 1470: 27,4 + 1471: 27,5 + 1472: 28,6 + 1473: 29,5 + 1474: 29,4 + 1475: 29,3 + 1476: 28,4 + 1477: 27,5 + 1478: 28,6 + 1479: 27,5 + 1480: 27,4 + 1481: 27,4 + 1482: 27,3 + 1483: 27,3 + 1484: 27,3 + 1485: 28,0 + 1486: 27,1 + 1487: 27,0 + 1488: 27,-1 + 1489: 28,-2 + 1490: 28,-2 + 1491: 29,-1 + 1492: 27,0 + 1493: 28,1 + 1494: 28,1 + 1495: 29,0 + 1496: 29,-2 + 1497: 29,-2 + 1498: 27,-2 + 1499: 27,-2 + 1500: 28,0 + 1501: 28,1 + 1502: 24,-1 + 1503: 24,-1 + 1504: 24,0 + 1505: 22,-1 + 1506: 22,-1 + 1507: 22,-2 + 1508: 22,0 + 1509: 22,0 + 1510: 21,0 + 1511: 20,-1 + 1512: 20,-1 + 1513: 19,-2 + 1514: 20,-2 + 1515: 19,-2 + 1516: 19,-1 + 1517: 20,-1 + 1518: 20,0 + 1519: 20,0 + 1520: 20,1 + 1521: 19,3 + 1522: 19,3 + 1523: 20,2 + 1524: 21,2 + 1525: 21,3 + 1526: 21,2 + 1527: 22,2 + 1528: 23,2 + 1529: 24,3 + 1530: 24,1 + 1531: 25,0 + 1532: 24,3 + 1533: 24,4 + 1534: 24,5 + 1535: 22,6 + 1536: 21,5 + 1537: 22,6 + 1538: 24,6 + 1539: 25,5 + 1540: 24,3 + 1541: 24,3 + 1542: 25,1 + 1543: 25,1 + 1544: 24,-1 + 1545: 25,-2 + 1546: 25,-1 + 1547: 25,0 + 1548: 26,-1 + 1549: 29,0 + 1550: 28,1 + 1551: 27,0 + 1552: 28,-1 + 1553: 28,3 + 1554: 28,5 + 1555: 28,6 + 1556: 28,6 + 1557: 27,4 + 1558: 27,4 + 1559: 26,3 + 1560: 25,3 + 1561: 23,1 + 1562: 22,-1 + 1563: 19,0 + 1564: 21,0 + 1565: 21,0 + 1566: 19,-1 + 1567: 17,0 + 1568: 18,-1 + 1569: 19,-1 + 1570: 19,-1 + 1571: 20,-1 + 1572: 20,-1 + 1573: 19,-1 + 1574: 20,-1 + 1575: 20,-1 + 1576: 21,1 + - node: + color: '#000000FF' + id: DirtHeavy + decals: + 276: 23,-7 + 282: 19,-6 + - node: + color: '#00000CFF' + id: DirtHeavy + decals: + 341: 4,-24 + 342: 5,-25 + 343: 4,-25 + 344: 5,-23 + 345: 5,-23 + 356: 4,-22 + 357: 4,-25 + - node: + cleanable: True + color: '#00000CFF' + id: DirtHeavy + decals: + 320: 24,-15 + 321: 24,-14 + 328: 25,-11 + 329: 27,-9 + 330: 29,-9 + 331: 29,-14 + - node: + cleanable: True + color: '#001C00FF' + id: DirtHeavy + decals: + 533: -4,24 + 556: -9,-13 + 581: -12,-18 + 582: -12,-18 + - node: + color: '#00260CFF' + id: DirtHeavy + decals: + 303: 23,5 + 304: 22,6 + - node: + cleanable: True + color: '#06000CFF' + id: DirtHeavy + decals: + 367: 17,-9 + 368: 17,-10 + 369: 17,-9 + 405: 22,-12 + 406: 22,-12 + 407: 22,-13 + 408: 23,-13 + 409: 26,-11 + 410: 27,-9 + 431: 21,-18 + 432: 21,-19 + 433: 22,-19 + 469: 32,-12 + 470: 32,-12 + 479: 31,-12 + 488: 31,-7 + 489: 31,-6 + - node: + color: '#571212FF' + id: DirtHeavy + decals: + 273: 20,-4 + 274: 19,-5 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 813: 10,19 + 814: 11,20 + 815: 11,19 + 816: 11,18 + 817: 10,18 + 818: 10,19 + 819: 9,20 + 820: 11,19 + 821: 11,18 + 865: 10,12 + 866: 10,14 + 867: 9,14 + 868: 10,11 + 869: 11,11 + 870: 12,12 + 871: 13,15 + 872: 13,15 + 1072: 5,-9 + 1073: 6,-9 + 1074: 6,-8 + 1075: 6,-7 + 1076: 7,-7 + 1077: 6,-6 + 1078: 7,-5 + 1079: 6,-4 + 1134: -9,-7 + 1135: -8,-7 + 1136: -7,-7 + 1137: -6,-5 + 1138: -6,-4 + 1139: -6,-5 + 1140: -7,-3 + 1141: -8,-3 + 1142: -8,-5 + 1143: -8,-4 + 1144: -6,-3 + 1167: -8,4 + 1168: -7,5 + 1169: -7,5 + 1170: -8,2 + 1181: -2,-20 + 1182: -3,-20 + 1183: -2,-20 + 1184: 0,-20 + 1185: 3,-20 + 1186: 1,-20 + 1187: 0,-20 + 1188: -2,-20 + 1295: -10,1 + 1296: -12,-1 + 1297: -13,-2 + 1321: -13,-4 + 1322: -13,-5 + 1323: -13,-7 + 1324: -14,-7 + 1325: -17,-7 + 1326: -17,-7 + 1327: -11,5 + 1328: -11,5 + 1329: -11,5 + 1330: -11,4 + 1331: -10,6 + 1332: -11,6 + 1333: -15,5 + 1334: -15,5 + 1335: -15,6 + 1336: -15,6 + 1337: -19,5 + 1338: -19,6 + 1339: -19,6 + 1340: -18,6 + 1341: -18,6 + 1342: -18,6 + 1343: -18,5 + 1344: -18,4 + 1345: -19,4 + 1346: -20,5 + 1347: -20,6 + 1348: -22,6 + 1349: -22,6 + 1350: -22,6 + 1351: -22,5 + 1352: -22,5 + 1353: -23,4 + 1354: -23,5 + 1355: -23,6 + 1356: -23,6 + 1357: -24,6 + 1358: -24,5 + 1359: -24,4 + 1360: -10,6 + 1361: -10,6 + 1362: -10,5 + 1363: -10,5 + 1364: -10,4 + 1365: -11,4 + 1366: -11,6 + 1367: -10,2 + 1368: -10,2 + 1369: -10,1 + 1370: -10,1 + 1371: -10,1 + 1372: -10,0 + 1373: -11,0 + 1374: -12,0 + 1375: -11,1 + 1376: -13,1 + 1377: -13,1 + 1378: -14,0 + 1379: -10,-1 + 1380: -11,-1 + 1381: -12,-2 + 1382: -12,-2 + 1383: -16,-1 + 1384: -16,0 + 1385: -16,1 + 1386: -15,1 + 1387: -18,1 + 1388: -19,0 + 1440: 16,6 + 1441: 16,6 + 1442: 16,4 + 1443: 16,4 + 1444: 17,4 + 1445: 17,2 + 1446: 17,0 + 1447: 16,-1 + 1448: 17,-2 + 1449: 17,1 + 1577: 21,1 + 1578: 21,1 + 1579: 21,2 + 1580: 21,2 + 1581: 21,2 + 1582: 21,1 + 1583: 22,1 + 1584: 23,2 + 1585: 24,2 + 1586: 24,1 + 1587: 25,1 + 1588: 25,1 + 1589: 25,1 + 1590: 25,2 + 1591: 25,2 + 1592: 25,1 + 1593: 25,0 + 1594: 25,-1 + 1595: 25,-1 + 1596: 25,-2 + 1597: 25,-2 + 1598: 27,-1 + 1599: 27,-1 + 1600: 29,-2 + 1601: 29,-2 + 1602: 29,-2 + 1603: 29,-2 + 1604: 29,-2 + 1605: 29,-1 + 1606: 29,-1 + 1607: 29,0 + 1608: 28,1 + 1609: 28,1 + 1610: 28,1 + 1611: 28,1 + 1612: 28,4 + 1613: 28,5 + 1614: 28,4 + 1615: 27,4 + 1616: 27,4 + 1617: 28,3 + 1618: 28,3 + 1619: 28,4 + 1620: 25,5 + 1621: 24,5 + 1622: 24,6 + 1623: 23,6 + 1624: 22,5 + 1625: 22,5 + 1626: 22,5 + 1627: 22,2 + 1628: 21,2 + 1629: 21,2 + 1630: 21,3 + 1631: 20,3 + 1632: 19,3 + 1633: 17,2 + 1634: 17,2 + 1635: 17,4 + 1636: 17,4 + - node: + color: '#000000FF' + id: DirtHeavyMonotile + decals: + 280: 28,-7 + 281: 23,-4 + 283: 20,-6 + 287: 26,-4 + 288: 29,-4 + - node: + color: '#00000CFF' + id: DirtHeavyMonotile + decals: + 307: 28,6 + 340: 4,-24 + 354: 4,-22 + 355: 4,-22 + - node: + cleanable: True + color: '#00000CFF' + id: DirtHeavyMonotile + decals: + 314: 3,-3 + 315: 3,-2 + 316: 3,-2 + 317: 24,-15 + 318: 23,-15 + 319: 24,-14 + 336: 29,-12 + - node: + cleanable: True + color: '#001C00FF' + id: DirtHeavyMonotile + decals: + 550: 0,24 + 551: 1,24 + 552: -3,24 + 553: -3,24 + 554: -3,24 + 555: -4,23 + 560: -9,-13 + 561: -9,-12 + 572: -11,-17 + 573: -11,-17 + 579: -11,-17 + 580: -11,-17 + - node: + color: '#00260CFF' + id: DirtHeavyMonotile + decals: + 305: 22,5 + 306: 24,6 + - node: + cleanable: True + color: '#06000CFF' + id: DirtHeavyMonotile + decals: + 378: 20,-9 + 379: 19,-10 + 411: 23,-13 + 439: 26,-22 + 450: 32,-16 + 471: 31,-11 + 472: 31,-12 + 473: 32,-11 + 497: 33,0 + 505: 13,9 + 506: 11,9 + 507: 14,9 + 508: 13,8 + 518: 13,9 + 522: 13,8 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 810: 9,18 + 811: 9,19 + 812: 10,20 + 1026: -2,-17 + 1027: -1,-16 + 1028: -2,-18 + 1029: -3,-17 + 1088: 6,-2 + 1089: 6,0 + 1090: 8,0 + 1091: 8,1 + 1159: -6,6 + 1160: -6,6 + 1161: -5,4 + 1162: -6,3 + 1163: -6,1 + 1164: -6,2 + 1165: -5,3 + 1166: -7,4 + 1298: -14,1 + 1299: -16,-1 + 1300: -14,-1 + 1301: -13,0 + 1302: -17,0 + - node: + color: '#000000FF' + id: DirtLight + decals: + 284: 28,-4 + 286: 25,-4 + - node: + color: '#00000CFF' + id: DirtLight + decals: + 308: 31,4 + 309: 31,2 + 350: 4,-23 + 351: 5,-24 + - node: + cleanable: True + color: '#00000CFF' + id: DirtLight + decals: + 311: 3,-2 + 313: 3,-3 + - node: + cleanable: True + color: '#001C00FF' + id: DirtLight + decals: + 534: -3,24 + 535: -4,23 + 536: -5,24 + 537: -5,24 + 538: -4,24 + 539: -4,24 + 545: 0,24 + 546: 0,24 + 547: -1,24 + 564: -9,-13 + 565: -9,-11 + 566: -9,-14 + 567: -9,-14 + 583: -12,-18 + 584: -12,-18 + 585: -12,-18 + 586: -12,-18 + 587: -11,-17 + 588: -12,-17 + 589: -12,-17 + 592: -5,-18 + - node: + color: '#00260CFF' + id: DirtLight + decals: + 294: 28,-1 + 295: 27,0 + 296: 28,1 + 300: 28,6 + 301: 29,3 + 302: 24,5 + - node: + cleanable: True + color: '#06000CFF' + id: DirtLight + decals: + 365: 5,-13 + 366: 16,-9 + 370: 17,-9 + 371: 16,-10 + 372: 15,-9 + 380: 20,-10 + 381: 19,-9 + 382: 19,-9 + 388: 24,-12 + 412: 23,-12 + 413: 22,-14 + 414: 22,-14 + 415: 21,-14 + 416: 21,-13 + 417: 25,-14 + 418: 25,-14 + 419: 25,-13 + 420: 25,-13 + 421: 27,-9 + 422: 26,-16 + 423: 21,-18 + 424: 21,-18 + 425: 21,-17 + 426: 21,-17 + 427: 23,-18 + 440: 26,-22 + 441: 26,-22 + 442: 25,-22 + 443: 26,-21 + 444: 26,-21 + 445: 28,-20 + 446: 28,-20 + 451: 32,-16 + 452: 32,-16 + 456: 33,-17 + 474: 31,-12 + 475: 31,-12 + 476: 32,-11 + 490: 31,-5 + 491: 31,-8 + 492: 31,-8 + 493: 31,-7 + 494: 34,0 + 495: 34,0 + 514: 12,9 + 515: 12,9 + 516: 13,9 + 517: 11,9 + 523: 12,8 + 524: 12,8 + 525: 14,9 + - node: + color: '#571212FF' + id: DirtLight + decals: + 275: 23,-4 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 822: 9,18 + 823: 9,19 + 824: 10,20 + 825: 10,20 + 873: 14,11 + 874: 11,12 + 875: 9,12 + 876: 9,14 + 877: 14,15 + 878: 14,14 + 879: 14,14 + 880: 14,14 + 881: 15,16 + 882: 15,14 + 883: 15,13 + 884: 15,12 + 885: 15,11 + 886: 15,11 + 887: 14,11 + 888: 12,11 + 889: 12,11 + 890: 12,12 + 891: 12,14 + 892: 10,16 + 893: 9,15 + 894: 9,14 + 895: 9,14 + 896: 12,11 + 897: 12,11 + 1018: -7,-16 + 1019: -7,-15 + 1020: -6,-18 + 1021: -4,-17 + 1022: -3,-16 + 1023: -2,-18 + 1024: -1,-17 + 1025: -1,-17 + 1030: 1,-17 + 1031: 2,-16 + 1032: 3,-17 + 1033: 1,-18 + 1034: 1,-17 + 1035: 4,-16 + 1055: 5,-15 + 1056: 6,-14 + 1057: 7,-14 + 1058: 7,-13 + 1059: 7,-12 + 1060: 7,-12 + 1061: 6,-13 + 1062: 6,-12 + 1063: 7,-11 + 1064: 7,-10 + 1065: 6,-10 + 1066: 7,-9 + 1067: 8,-9 + 1068: 7,-9 + 1069: 7,-9 + 1070: 7,-8 + 1071: 6,-7 + 1080: 6,-5 + 1081: 5,-4 + 1082: 7,-3 + 1083: 6,-4 + 1084: 6,-3 + 1085: 6,-2 + 1086: 7,-1 + 1087: 5,0 + 1106: 6,3 + 1107: 6,4 + 1108: 6,5 + 1109: 6,6 + 1110: 6,4 + 1111: 7,3 + 1112: 7,2 + 1113: 6,2 + 1114: 5,0 + 1115: 5,1 + 1116: 5,2 + 1117: 5,3 + 1118: -4,-16 + 1119: -5,-15 + 1120: -6,-15 + 1121: -6,-14 + 1145: -6,-3 + 1146: -6,-1 + 1147: -7,-2 + 1148: -7,0 + 1149: -7,0 + 1150: -8,1 + 1151: -7,2 + 1152: -7,1 + 1153: -6,3 + 1154: -6,4 + 1155: -6,6 + 1156: -6,6 + 1157: -6,5 + 1158: -7,4 + 1303: -22,0 + 1304: -20,1 + 1305: -19,1 + 1306: -22,0 + 1307: -22,0 + 1308: -20,0 + 1309: -19,-1 + 1310: -22,0 + - node: + color: '#000000FF' + id: DirtMedium + decals: + 278: 28,-6 + 279: 29,-7 + 285: 27,-4 + - node: + color: '#00000CFF' + id: DirtMedium + decals: + 352: 4,-22 + 353: 4,-22 + - node: + cleanable: True + color: '#00000CFF' + id: DirtMedium + decals: + 312: 3,-3 + - node: + cleanable: True + color: '#001C00FF' + id: DirtMedium + decals: + 540: -4,24 + 541: -4,24 + 542: -5,23 + 543: -6,24 + 548: 0,23 + 549: 1,24 + 562: -9,-12 + 563: -9,-12 + 574: -11,-17 + 575: -11,-18 + 576: -11,-18 + 577: -12,-17 + 578: -12,-17 + - node: + color: '#00260CFF' + id: DirtMedium + decals: + 297: 27,-2 + 298: 27,3 + 299: 28,5 + - node: + cleanable: True + color: '#06000CFF' + id: DirtMedium + decals: + 383: 20,-9 + 384: 19,-10 + 385: 24,-12 + 386: 24,-12 + 387: 24,-12 + 398: 25,-11 + 399: 25,-11 + 400: 24,-11 + 401: 23,-10 + 402: 24,-10 + 403: 23,-11 + 404: 23,-11 + 428: 21,-18 + 429: 21,-17 + 430: 20,-18 + 447: 28,-19 + 448: 28,-20 + 457: 32,-16 + 458: 32,-16 + 459: 33,-16 + 460: 31,-17 + 477: 31,-12 + 478: 31,-11 + 496: 34,0 + 509: 12,9 + 510: 12,8 + 511: 13,9 + 512: 12,9 + 513: 12,9 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 670: -12,16 + 671: -12,16 + 672: -12,17 + 673: -8,18 + 674: -11,16 + 675: -9,16 + 676: -9,16 + 677: -10,17 + 678: -10,18 + 679: -10,19 + 680: -11,19 + 681: -8,18 + 682: -8,17 + 683: -9,16 + 684: -12,17 + 685: -12,19 + 686: -10,18 + 687: -9,18 + 1004: -7,-15 + 1005: -8,-14 + 1006: -7,-17 + 1007: -8,-17 + 1008: -7,-18 + 1009: -5,-18 + 1010: -7,-18 + 1011: -8,-18 + 1012: -8,-16 + 1013: -8,-15 + 1014: -6,-17 + 1015: -5,-18 + 1016: -6,-17 + 1017: -7,-16 + 1036: 4,-17 + 1037: 3,-16 + 1038: 2,-16 + 1039: 1,-17 + 1040: -1,-17 + 1041: -2,-17 + 1042: -2,-18 + 1043: 0,-18 + 1044: 3,-18 + 1045: 7,-18 + 1046: 7,-17 + 1047: 6,-18 + 1048: 7,-15 + 1049: 8,-15 + 1050: 5,-15 + 1051: 5,-17 + 1052: 7,-14 + 1053: 8,-14 + 1054: 8,-14 + 1092: 8,-1 + 1093: 7,0 + 1094: 6,1 + 1095: 6,2 + 1096: 7,3 + 1097: 6,5 + 1098: 6,6 + 1099: 5,5 + 1100: 5,4 + 1101: 6,3 + 1102: 7,1 + 1103: 7,1 + 1104: 6,2 + 1105: 6,3 + 1122: -5,-15 + 1123: -7,-15 + 1124: -6,-13 + 1125: -7,-12 + 1126: -8,-11 + 1127: -7,-13 + 1128: -7,-12 + 1129: -7,-10 + 1130: -6,-9 + 1131: -7,-9 + 1132: -8,-9 + 1133: -6,-7 + 1311: -23,0 + 1312: -24,0 + 1313: -23,1 + 1314: -20,1 + 1315: -20,1 + 1316: -20,-1 + 1317: -17,-1 + 1318: -16,-2 + 1319: -18,-3 + 1320: -18,-4 + - node: + color: '#9FED58FF' + id: FlowersBRTwo + decals: + 14: -7.3224893,20.824705 + - node: + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 990: 0.8963728,-12.036526 + - node: + color: '#9FED58FF' + id: Flowerspv3 + decals: + 15: -4.7989473,20.92795 + 16: -11.115181,20.883703 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 988: -0.3067522,-10.989651 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 989: -0.1817522,-12.224026 + - node: + color: '#FFFFFFFF' + id: Grassa1 + decals: + 968: -3.8848772,-6.8490257 + 969: -3.0098772,-5.8959007 + - node: + color: '#FFFFFFFF' + id: Grassa4 + decals: + 970: 3.6151228,-6.7709007 + 971: 3.6619978,-5.9896507 + 972: 2.0994978,-5.7240257 + 973: 3.6932478,-10.052151 + 974: 3.8338728,-9.270901 + - node: + color: '#FFFFFFFF' + id: Grassa5 + decals: + 979: 2.2244978,-13.270901 + 980: 3.1151228,-13.536526 + 981: 3.7088728,-13.036526 + - node: + color: '#FFFFFFFF' + id: Grassb5 + decals: + 975: -3.7286272,-10.145901 + 976: -3.8380022,-9.349026 + 977: -3.4630022,-13.208401 + 978: -2.4161272,-13.552151 + - node: + color: '#FFFFFFFF' + id: Grassc1 + decals: + 965: -1.4473772,-7.1146507 + - node: + color: '#FFFFFFFF' + id: Grassc3 + decals: + 967: 1.8338728,-10.911526 + - node: + color: '#FFFFFFFF' + id: Grassc4 + decals: + 966: -1.9317522,-11.286526 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 936: -1.7286272,-11.958401 + 937: -0.9630022,-11.224026 + 951: -0.8380022,-6.9740257 + 952: -0.9317522,-6.4584007 + 953: -0.4317522,-5.8490257 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 938: -1.1817522,-11.833401 + 939: -1.8067522,-10.864651 + 954: 0.2869978,-6.9115257 + 955: 0.3182478,-5.9427757 + 956: 1.2557478,-6.4740257 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 940: -0.1505022,-11.083401 + 941: -0.072377205,-11.989651 + 957: 1.6307478,-7.2709007 + 958: 2.1463728,-6.8959007 + 959: 2.0682478,-8.130276 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 942: 0.5526228,-10.864651 + 943: 0.8338728,-11.942776 + 944: 1.7088728,-11.942776 + 945: 1.6151228,-10.849026 + 946: -2.3848772,-9.958401 + 947: -1.7755022,-9.286526 + 960: 2.2869978,-9.692776 + 961: 2.1932478,-8.708401 + 962: 3.4276228,-10.239651 + 963: 2.7713728,-7.8334007 + 964: 2.9119978,-7.0365257 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 948: -1.8223772,-8.224026 + 949: -2.9473772,-7.5052757 + 950: -2.0567522,-7.1927757 + - node: + color: '#96DAFFFF' + id: MiniTileDarkCornerNe + decals: + 791: 11,20 + - node: + color: '#96DAFFFF' + id: MiniTileDarkCornerNw + decals: + 790: 9,20 + - node: + color: '#96DAFFFF' + id: MiniTileDarkCornerSe + decals: + 793: 11,18 + - node: + color: '#96DAFFFF' + id: MiniTileDarkCornerSw + decals: + 792: 9,18 + - node: + color: '#96DAFFFF' + id: MiniTileDarkLineE + decals: + 797: 11,19 + - node: + color: '#96DAFFFF' + id: MiniTileDarkLineN + decals: + 795: 10,20 + - node: + color: '#96DAFFFF' + id: MiniTileDarkLineS + decals: + 794: 10,18 + - node: + color: '#96DAFFFF' + id: MiniTileDarkLineW + decals: + 796: 9,19 + - node: + color: '#334E6DC8' + id: MiniTileInnerOverlayNE + decals: + 245: -9,24 + 255: -1,24 + - node: + color: '#334E6DC8' + id: MiniTileInnerOverlayNW + decals: + 248: -2,9 + - node: + color: '#9FED5896' + id: MiniTileInnerOverlayNW + decals: + 267: 15,-12 + - node: + color: '#334E67FF' + id: MiniTileInnerOverlaySE + decals: + 1701: 1,8 + - node: + color: '#334E6DC8' + id: MiniTileInnerOverlaySE + decals: + 246: 1,22 + 250: 11,8 + - node: + color: '#334E67FF' + id: MiniTileInnerOverlaySW + decals: + 1700: -1,8 + - node: + color: '#334E6DC8' + id: MiniTileInnerOverlaySW + decals: + 244: -2,22 + 249: -2,7 + - node: + color: '#334E6DFF' + id: MiniTileInnerOverlaySW + decals: + 610: -1,22 + - node: + color: '#334E6DFF' + id: MiniTileLineOverlayE + decals: + 611: 1,19 + 612: 1,18 + 613: 1,17 + 614: 1,16 + - node: + color: '#96DAFFFF' + id: MiniTileLineOverlayE + decals: + 755: 5,11 + 756: 5,12 + 757: 5,13 + 758: 5,14 + 759: 5,15 + 760: 5,16 + - node: + color: '#334E6DFF' + id: MiniTileLineOverlayW + decals: + 615: -1,19 + 616: -1,18 + 617: -1,17 + 618: -1,17 + 619: -1,16 + - node: + color: '#96DAFFFF' + id: MiniTileLineOverlayW + decals: + 761: 5,11 + 762: 5,12 + 763: 5,13 + 764: 5,14 + 765: 5,15 + 766: 5,16 + - node: + color: '#96DAFFFF' + id: MiniTileOverlay + decals: + 754: 5,10 + 789: 8,19 + - node: + color: '#96DAFFFF' + id: MiniTileWhiteCornerNw + decals: + 783: 5,19 + - node: + color: '#96DAFFFF' + id: MiniTileWhiteInnerSe + decals: + 784: 5,19 + - node: + color: '#96DAFFFF' + id: MiniTileWhiteLineE + decals: + 767: 5,16 + 768: 5,15 + 769: 5,14 + 770: 5,13 + 771: 5,12 + 772: 5,11 + 780: 5,17 + 781: 5,18 + - node: + color: '#96DAFFFF' + id: MiniTileWhiteLineN + decals: + 786: 6,19 + 787: 7,19 + - node: + color: '#96DAFFFF' + id: MiniTileWhiteLineS + decals: + 785: 6,19 + 788: 7,19 + - node: + color: '#96DAFFFF' + id: MiniTileWhiteLineW + decals: + 773: 5,11 + 774: 5,12 + 775: 5,13 + 776: 5,14 + 777: 5,15 + 778: 5,16 + 779: 5,17 + 782: 5,18 + - node: + color: '#FFFFFFFF' + id: OldConcreteTrimCornerNe + decals: + 1294: 2,4 + - node: + color: '#FFFFFFFF' + id: OldConcreteTrimCornerNw + decals: + 1293: -2,4 + - node: + color: '#FFFFFFFF' + id: OldConcreteTrimCornerSe + decals: + 1285: 2,-2 + - node: + color: '#FFFFFFFF' + id: OldConcreteTrimCornerSw + decals: + 1284: -2,-2 + - node: + color: '#FFFFFFFF' + id: OldConcreteTrimEndS + decals: + 1286: -1,-3 + 1287: 1,-3 + - node: + color: '#FFFFFFFF' + id: OldConcreteTrimInnerSe + decals: + 1289: -1,-2 + 1292: 1,-2 + - node: + color: '#FFFFFFFF' + id: OldConcreteTrimInnerSw + decals: + 1290: 1,-2 + 1291: -1,-2 + - node: + color: '#FFFFFFFF' + id: OldConcreteTrimLineE + decals: + 1274: 2,1 + 1275: 2,0 + 1276: 2,-1 + 1277: 2,2 + 1278: 2,3 + - node: + color: '#FFFFFFFF' + id: OldConcreteTrimLineS + decals: + 1288: 0,-2 + - node: + color: '#FFFFFFFF' + id: OldConcreteTrimLineW + decals: + 1279: -2,-1 + 1280: -2,0 + 1281: -2,1 + 1282: -2,2 + 1283: -2,3 + - node: + color: '#791500FF' + id: Remains + decals: + 23: 22.592476,-11.8336935 + - node: + color: '#FFFFFFFF' + id: Rock02 + decals: + 1244: -3,-4 + - node: + color: '#FFFFFFFF' + id: Rock03 + decals: + 1245: -4,-5 + 1248: 4,-6 + - node: + color: '#FFFFFFFF' + id: Rock04 + decals: + 1246: 0,-5 + 1247: -5,-7 + 1249: -4,-11 + - node: + color: '#FFFFFFFF' + id: Rock05 + decals: + 1250: 1,-14 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 1251: -4,-14 + - node: + color: '#FFFFFFFF' + id: Rock07 + decals: + 1252: 5,-13 + 1253: 5,-11 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 698: -11,11 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 699: -6,11 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 696: -11,14 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 697: -6,14 + - node: + color: '#334E6DFF' + id: WarnFullGreyscale + decals: + 725: -13,13 + 726: -13,12 + - node: + color: '#EFB34196' + id: WarnLineE + decals: + 259: 13,3 + 260: 13,2 + 261: 17,-4 + 262: 17,-5 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 826: 12,11 + 827: 12,12 + 828: 12,13 + 829: 12,14 + 830: 12,15 + 831: 12,16 + 838: 15,16 + 839: 15,15 + 840: 15,14 + 841: 15,13 + 842: 15,12 + 843: 15,11 + 1254: -4,6 + 1255: -4,5 + 1256: -4,4 + 1257: -4,3 + 1258: -4,2 + 1259: -4,1 + 1260: -4,0 + 1261: -4,-1 + 1262: -4,-2 + 1263: -4,-3 + - node: + color: '#334E67FF' + id: WarnLineGreyscaleN + decals: + 1702: -20,9 + 1703: -19,9 + 1704: -18,9 + 1708: -1,5 + 1709: 0,5 + 1710: 1,5 + 1712: 10,9 + - node: + color: '#334E6DC8' + id: WarnLineGreyscaleN + decals: + 251: -17,9 + 252: -15,9 + - node: + color: '#334E6DFF' + id: WarnLineGreyscaleN + decals: + 723: -6,14 + 724: -10,14 + - node: + color: '#EFB34196' + id: WarnLineGreyscaleN + decals: + 256: -2,14 + - node: + color: '#334E67FF' + id: WarnLineGreyscaleS + decals: + 1705: -1,7 + 1706: 0,7 + 1707: 1,7 + 1711: 6,8 + 1713: 11,8 + 1714: 14,8 + 1715: -6,8 + - node: + color: '#EFB34196' + id: WarnLineGreyscaleS + decals: + 253: -17,7 + 254: -15,7 + - node: + color: '#334E6DFF' + id: WarnLineGreyscaleW + decals: + 720: -12,13 + 721: -12,12 + 722: -12,13 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 599: -1,21 + 600: 0,21 + 601: 1,21 + 603: 0,16 + 622: -1,21 + 623: 1,21 + 624: -1,16 + 625: 1,16 + 692: -10,14 + 693: -9,14 + 694: -8,14 + 695: -7,14 + - node: + color: '#EFB34196' + id: WarnLineS + decals: + 257: 19,2 + 258: 19,3 + 263: 15,-4 + 264: 15,-5 + 265: 19,-4 + 266: 19,-5 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 832: 13,16 + 833: 13,15 + 834: 13,14 + 835: 13,13 + 836: 13,12 + 837: 13,11 + 1264: 4,6 + 1265: 4,5 + 1266: 4,4 + 1267: 4,3 + 1268: 4,2 + 1269: 4,1 + 1270: 4,0 + 1271: 4,-1 + 1272: 4,-2 + 1273: 4,-3 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 602: 0,19 + 604: -1,14 + 605: 0,14 + 606: 1,14 + 620: -1,19 + 621: 1,19 + 688: -10,11 + 689: -9,11 + 690: -8,11 + 691: -7,11 + - node: + color: '#9FED58FF' + id: bushsnowa1 + decals: + 8: -5.035068,20.765709 + - node: + color: '#C6FF91FF' + id: bushsnowa1 + decals: + 224: 14.918995,-16.097843 + 225: 16.800585,-16.628817 + 226: 12.058225,-10.16649 + 227: 11.283454,-10.16649 + 228: 12.21318,-9.25941 + - node: + color: '#9FED58FF' + id: bushsnowa2 + decals: + 9: -4.5775843,20.9427 + - node: + color: '#062F0CFF' + id: grasssnow01 + decals: + 361: 4,-22 + - node: + color: '#062F0CFF' + id: grasssnow07 + decals: + 364: 5,-25 + - node: + color: '#00260CFF' + id: grasssnow08 + decals: + 289: 18,-12 + 290: 19,-13 + 291: 23,-6 + - node: + color: '#062F0CFF' + id: grasssnow08 + decals: + 362: 4,-24 + 363: 5,-23 + - node: + color: '#00260CFF' + id: grasssnowb3 + decals: + 292: 28,-6 + - node: + color: '#DE3A3A96' + id: skull + decals: + 0: 17,-20 + - node: + color: '#57121279' + id: splatter + decals: + 184: 22.412882,-6.8118925 + 185: 21.992292,-6.258795 + 186: 28.178102,-5.9711847 + 187: 28.576557,-7.077379 + - node: + color: '#571212FF' + id: splatter + decals: + 182: 22.257929,-6.6570253 + 183: 22.634247,-6.258795 + - node: + color: '#7915007F' + id: splatter + decals: + 25: 20.083693,-18.456114 + 26: 20.319813,-18.087381 + - node: + color: '#79150096' + id: splatter + decals: + 17: 23.197536,-13.942838 + - node: + color: '#791500FF' + id: splatter + decals: + 18: 25.145533,-13.013635 + 19: 27.152561,-11.9959345 + 20: 26.50323,-11.627204 + 21: 24.127262,-10.211274 + 22: 23.123749,-11.435463 + 24: 19.891844,-17.984137 + 27: 24.31911,-15.978236 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,1: + 0: 13119 + -1,1: + 0: 35231 + 0,2: + 0: 46079 + -1,2: + 0: 47359 + 0,3: + 0: 48059 + -1,3: + 0: 35771 + 0,4: + 0: 47931 + 1,0: + 0: 65535 + 1,1: + 0: 53247 + 1,2: + 0: 62207 + 1,3: + 0: 65535 + 1,-1: + 0: 65535 + 1,4: + 0: 65327 + 2,0: + 0: 55807 + 2,1: + 0: 36317 + 2,2: + 0: 58623 + 2,-1: + 0: 4433 + 2,3: + 0: 61166 + 2,4: + 0: 65038 + 3,0: + 0: 21623 + 3,1: + 0: 17749 + 3,2: + 0: 61695 + 3,3: + 0: 65535 + 3,4: + 0: 15 + 3,-1: + 0: 18203 + 4,0: + 0: 48059 + 4,1: + 0: 947 + 4,2: + 0: 28791 + 4,3: + 0: 30583 + 0,-4: + 0: 65535 + 0,-5: + 0: 65295 + -1,-4: + 0: 65535 + 0,-3: + 0: 65535 + -1,-3: + 0: 65535 + 0,-2: + 0: 65535 + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + 1,-4: + 0: 65535 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-5: + 0: 65294 + 2,-4: + 0: 56797 + 2,-3: + 0: 56669 + 2,-2: + 0: 21909 + 2,-5: + 0: 56783 + 3,-4: + 0: 65531 + 3,-3: + 0: 48015 + 3,-2: + 0: 47264 + 3,-5: + 0: 45120 + 4,-4: + 0: 65339 + 4,-3: + 0: 64319 + 4,-2: + 0: 48048 + 4,-1: + 0: 47883 + -4,0: + 0: 32767 + -4,-1: + 0: 65535 + -5,0: + 0: 32767 + -4,1: + 0: 1911 + -4,2: + 0: 28927 + -5,2: + 0: 63487 + -4,3: + 0: 30719 + -5,3: + 0: 65535 + -4,4: + 0: 30583 + -3,0: + 0: 30719 + -3,1: + 0: 1911 + -3,2: + 0: 61695 + -3,3: + 0: 20479 + -3,-1: + 0: 30583 + -3,4: + 0: 65535 + -2,0: + 0: 65535 + -2,1: + 0: 28671 + -2,2: + 0: 61695 + -2,3: + 0: 20479 + -2,-1: + 0: 65535 + -2,4: + 0: 56797 + -1,4: + 0: 65535 + -4,-4: + 0: 30583 + -4,-5: + 0: 30574 + -5,-4: + 0: 52417 + 1: 272 + -4,-3: + 0: 28167 + -5,-3: + 0: 65535 + -4,-2: + 0: 65520 + -5,-2: + 0: 56784 + -5,-1: + 0: 64733 + -3,-4: + 0: 1904 + -3,-3: + 0: 30583 + -3,-5: + 2: 13056 + 0: 47 + -3,-2: + 0: 1638 + -2,-4: + 0: 65535 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-5: + 0: 65295 + -1,-5: + 0: 65294 + 4,4: + 0: 7 + 5,0: + 0: 64511 + 5,-1: + 0: 65295 + 5,1: + 0: 3680 + 6,0: + 0: 45979 + 6,1: + 0: 3000 + 6,-1: + 0: 39695 + 7,0: + 0: 14395 + 7,1: + 0: 2986 + 7,-1: + 0: 43915 + 8,0: + 0: 17735 + 8,1: + 0: 7 + 4,-5: + 0: 47279 + 5,-4: + 0: 61167 + 5,-3: + 0: 48014 + 5,-2: + 0: 40400 + 5,-5: + 0: 65527 + 6,-4: + 0: 65535 + 6,-3: + 0: 65535 + 6,-5: + 0: 29568 + 1: 12 + 6,-2: + 0: 18016 + 7,-4: + 0: 35504 + 7,-2: + 0: 43960 + 7,-3: + 0: 41130 + 7,-5: + 0: 36541 + 1: 64 + 8,-4: + 0: 13059 + 8,-3: + 0: 51 + -7,-1: + 0: 26112 + -7,0: + 0: 1216 + -6,0: + 0: 32767 + -6,1: + 0: 1911 + -6,2: + 0: 61661 + -6,3: + 0: 65535 + -6,-1: + 0: 65279 + -6,4: + 0: 65535 + -5,1: + 0: 1911 + -5,4: + 0: 65535 + -7,-4: + 0: 61024 + -7,-3: + 0: 3822 + -6,-4: + 0: 12289 + 1: 2080 + -6,-3: + 0: 65535 + -6,-2: + 0: 65520 + 0,5: + 0: 65339 + -1,5: + 0: 65528 + 0,6: + 0: 13119 + -1,6: + 0: 34959 + 1,5: + 0: 65295 + 1,6: + 0: 15 + 2,5: + 0: 65294 + 2,6: + 0: 15 + -4,5: + 1: 17504 + -5,5: + 0: 65522 + -4,6: + 1: 775 + -5,6: + 1: 3968 + -3,5: + 0: 61152 + -3,6: + 0: 14 + -2,5: + 0: 65520 + -2,6: + 0: 15 + -6,5: + 1: 4400 + 0: 34944 + -6,6: + 1: 3719 + -1,-6: + 0: 4032 + 0,-6: + 0: 4082 + 1,-6: + 0: 49152 + 2,-6: + 0: 65280 + 3,-6: + 0: 3840 + 4,-6: + 0: 3840 + 5,-6: + 0: 2816 + 6,-6: + 0: 28480 + 7,-6: + 0: 61376 + 1: 4096 + 8,-6: + 0: 13072 + 8,-5: + 0: 13107 + 8,-1: + 0: 24576 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 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 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: GravityShake + nextShake: 0 + shakeTimes: 10 +- proto: AirAlarm + entities: + - uid: 11 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 134 + - uid: 14 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,17.5 + parent: 2 + - uid: 16 + components: + - type: Transform + pos: -10.5,10.5 + parent: 2 + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 135 + - uid: 25 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 136 + - uid: 26 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 138 + - 1828 + - 1827 + - 1825 + - 1826 + - uid: 27 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-7.5 + parent: 2 + - uid: 36 + components: + - type: Transform + pos: 21.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 150 + - 2551 + - 2568 + - 1811 + - uid: 37 + components: + - type: Transform + pos: 28.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 2550 + - 2569 + - 149 + - 1812 + - uid: 38 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 2570 + - 2552 + - 148 + - 1816 + - uid: 39 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 2590 + - 2534 + - 147 + - 1817 + - 1818 + - 1811 + - 1812 + - 1816 + - uid: 40 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 1826 + - 1825 + - uid: 41 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 2 + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 1842 + - uid: 641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,21.5 + parent: 2 +- proto: AirCanister + entities: + - uid: 52 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 2 + - uid: 1450 + components: + - type: Transform + pos: -11.5,14.5 + parent: 2 + - uid: 1451 + components: + - type: Transform + pos: 9.5,12.5 + parent: 2 + - uid: 1452 + components: + - type: Transform + pos: -23.5,16.5 + parent: 2 + - uid: 1584 + components: + - type: Transform + pos: 2.5,24.5 + parent: 2 +- proto: AirlockFreezerKitchenHydroLocked + entities: + - uid: 2033 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 2 +- proto: AirlockMaintEngiLocked + entities: + - uid: 86 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-8.5 + parent: 2 + - type: AccessReader + access: + - - Maintenance +- proto: AirSensor + entities: + - uid: 133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-12.5 + parent: 2 + - uid: 134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11 + - uid: 135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - uid: 136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25 + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 26 + - uid: 147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 39 + - uid: 148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 38 + - uid: 149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 37 + - uid: 150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 36 +- proto: APCBasic + entities: + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-9.5 + parent: 2 + - uid: 285 + components: + - type: Transform + pos: -1.5,25.5 + parent: 2 + - uid: 881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,11.5 + parent: 2 + - uid: 1146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,10.5 + parent: 2 + - uid: 1148 + components: + - type: Transform + pos: -16.5,24.5 + parent: 2 + - uid: 1165 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 + - uid: 1599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,15.5 + parent: 2 + - uid: 2563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 2 + - uid: 2564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-18.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,5.5 + parent: 2 + - uid: 2641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 2 + - uid: 2751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 2 + - uid: 2958 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 3034 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 +- proto: AtmosDeviceFanTiny + entities: + - uid: 171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,27.5 + parent: 2 + - uid: 2433 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 2 + - uid: 4863 + components: + - type: Transform + pos: 1.5,27.5 + parent: 2 + - uid: 4864 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 174 + components: + - type: Transform + pos: -11.5,-17.5 + parent: 2 + - uid: 175 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 2 + - uid: 176 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 2 + - uid: 177 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 2 +- proto: BannerRevolution + entities: + - uid: 189 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 2 +- proto: BannerSyndicate + entities: + - uid: 190 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 +- proto: Barricade + entities: + - uid: 77 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,3.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 2 + - uid: 195 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 + - uid: 252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,0.5 + parent: 2 + - uid: 479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,3.5 + parent: 2 + - uid: 1290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-1.5 + parent: 2 + - uid: 1291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-0.5 + parent: 2 + - uid: 1532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-0.5 + parent: 2 + - uid: 1666 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 + - uid: 2117 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 2125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,0.5 + parent: 2 + - uid: 2126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,2.5 + parent: 2 + - uid: 2145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,3.5 + parent: 2 + - uid: 2187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-19.5 + parent: 2 + - uid: 2188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-19.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,5.5 + parent: 2 + - uid: 2260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,6.5 + parent: 2 + - uid: 2402 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 2462 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 +- proto: BarricadeBlock + entities: + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-11.5 + parent: 2 + - uid: 197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-19.5 + parent: 2 + - uid: 198 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 2 + - uid: 204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-9.5 + parent: 2 + - uid: 501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-19.5 + parent: 2 + - uid: 933 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 934 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 935 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 936 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 1610 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - uid: 2122 + components: + - type: Transform + pos: 18.5,2.5 + parent: 2 + - uid: 2123 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 2365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-19.5 + parent: 2 +- proto: BarricadeDirectional + entities: + - uid: 35 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-19.5 + parent: 2 + - uid: 205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-11.5 + parent: 2 + - uid: 206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-19.5 + parent: 2 + - uid: 207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-18.5 + parent: 2 + - uid: 208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-18.5 + parent: 2 + - uid: 209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-17.5 + parent: 2 + - uid: 210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-17.5 + parent: 2 + - uid: 211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-20.5 + parent: 2 + - uid: 212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-19.5 + parent: 2 + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-19.5 + parent: 2 + - uid: 214 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 2 + - uid: 215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-17.5 + parent: 2 + - uid: 216 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 2 + - uid: 217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 2 + - uid: 218 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 2 + - uid: 219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-19.5 + parent: 2 + - uid: 220 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 2 + - uid: 221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-16.5 + parent: 2 + - uid: 228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 2 + - uid: 937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 2 + - uid: 2068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,3.5 + parent: 2 + - uid: 2124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,2.5 + parent: 2 +- proto: BaseBallBat + entities: + - uid: 531 + components: + - type: Transform + pos: -8.782963,18.829758 + parent: 2 + - uid: 532 + components: + - type: Transform + pos: -9.345463,18.876633 + parent: 2 + - uid: 1154 + components: + - type: Transform + pos: -9.907963,18.907883 + parent: 2 +- proto: Beaker + entities: + - uid: 908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.909472,18.5891 + parent: 2 +- proto: Bed + entities: + - uid: 230 + components: + - type: Transform + pos: 29.5,1.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - uid: 232 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 233 + components: + - type: Transform + pos: 29.5,6.5 + parent: 2 + - uid: 234 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 + - uid: 235 + components: + - type: Transform + pos: 25.5,5.5 + parent: 2 + - uid: 626 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 + - uid: 1065 + components: + - type: Transform + pos: -15.5,6.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + pos: -15.5,4.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: -11.5,6.5 + parent: 2 + - uid: 2196 + components: + - type: Transform + pos: -19.5,6.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + pos: -23.5,6.5 + parent: 2 + - uid: 2199 + components: + - type: Transform + pos: -19.5,4.5 + parent: 2 + - uid: 2351 + components: + - type: Transform + pos: -23.5,4.5 + parent: 2 + - uid: 2503 + components: + - type: Transform + pos: -11.5,4.5 + parent: 2 +- proto: BedsheetNT + entities: + - uid: 1076 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 +- proto: BedsheetYellow + entities: + - uid: 240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,6.5 + parent: 2 + - uid: 241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,6.5 + parent: 2 + - uid: 242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,3.5 + parent: 2 + - uid: 243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,1.5 + parent: 2 + - uid: 244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-1.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: 25.5,5.5 + parent: 2 +- proto: Bible + entities: + - uid: 5004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.399288,-6.6195707 + parent: 2 + - type: Storage + storedItems: + 5005: + position: 0,0 + _rotation: South + 5006: + position: 0,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 5005 + - 5006 +- proto: BlastDoor + entities: + - uid: 255 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 2 + - uid: 256 + components: + - type: Transform + pos: 18.5,2.5 + parent: 2 + - uid: 257 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 260 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 261 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 262 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 2 + - uid: 263 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - uid: 264 + components: + - type: Transform + pos: 24.5,4.5 + parent: 2 + - uid: 265 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 + - uid: 266 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 +- proto: BlastDoorOpen + entities: + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,20.5 + parent: 2 + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,20.5 + parent: 2 + - uid: 271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,20.5 + parent: 2 + - uid: 272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,15.5 + parent: 2 + - uid: 273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,15.5 + parent: 2 + - uid: 274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,15.5 + parent: 2 +- proto: BookshelfFilled + entities: + - uid: 275 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 2 + - uid: 276 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - uid: 277 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 + - uid: 1068 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 1305 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 +- proto: BoxBeaker + entities: + - uid: 906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.581347,20.30785 + parent: 2 +- proto: BoxingBell + entities: + - uid: 2208 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 2 +- proto: BoxPrinter + entities: + - uid: 1357 + components: + - type: Transform + pos: -21.5,11.5 + parent: 2 +- proto: CabbageSeeds + entities: + - uid: 1129 + components: + - type: Transform + pos: 3.6621227,-6.6733665 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 42 + components: + - type: Transform + pos: -16.5,11.5 + parent: 2 + - uid: 43 + components: + - type: Transform + pos: -19.5,12.5 + parent: 2 + - uid: 45 + components: + - type: Transform + pos: -3.5,16.5 + parent: 2 + - uid: 61 + components: + - type: Transform + pos: -1.5,16.5 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: -19.5,22.5 + parent: 2 + - uid: 101 + components: + - type: Transform + pos: -22.5,12.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: -18.5,22.5 + parent: 2 + - uid: 113 + components: + - type: Transform + pos: -19.5,21.5 + parent: 2 + - uid: 115 + components: + - type: Transform + pos: -9.5,23.5 + parent: 2 + - uid: 117 + components: + - type: Transform + pos: 2.5,23.5 + parent: 2 + - uid: 118 + components: + - type: Transform + pos: -1.5,23.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 152 + components: + - type: Transform + pos: -0.5,23.5 + parent: 2 + - uid: 153 + components: + - type: Transform + pos: 1.5,23.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: -1.5,24.5 + parent: 2 + - uid: 282 + components: + - type: Transform + pos: -19.5,15.5 + parent: 2 + - uid: 283 + components: + - type: Transform + pos: -18.5,14.5 + parent: 2 + - uid: 284 + components: + - type: Transform + pos: -18.5,15.5 + parent: 2 + - uid: 287 + components: + - type: Transform + pos: -1.5,25.5 + parent: 2 + - uid: 381 + components: + - type: Transform + pos: 18.5,1.5 + parent: 2 + - uid: 382 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - uid: 383 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 2 + - uid: 385 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 2 + - uid: 386 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 387 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 2 + - uid: 388 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 2 + - uid: 389 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - uid: 390 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 2 + - uid: 391 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 2 + - uid: 392 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 393 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 2 + - uid: 394 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 2 + - uid: 399 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - uid: 401 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 2 + - uid: 407 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 408 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - uid: 409 + components: + - type: Transform + pos: 20.5,3.5 + parent: 2 + - uid: 410 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - uid: 411 + components: + - type: Transform + pos: 22.5,3.5 + parent: 2 + - uid: 412 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 + - uid: 416 + components: + - type: Transform + pos: 27.5,3.5 + parent: 2 + - uid: 417 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 418 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 421 + components: + - type: Transform + pos: 28.5,2.5 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: 28.5,1.5 + parent: 2 + - uid: 423 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 424 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - uid: 425 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 + - uid: 426 + components: + - type: Transform + pos: 22.5,2.5 + parent: 2 + - uid: 427 + components: + - type: Transform + pos: 22.5,1.5 + parent: 2 + - uid: 428 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 429 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 2 + - uid: 430 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 2 + - uid: 431 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 2 + - uid: 432 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 2 + - uid: 433 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 2 + - uid: 434 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 + - uid: 435 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 2 + - uid: 436 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 + - uid: 437 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 2 + - uid: 455 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 2 + - uid: 456 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 2 + - uid: 457 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 2 + - uid: 458 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 2 + - uid: 459 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 2 + - uid: 460 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 + - uid: 461 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 2 + - uid: 462 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 2 + - uid: 463 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 + - uid: 464 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 2 + - uid: 465 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 + - uid: 467 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 468 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 470 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 2 + - uid: 486 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 487 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 2 + - uid: 488 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 + - uid: 489 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 + - uid: 491 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 2 + - uid: 499 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 522 + components: + - type: Transform + pos: -3.5,23.5 + parent: 2 + - uid: 523 + components: + - type: Transform + pos: -4.5,23.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: -5.5,23.5 + parent: 2 + - uid: 525 + components: + - type: Transform + pos: 10.5,23.5 + parent: 2 + - uid: 527 + components: + - type: Transform + pos: 4.5,23.5 + parent: 2 + - uid: 528 + components: + - type: Transform + pos: -2.5,23.5 + parent: 2 + - uid: 530 + components: + - type: Transform + pos: -6.5,23.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: -7.5,23.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: 7.5,23.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: 8.5,23.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: 5.5,23.5 + parent: 2 + - uid: 542 + components: + - type: Transform + pos: 6.5,23.5 + parent: 2 + - uid: 543 + components: + - type: Transform + pos: -8.5,23.5 + parent: 2 + - uid: 544 + components: + - type: Transform + pos: 9.5,23.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 + - uid: 601 + components: + - type: Transform + pos: -21.5,18.5 + parent: 2 + - uid: 602 + components: + - type: Transform + pos: -19.5,18.5 + parent: 2 + - uid: 603 + components: + - type: Transform + pos: -22.5,18.5 + parent: 2 + - uid: 604 + components: + - type: Transform + pos: -17.5,18.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: -16.5,15.5 + parent: 2 + - uid: 637 + components: + - type: Transform + pos: -1.5,17.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: -1.5,19.5 + parent: 2 + - uid: 644 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: -1.5,18.5 + parent: 2 + - uid: 647 + components: + - type: Transform + pos: 1.5,18.5 + parent: 2 + - uid: 653 + components: + - type: Transform + pos: -0.5,18.5 + parent: 2 + - uid: 654 + components: + - type: Transform + pos: -9.5,14.5 + parent: 2 + - uid: 655 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: -17.5,15.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: -15.5,18.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: -14.5,18.5 + parent: 2 + - uid: 662 + components: + - type: Transform + pos: -16.5,18.5 + parent: 2 + - uid: 677 + components: + - type: Transform + pos: -15.5,15.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: -20.5,15.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: 1.5,19.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: -16.5,23.5 + parent: 2 + - uid: 697 + components: + - type: Transform + pos: -21.5,15.5 + parent: 2 + - uid: 698 + components: + - type: Transform + pos: -22.5,15.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: -14.5,15.5 + parent: 2 + - uid: 749 + components: + - type: Transform + pos: -3.5,17.5 + parent: 2 + - uid: 750 + components: + - type: Transform + pos: -3.5,18.5 + parent: 2 + - uid: 751 + components: + - type: Transform + pos: -4.5,19.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: -18.5,17.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - uid: 786 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 2 + - uid: 787 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 2 + - uid: 788 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 789 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 792 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 2 + - uid: 793 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 2 + - uid: 794 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: -27.5,-13.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: -27.5,-14.5 + parent: 2 + - uid: 814 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 824 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 + - uid: 825 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 2 + - uid: 910 + components: + - type: Transform + pos: -18.5,16.5 + parent: 2 + - uid: 911 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 + - uid: 1137 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - uid: 1138 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - uid: 1139 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 + - uid: 1140 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - uid: 1145 + components: + - type: Transform + pos: -8.5,14.5 + parent: 2 + - uid: 1147 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - uid: 1149 + components: + - type: Transform + pos: -17.5,22.5 + parent: 2 + - uid: 1150 + components: + - type: Transform + pos: -16.5,24.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + pos: -17.5,12.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + pos: -18.5,12.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: -21.5,12.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 + - uid: 1482 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + pos: -15.5,12.5 + parent: 2 + - uid: 1550 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 1553 + components: + - type: Transform + pos: -18.5,13.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + pos: -14.5,12.5 + parent: 2 + - uid: 1681 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 1682 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 1683 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 1684 + components: + - type: Transform + pos: 12.5,16.5 + parent: 2 + - uid: 1685 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - uid: 1686 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 + - uid: 1687 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2 + - uid: 1688 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - uid: 1689 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 1691 + components: + - type: Transform + pos: 10.5,15.5 + parent: 2 + - uid: 1693 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 1694 + components: + - type: Transform + pos: 8.5,11.5 + parent: 2 + - uid: 1695 + components: + - type: Transform + pos: 10.5,11.5 + parent: 2 + - uid: 1696 + components: + - type: Transform + pos: 10.5,12.5 + parent: 2 + - uid: 1697 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 + - uid: 1700 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 1705 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 + - uid: 1724 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - uid: 1725 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - uid: 1727 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - uid: 1738 + components: + - type: Transform + pos: -7.5,14.5 + parent: 2 + - uid: 1747 + components: + - type: Transform + pos: -8.5,18.5 + parent: 2 + - uid: 1756 + components: + - type: Transform + pos: -9.5,18.5 + parent: 2 + - uid: 1757 + components: + - type: Transform + pos: -3.5,13.5 + parent: 2 + - uid: 1764 + components: + - type: Transform + pos: -9.5,15.5 + parent: 2 + - uid: 1765 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 1786 + components: + - type: Transform + pos: -9.5,19.5 + parent: 2 + - uid: 1787 + components: + - type: Transform + pos: -6.5,14.5 + parent: 2 + - uid: 1832 + components: + - type: Transform + pos: 15.5,16.5 + parent: 2 + - uid: 1946 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 2 + - uid: 1959 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 + - uid: 1981 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 + - uid: 1999 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 2 + - uid: 2051 + components: + - type: Transform + pos: -6.5,11.5 + parent: 2 + - uid: 2061 + components: + - type: Transform + pos: -5.5,12.5 + parent: 2 + - uid: 2062 + components: + - type: Transform + pos: -5.5,13.5 + parent: 2 + - uid: 2063 + components: + - type: Transform + pos: -2.5,18.5 + parent: 2 + - uid: 2078 + components: + - type: Transform + pos: -10.5,13.5 + parent: 2 + - uid: 2079 + components: + - type: Transform + pos: -9.5,16.5 + parent: 2 + - uid: 2080 + components: + - type: Transform + pos: -9.5,17.5 + parent: 2 + - uid: 2081 + components: + - type: Transform + pos: -10.5,12.5 + parent: 2 + - uid: 2082 + components: + - type: Transform + pos: -10.5,14.5 + parent: 2 + - uid: 2086 + components: + - type: Transform + pos: -10.5,11.5 + parent: 2 + - uid: 2087 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 + - uid: 2088 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 2175 + components: + - type: Transform + pos: 14.5,6.5 + parent: 2 + - uid: 2176 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 2177 + components: + - type: Transform + pos: 14.5,2.5 + parent: 2 + - uid: 2178 + components: + - type: Transform + pos: 14.5,1.5 + parent: 2 + - uid: 2179 + components: + - type: Transform + pos: 14.5,0.5 + parent: 2 + - uid: 2355 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 2501 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 2535 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 + - uid: 2536 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - uid: 2549 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 2591 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 2592 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 2 + - uid: 2593 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 2625 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 2626 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 2627 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - uid: 2629 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - uid: 2630 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 2631 + components: + - type: Transform + pos: 11.5,2.5 + parent: 2 + - uid: 2632 + components: + - type: Transform + pos: 11.5,1.5 + parent: 2 + - uid: 2633 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 2634 + components: + - type: Transform + pos: 11.5,6.5 + parent: 2 + - uid: 2635 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 2636 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 + - uid: 2640 + components: + - type: Transform + pos: 13.5,1.5 + parent: 2 + - uid: 2656 + components: + - type: Transform + pos: 3.5,14.5 + parent: 2 + - uid: 2657 + components: + - type: Transform + pos: 4.5,14.5 + parent: 2 + - uid: 2658 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 + - uid: 2659 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 2660 + components: + - type: Transform + pos: 7.5,14.5 + parent: 2 + - uid: 2663 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 2664 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 2665 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 2666 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 2667 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 2669 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 2670 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 2671 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 + - uid: 2683 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 2 + - uid: 2684 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 2 + - uid: 2685 + components: + - type: Transform + pos: -22.5,-0.5 + parent: 2 + - uid: 2686 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 2 + - uid: 2689 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - uid: 2690 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - uid: 2694 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 2 + - uid: 2695 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 2 + - uid: 2696 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 2 + - uid: 2697 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 2 + - uid: 2698 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 2 + - uid: 2699 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 2 + - uid: 2700 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 2 + - uid: 2701 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 2 + - uid: 2702 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 2 + - uid: 2703 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - uid: 2704 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 2706 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - uid: 2707 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 + - uid: 2708 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - uid: 2709 + components: + - type: Transform + pos: -18.5,4.5 + parent: 2 + - uid: 2715 + components: + - type: Transform + pos: -18.5,5.5 + parent: 2 + - uid: 2716 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 + - uid: 2717 + components: + - type: Transform + pos: -22.5,1.5 + parent: 2 + - uid: 2718 + components: + - type: Transform + pos: -22.5,2.5 + parent: 2 + - uid: 2719 + components: + - type: Transform + pos: -22.5,3.5 + parent: 2 + - uid: 2720 + components: + - type: Transform + pos: -22.5,4.5 + parent: 2 + - uid: 2721 + components: + - type: Transform + pos: -22.5,5.5 + parent: 2 + - uid: 2722 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 + - uid: 2723 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 2 + - uid: 2724 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 2 + - uid: 2725 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 2 + - uid: 2726 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 2 + - uid: 2727 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 2728 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 2729 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 2 + - uid: 2730 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - uid: 2731 + components: + - type: Transform + pos: -10.5,1.5 + parent: 2 + - uid: 2732 + components: + - type: Transform + pos: -10.5,2.5 + parent: 2 + - uid: 2733 + components: + - type: Transform + pos: -10.5,3.5 + parent: 2 + - uid: 2734 + components: + - type: Transform + pos: -10.5,4.5 + parent: 2 + - uid: 2735 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 + - uid: 2736 + components: + - type: Transform + pos: -14.5,5.5 + parent: 2 + - uid: 2737 + components: + - type: Transform + pos: -14.5,4.5 + parent: 2 + - uid: 2738 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 2739 + components: + - type: Transform + pos: -14.5,2.5 + parent: 2 + - uid: 2740 + components: + - type: Transform + pos: -14.5,1.5 + parent: 2 + - uid: 2741 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 + - uid: 2742 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 + - uid: 2743 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 2 + - uid: 2744 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 2 + - uid: 2745 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 + - uid: 2746 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 2747 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 2748 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 2 + - uid: 2749 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 2 + - uid: 2750 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - uid: 2753 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 2754 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - uid: 2755 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 2756 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 2757 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 2758 + components: + - type: Transform + pos: -7.5,5.5 + parent: 2 + - uid: 2759 + components: + - type: Transform + pos: -5.5,6.5 + parent: 2 + - uid: 2761 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 + - uid: 2762 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 + - uid: 2763 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 2764 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - uid: 2765 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - uid: 2766 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 2 + - uid: 2767 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 + - uid: 2770 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 2 + - uid: 2771 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - uid: 2772 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - uid: 2773 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - uid: 2774 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 2 + - uid: 2775 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 2776 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 2777 + components: + - type: Transform + pos: -7.5,3.5 + parent: 2 + - uid: 2778 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 2779 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 + - uid: 2780 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 2781 + components: + - type: Transform + pos: -3.5,3.5 + parent: 2 + - uid: 2782 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 2 + - uid: 2783 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 2784 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 + - uid: 2785 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 + - uid: 2786 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - uid: 2787 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 2 + - uid: 2788 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 2789 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 2 + - uid: 2790 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 + - uid: 2791 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 2 + - uid: 2792 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 2 + - uid: 2793 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - uid: 2834 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 2835 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 2 + - uid: 2836 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + - uid: 2837 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 2 + - uid: 2838 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 2 + - uid: 2839 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 2 + - uid: 2840 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 2 + - uid: 2841 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 2 + - uid: 2842 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - uid: 2843 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 2 + - uid: 2844 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 2 + - uid: 2845 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 + - uid: 2846 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - uid: 2847 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 2848 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 + - uid: 2849 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 2 + - uid: 2850 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 2851 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 2852 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 2855 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 2856 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 2861 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 2865 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 2 + - uid: 2866 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 2 + - uid: 2867 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 + - uid: 2868 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 + - uid: 2869 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 2870 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - uid: 2871 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 + - uid: 2872 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 2873 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - uid: 2874 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - uid: 2876 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - uid: 2877 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - uid: 2878 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 2879 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 2880 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 2881 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 + - uid: 2882 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 2883 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 + - uid: 2884 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - uid: 2885 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - uid: 2887 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 + - uid: 2888 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - uid: 2889 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 2890 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 2891 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 2893 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 2894 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - uid: 2895 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - uid: 2896 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 2901 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 2902 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 2904 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - uid: 2905 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 2906 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 2907 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 2908 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 2909 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 2910 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 2911 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 2912 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - uid: 2913 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - uid: 2914 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 2915 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 2916 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 2917 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 2918 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - uid: 2964 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 2965 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 2968 + components: + - type: Transform + pos: 1.5,15.5 + parent: 2 + - uid: 2969 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 + - uid: 2970 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 2971 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 2972 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 3011 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 3014 + components: + - type: Transform + pos: -14.5,9.5 + parent: 2 + - uid: 3015 + components: + - type: Transform + pos: -13.5,9.5 + parent: 2 + - uid: 3016 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 + - uid: 3017 + components: + - type: Transform + pos: -11.5,9.5 + parent: 2 + - uid: 3018 + components: + - type: Transform + pos: -10.5,9.5 + parent: 2 + - uid: 3019 + components: + - type: Transform + pos: -9.5,9.5 + parent: 2 + - uid: 3020 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 3021 + components: + - type: Transform + pos: -7.5,9.5 + parent: 2 + - uid: 3022 + components: + - type: Transform + pos: -6.5,9.5 + parent: 2 + - uid: 3023 + components: + - type: Transform + pos: -5.5,9.5 + parent: 2 + - uid: 3024 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - uid: 3025 + components: + - type: Transform + pos: -3.5,9.5 + parent: 2 + - uid: 3026 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 + - uid: 3027 + components: + - type: Transform + pos: -1.5,9.5 + parent: 2 + - uid: 3028 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - uid: 3030 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - uid: 3033 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 + - uid: 3035 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 3098 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - uid: 3099 + components: + - type: Transform + pos: 0.5,25.5 + parent: 2 + - uid: 3101 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 +- proto: CableApcStack10 + entities: + - uid: 87 + components: + - type: Transform + pos: -2.433465,13.246687 + parent: 2 +- proto: CableHV + entities: + - uid: 33 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: -10.5,15.5 + parent: 2 + - uid: 321 + components: + - type: Transform + pos: -25.5,2.5 + parent: 2 + - uid: 526 + components: + - type: Transform + pos: -11.5,15.5 + parent: 2 + - uid: 858 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 874 + components: + - type: Transform + pos: 12.5,16.5 + parent: 2 + - uid: 875 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 876 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 877 + components: + - type: Transform + pos: 9.5,16.5 + parent: 2 + - uid: 891 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 + - uid: 892 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 2 + - uid: 897 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 898 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 899 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - uid: 901 + components: + - type: Transform + pos: -15.5,10.5 + parent: 2 + - uid: 969 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 970 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 + - uid: 971 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 972 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 + - uid: 973 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 975 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 2 + - uid: 976 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 2 + - uid: 978 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 979 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 + - uid: 980 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: -8.5,16.5 + parent: 2 + - uid: 1492 + components: + - type: Transform + pos: -7.5,15.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + pos: -8.5,15.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 + - uid: 1527 + components: + - type: Transform + pos: -9.5,16.5 + parent: 2 + - uid: 1831 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2 + - uid: 2320 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 2322 + components: + - type: Transform + pos: 17.5,15.5 + parent: 2 + - uid: 2387 + components: + - type: Transform + pos: 16.5,15.5 + parent: 2 + - uid: 2388 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 2390 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 2391 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - uid: 2393 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 + - uid: 2490 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 + - uid: 2495 + components: + - type: Transform + pos: 15.5,12.5 + parent: 2 + - uid: 2499 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 2502 + components: + - type: Transform + pos: -25.5,1.5 + parent: 2 + - uid: 2505 + components: + - type: Transform + pos: -24.5,1.5 + parent: 2 + - uid: 2506 + components: + - type: Transform + pos: -23.5,1.5 + parent: 2 + - uid: 2507 + components: + - type: Transform + pos: -22.5,1.5 + parent: 2 + - uid: 2508 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 2509 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 2510 + components: + - type: Transform + pos: -19.5,1.5 + parent: 2 + - uid: 2511 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - uid: 2512 + components: + - type: Transform + pos: -17.5,1.5 + parent: 2 + - uid: 2514 + components: + - type: Transform + pos: -16.5,1.5 + parent: 2 + - uid: 2515 + components: + - type: Transform + pos: -15.5,1.5 + parent: 2 + - uid: 2516 + components: + - type: Transform + pos: -14.5,1.5 + parent: 2 + - uid: 2517 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 + - uid: 2518 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 2519 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - uid: 2520 + components: + - type: Transform + pos: -10.5,1.5 + parent: 2 + - uid: 2521 + components: + - type: Transform + pos: -9.5,1.5 + parent: 2 + - uid: 2522 + components: + - type: Transform + pos: -8.5,1.5 + parent: 2 + - uid: 2523 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 + - uid: 2524 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 + - uid: 2525 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - uid: 2526 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 2527 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 + - uid: 2528 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 + - uid: 2529 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 2530 + components: + - type: Transform + pos: -5.5,6.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + pos: -5.5,7.5 + parent: 2 + - uid: 2532 + components: + - type: Transform + pos: -5.5,8.5 + parent: 2 + - uid: 2533 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 + - uid: 2537 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 + - uid: 2538 + components: + - type: Transform + pos: 10.5,11.5 + parent: 2 + - uid: 2539 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 2540 + components: + - type: Transform + pos: 10.5,9.5 + parent: 2 + - uid: 2541 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 2542 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 2543 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 2544 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - uid: 2545 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 2546 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 2547 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - uid: 2548 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 2553 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 2554 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 + - uid: 2555 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 2556 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 2558 + components: + - type: Transform + pos: -1.5,8.5 + parent: 2 + - uid: 2559 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - uid: 2560 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 2561 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 2562 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 +- proto: CableMV + entities: + - uid: 20 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - uid: 164 + components: + - type: Transform + pos: -2.5,4.5 + parent: 2 + - uid: 165 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - uid: 166 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 301 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - uid: 379 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 882 + components: + - type: Transform + pos: 9.5,16.5 + parent: 2 + - uid: 883 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - uid: 884 + components: + - type: Transform + pos: 9.5,14.5 + parent: 2 + - uid: 885 + components: + - type: Transform + pos: 9.5,13.5 + parent: 2 + - uid: 887 + components: + - type: Transform + pos: 9.5,12.5 + parent: 2 + - uid: 888 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 889 + components: + - type: Transform + pos: 8.5,11.5 + parent: 2 + - uid: 995 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 996 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 + - uid: 997 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 + - uid: 998 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 + - uid: 999 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 2 + - uid: 1002 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - uid: 1003 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - uid: 1008 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 2 + - uid: 1011 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 2 + - uid: 1013 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 + - uid: 1014 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 + - uid: 1047 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 2 + - uid: 1048 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 2 + - uid: 1049 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 2 + - uid: 1107 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 1341 + components: + - type: Transform + pos: -2.5,0.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - uid: 1489 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - uid: 1490 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: -7.5,8.5 + parent: 2 + - uid: 1563 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 1566 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 1567 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 1568 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 1569 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 1576 + components: + - type: Transform + pos: -8.5,8.5 + parent: 2 + - uid: 1605 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - uid: 1616 + components: + - type: Transform + pos: -9.5,8.5 + parent: 2 + - uid: 1617 + components: + - type: Transform + pos: -10.5,8.5 + parent: 2 + - uid: 1754 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 + - uid: 1755 + components: + - type: Transform + pos: -12.5,8.5 + parent: 2 + - uid: 1770 + components: + - type: Transform + pos: -13.5,8.5 + parent: 2 + - uid: 2104 + components: + - type: Transform + pos: 14.5,6.5 + parent: 2 + - uid: 2105 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - uid: 2106 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 + - uid: 2107 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 + - uid: 2108 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 2304 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 2305 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 2313 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 2446 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 2455 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 2481 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 2482 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 2566 + components: + - type: Transform + pos: 10.5,11.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 2571 + components: + - type: Transform + pos: 10.5,9.5 + parent: 2 + - uid: 2572 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 2573 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 2574 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 2575 + components: + - type: Transform + pos: 11.5,6.5 + parent: 2 + - uid: 2576 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - uid: 2577 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 2578 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 2579 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - uid: 2580 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 2581 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - uid: 2582 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 2583 + components: + - type: Transform + pos: -6.5,7.5 + parent: 2 + - uid: 2584 + components: + - type: Transform + pos: -6.5,8.5 + parent: 2 + - uid: 2585 + components: + - type: Transform + pos: -5.5,8.5 + parent: 2 + - uid: 2586 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 2587 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 2588 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - uid: 2589 + components: + - type: Transform + pos: -1.5,8.5 + parent: 2 + - uid: 2595 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 2597 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 2598 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 + - uid: 2599 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 2600 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 2601 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - uid: 2602 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 2603 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 2606 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 2608 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 2614 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - uid: 2616 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 + - uid: 2620 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 2621 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 2622 + components: + - type: Transform + pos: -0.5,4.5 + parent: 2 + - uid: 2623 + components: + - type: Transform + pos: -1.5,4.5 + parent: 2 + - uid: 2624 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 2642 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 2643 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 2644 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 + - uid: 2645 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 2646 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 2647 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - uid: 2648 + components: + - type: Transform + pos: 4.5,14.5 + parent: 2 + - uid: 2655 + components: + - type: Transform + pos: 3.5,14.5 + parent: 2 + - uid: 2668 + components: + - type: Transform + pos: -25.5,2.5 + parent: 2 + - uid: 2672 + components: + - type: Transform + pos: -25.5,1.5 + parent: 2 + - uid: 2673 + components: + - type: Transform + pos: -24.5,1.5 + parent: 2 + - uid: 2674 + components: + - type: Transform + pos: -23.5,1.5 + parent: 2 + - uid: 2675 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - uid: 2676 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 2 + - uid: 2677 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 2 + - uid: 2752 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 2794 + components: + - type: Transform + pos: -22.5,-0.5 + parent: 2 + - uid: 2795 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 2 + - uid: 2796 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - uid: 2797 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - uid: 2798 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 2 + - uid: 2799 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 + - uid: 2800 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 2 + - uid: 2802 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 2 + - uid: 2803 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 2 + - uid: 2804 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 2 + - uid: 2805 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 2806 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 2807 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 2 + - uid: 2808 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - uid: 2809 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - uid: 2810 + components: + - type: Transform + pos: -8.5,0.5 + parent: 2 + - uid: 2811 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - uid: 2812 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 2813 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - uid: 2814 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 2 + - uid: 2815 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 + - uid: 2816 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 2 + - uid: 2817 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - uid: 2818 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 + - uid: 2819 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 + - uid: 2820 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - uid: 2821 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 2 + - uid: 2822 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 2823 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 2 + - uid: 2824 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 + - uid: 2825 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 2 + - uid: 2826 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 2 + - uid: 2827 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 2 + - uid: 2828 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 2 + - uid: 2829 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 2 + - uid: 2830 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 2 + - uid: 2831 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 2 + - uid: 2832 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + - uid: 2833 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 2 + - uid: 2919 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 + - uid: 2920 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 2921 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 2922 + components: + - type: Transform + pos: 14.5,2.5 + parent: 2 + - uid: 2923 + components: + - type: Transform + pos: 14.5,1.5 + parent: 2 + - uid: 2924 + components: + - type: Transform + pos: 14.5,0.5 + parent: 2 + - uid: 2925 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 2 + - uid: 2926 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 2931 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - uid: 2944 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 2945 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 2 + - uid: 2946 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 2947 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 + - uid: 2948 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - uid: 2949 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - uid: 2951 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 2953 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 2955 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 2956 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 + - uid: 2957 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 2963 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 2973 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 2974 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 2975 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 2976 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 2977 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - uid: 2978 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 2981 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - uid: 2982 + components: + - type: Transform + pos: 0.5,19.5 + parent: 2 + - uid: 2983 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 + - uid: 2984 + components: + - type: Transform + pos: 0.5,21.5 + parent: 2 + - uid: 2985 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - uid: 2986 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 2987 + components: + - type: Transform + pos: -0.5,23.5 + parent: 2 + - uid: 2988 + components: + - type: Transform + pos: -1.5,23.5 + parent: 2 + - uid: 2996 + components: + - type: Transform + pos: -1.5,24.5 + parent: 2 + - uid: 2999 + components: + - type: Transform + pos: -1.5,25.5 + parent: 2 + - uid: 3003 + components: + - type: Transform + pos: -15.5,8.5 + parent: 2 + - uid: 3004 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 + - uid: 3005 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 3007 + components: + - type: Transform + pos: -16.5,9.5 + parent: 2 + - uid: 3036 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 + - uid: 3038 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 3045 + components: + - type: Transform + pos: -17.5,9.5 + parent: 2 + - uid: 3046 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 3047 + components: + - type: Transform + pos: -17.5,11.5 + parent: 2 + - uid: 3048 + components: + - type: Transform + pos: -17.5,12.5 + parent: 2 + - uid: 3049 + components: + - type: Transform + pos: -17.5,13.5 + parent: 2 + - uid: 3050 + components: + - type: Transform + pos: -17.5,14.5 + parent: 2 + - uid: 3051 + components: + - type: Transform + pos: -17.5,15.5 + parent: 2 + - uid: 3052 + components: + - type: Transform + pos: -17.5,16.5 + parent: 2 + - uid: 3053 + components: + - type: Transform + pos: -17.5,17.5 + parent: 2 + - uid: 3054 + components: + - type: Transform + pos: -17.5,18.5 + parent: 2 + - uid: 3055 + components: + - type: Transform + pos: -17.5,19.5 + parent: 2 + - uid: 3056 + components: + - type: Transform + pos: -18.5,19.5 + parent: 2 + - uid: 3057 + components: + - type: Transform + pos: -18.5,20.5 + parent: 2 + - uid: 3058 + components: + - type: Transform + pos: -18.5,21.5 + parent: 2 + - uid: 3059 + components: + - type: Transform + pos: -18.5,22.5 + parent: 2 + - uid: 3060 + components: + - type: Transform + pos: -17.5,22.5 + parent: 2 + - uid: 3061 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - uid: 3067 + components: + - type: Transform + pos: -16.5,23.5 + parent: 2 + - uid: 3069 + components: + - type: Transform + pos: -16.5,24.5 + parent: 2 + - uid: 3070 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 + - uid: 3073 + components: + - type: Transform + pos: -15.5,13.5 + parent: 2 + - uid: 3074 + components: + - type: Transform + pos: -14.5,13.5 + parent: 2 + - uid: 3076 + components: + - type: Transform + pos: -13.5,13.5 + parent: 2 + - uid: 3080 + components: + - type: Transform + pos: -12.5,13.5 + parent: 2 + - uid: 3082 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 + - uid: 3083 + components: + - type: Transform + pos: -10.5,13.5 + parent: 2 + - uid: 3085 + components: + - type: Transform + pos: -10.5,14.5 + parent: 2 + - uid: 3088 + components: + - type: Transform + pos: -9.5,14.5 + parent: 2 + - uid: 3090 + components: + - type: Transform + pos: -8.5,14.5 + parent: 2 + - uid: 3091 + components: + - type: Transform + pos: -7.5,14.5 + parent: 2 + - uid: 3092 + components: + - type: Transform + pos: -6.5,14.5 + parent: 2 + - uid: 3093 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - uid: 3094 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 3095 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - uid: 3096 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 + - uid: 3097 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 + - uid: 4813 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 4815 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 2 + - uid: 4816 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 2 + - uid: 4817 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 2 + - uid: 4818 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 2 + - uid: 4819 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 4820 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 2 + - uid: 4821 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 4822 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 2 + - uid: 4823 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 2 + - uid: 4824 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 2 + - uid: 4825 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 2 + - uid: 4826 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 2 + - uid: 4883 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 2 +- proto: CableTerminal + entities: + - uid: 2492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,15.5 + parent: 2 + - uid: 2493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,12.5 + parent: 2 +- proto: CarpetBlue + entities: + - uid: 5129 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - uid: 5130 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - uid: 5131 + components: + - type: Transform + pos: -3.5,18.5 + parent: 2 + - uid: 5132 + components: + - type: Transform + pos: -3.5,17.5 + parent: 2 + - uid: 5133 + components: + - type: Transform + pos: -3.5,16.5 + parent: 2 + - uid: 5134 + components: + - type: Transform + pos: -4.5,16.5 + parent: 2 + - uid: 5135 + components: + - type: Transform + pos: -4.5,19.5 + parent: 2 + - uid: 5136 + components: + - type: Transform + pos: -3.5,19.5 + parent: 2 +- proto: CarpetPurple + entities: + - uid: 1056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,21.5 + parent: 2 + - uid: 1057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,21.5 + parent: 2 + - uid: 1059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,22.5 + parent: 2 + - uid: 1070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,22.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,22.5 + parent: 2 + - uid: 1072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,21.5 + parent: 2 +- proto: Catwalk + entities: + - uid: 893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,16.5 + parent: 2 + - uid: 894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,16.5 + parent: 2 + - uid: 895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 2 + - uid: 896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 2 + - uid: 919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,14.5 + parent: 2 + - uid: 920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,16.5 + parent: 2 + - uid: 921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,15.5 + parent: 2 + - uid: 922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,14.5 + parent: 2 + - uid: 923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,13.5 + parent: 2 + - uid: 924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,12.5 + parent: 2 + - uid: 925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,11.5 + parent: 2 + - uid: 926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,15.5 + parent: 2 + - uid: 1173 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - uid: 1174 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 + - uid: 1175 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 2 + - uid: 1178 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - uid: 1179 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 + - uid: 1181 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 + - uid: 1184 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 2 + - uid: 1185 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 2 + - uid: 1186 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 2 + - uid: 1187 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 2 + - uid: 1188 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 2 + - uid: 1190 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 2 + - uid: 1191 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + pos: -14.5,-16.5 + parent: 2 + - uid: 1193 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 2 + - uid: 1195 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 2 + - uid: 1196 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 2 + - uid: 1197 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: -8.5,-19.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 2 + - uid: 1200 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 1221 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 2 + - uid: 1222 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 2 + - uid: 1224 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 2 + - uid: 1225 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 1226 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 2 + - uid: 1227 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 2 + - uid: 1228 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 2 + - uid: 1229 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: 26.5,-20.5 + parent: 2 + - uid: 1231 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 2 + - uid: 1237 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 2 + - uid: 1241 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 2 + - uid: 1244 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 + - uid: 1245 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 2 + - uid: 1246 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 2 + - uid: 1247 + components: + - type: Transform + pos: 32.5,-12.5 + parent: 2 + - uid: 1248 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 1250 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 2 + - uid: 1253 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 + - uid: 1254 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 2 + - uid: 1255 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 2 + - uid: 1256 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 1257 + components: + - type: Transform + pos: 32.5,0.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + pos: 33.5,0.5 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: 34.5,1.5 + parent: 2 + - uid: 1260 + components: + - type: Transform + pos: 34.5,2.5 + parent: 2 + - uid: 1261 + components: + - type: Transform + pos: 33.5,4.5 + parent: 2 + - uid: 1262 + components: + - type: Transform + pos: 34.5,4.5 + parent: 2 + - uid: 1263 + components: + - type: Transform + pos: 32.5,4.5 + parent: 2 + - uid: 1264 + components: + - type: Transform + pos: 31.5,5.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: 34.5,3.5 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - uid: 1268 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 2 + - uid: 1269 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 2 + - uid: 1270 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 2 + - uid: 1271 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 2 + - uid: 1272 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 2 + - uid: 1273 + components: + - type: Transform + pos: 22.5,-15.5 + parent: 2 + - uid: 1274 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 + - uid: 1275 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 2 + - uid: 1277 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 2 + - uid: 1278 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 2 + - uid: 1279 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 2 + - uid: 1280 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - uid: 1282 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 2 + - uid: 1287 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 2 + - uid: 1310 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 2 + - uid: 1311 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - uid: 1313 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 1314 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 + - uid: 1315 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 2 + - uid: 1316 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 2 + - uid: 1317 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 2 + - uid: 1318 + components: + - type: Transform + pos: -11.5,-12.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,13.5 + parent: 2 + - uid: 1635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,12.5 + parent: 2 + - uid: 1637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,11.5 + parent: 2 + - uid: 1772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,13.5 + parent: 2 + - uid: 1958 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 2070 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 2 + - uid: 2153 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 2321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,12.5 + parent: 2 + - uid: 2343 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 2345 + components: + - type: Transform + pos: 14.5,0.5 + parent: 2 + - uid: 2352 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - uid: 2353 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 2381 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 2 + - uid: 2382 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 2 + - uid: 2392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,11.5 + parent: 2 + - uid: 2468 + components: + - type: Transform + pos: 14.5,6.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + pos: 14.5,1.5 + parent: 2 + - uid: 2500 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 2 + - uid: 2557 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 + - uid: 2594 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 2604 + components: + - type: Transform + pos: 14.5,2.5 + parent: 2 + - uid: 2959 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 + - uid: 2960 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 2961 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - uid: 2962 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 +- proto: Chair + entities: + - uid: 915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,24.5 + parent: 2 + - uid: 916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,22.5 + parent: 2 + - uid: 939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,22.5 + parent: 2 + - uid: 940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,22.5 + parent: 2 + - uid: 941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,22.5 + parent: 2 + - uid: 985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,24.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-6.5 + parent: 2 + - uid: 1331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-6.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-6.5 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.6874294,3.801773 + parent: 2 + - uid: 297 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: -22.5,12.5 + parent: 2 + - uid: 744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,17.5 + parent: 2 + - uid: 2116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.7188206,4.270523 + parent: 2 +- proto: ChairWood + entities: + - uid: 1029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-16.5 + parent: 2 +- proto: ChemDispenserEmpty + entities: + - uid: 905 + components: + - type: Transform + pos: 9.5,18.5 + parent: 2 +- proto: ChemicalPayload + entities: + - uid: 529 + components: + - type: Transform + pos: -2.527215,13.746687 + parent: 2 +- proto: ChemistryEmptyBottle03 + entities: + - uid: 907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.346972,18.260975 + parent: 2 +- proto: CigaretteSyndicate + entities: + - uid: 5006 + components: + - type: Transform + parent: 5004 + - type: Physics + canCollide: False +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 1365 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 + - uid: 1366 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 2 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 1374 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + pos: 33.5,-21.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 + - uid: 1376 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 2 +- proto: ClosetWall + entities: + - uid: 1377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.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 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1378 + - 1379 +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 1380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-7.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.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 + - uid: 1382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-14.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 +- proto: ClosetWallOrange + entities: + - uid: 94 + components: + - type: Transform + pos: -22.5,7.5 + parent: 2 + - uid: 2315 + components: + - type: Transform + pos: -18.5,7.5 + parent: 2 + - uid: 2318 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 + - uid: 2339 + components: + - type: Transform + pos: -10.5,7.5 + parent: 2 +- proto: ClothingBackpackDuffelSyndicateHardsuitBundle + entities: + - uid: 1384 + components: + - type: Transform + pos: 32.4127,2.5934563 + parent: 2 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]90%[/color]. + priority: 0 + component: Armor + - message: Понижает вашу скорость бега на [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + title: null +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 511 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 95 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 2 +- proto: ClothingHeadHatCone + entities: + - uid: 1386 + components: + - type: Transform + pos: 33.811714,4.802536 + parent: 2 + - uid: 1387 + components: + - type: Transform + pos: 34.7562,4.802536 + parent: 2 + - uid: 1388 + components: + - type: Transform + pos: 34.2692,4.832034 + parent: 2 + - uid: 5123 + components: + - type: Transform + pos: -10.493663,-19.213833 + parent: 2 + - uid: 5124 + components: + - type: Transform + pos: -10.446788,-19.604458 + parent: 2 + - uid: 5125 + components: + - type: Transform + pos: -11.274913,-11.156652 + parent: 2 + - uid: 5126 + components: + - type: Transform + pos: -11.274913,-11.578527 + parent: 2 +- proto: ClothingHeadHatUshanka + entities: + - uid: 1390 + components: + - type: Transform + pos: -13.461011,-13.975373 + parent: 2 + - uid: 3533 + components: + - type: MetaData + desc: Идеально подходит для зимы в Серибе, da? + - type: Transform + pos: -26.189486,-0.5671978 + parent: 2 +- proto: ClothingMaskClown + entities: + - uid: 1392 + components: + - type: Transform + pos: -23.466145,9.350223 + parent: 2 +- proto: ClothingNeckSecuritymedal + entities: + - uid: 614 + components: + - type: Transform + pos: -18.5,23.5 + parent: 2 +- proto: ClothingNeckUSSPPin + entities: + - uid: 1395 + components: + - type: Transform + pos: -13.451035,-14.443943 + parent: 2 + - uid: 4843 + components: + - type: Transform + pos: -26.720736,-0.5203228 + parent: 2 +- proto: ClothingOuterCoatSpaceAsshole + entities: + - uid: 1397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.584091,-20.541527 + parent: 2 +- proto: ClothingShoesClownLarge + entities: + - uid: 1399 + components: + - type: Transform + pos: -23.480902,8.642258 + parent: 2 +- proto: ClothingUniformJumpsuitClown + entities: + - uid: 1400 + components: + - type: Transform + pos: -23.466145,8.951992 + parent: 2 +- proto: Cobweb1 + entities: + - uid: 1403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-13.5 + parent: 2 + - uid: 1404 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 1405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-10.5 + parent: 2 + - uid: 1406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-9.5 + parent: 2 + - uid: 1407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-7.5 + parent: 2 + - uid: 1408 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 1409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-8.5 + parent: 2 + - uid: 1410 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-15.5 + parent: 2 + - uid: 1412 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-0.5 + parent: 2 + - uid: 1415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,4.5 + parent: 2 + - uid: 1418 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 2 + - uid: 1421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-11.5 + parent: 2 + - uid: 1422 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 2 + - uid: 1423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-19.5 + parent: 2 + - uid: 1424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-17.5 + parent: 2 + - uid: 5017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-5.5 + parent: 2 +- proto: Cobweb2 + entities: + - uid: 1425 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-13.5 + parent: 2 + - uid: 1427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-12.5 + parent: 2 + - uid: 1428 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-12.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-11.5 + parent: 2 + - uid: 1431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-11.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-13.5 + parent: 2 + - uid: 1433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-11.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-5.5 + parent: 2 + - uid: 5015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-6.5 + parent: 2 + - uid: 5016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-5.5 + parent: 2 + - uid: 5021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-5.5 + parent: 2 + - uid: 5022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-6.5 + parent: 2 +- proto: CockroachTimedSpawner + entities: + - uid: 1438 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 +- proto: CombatKnife + entities: + - uid: 1378 + components: + - type: Transform + parent: 1377 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComfyChair + entities: + - uid: 1476 + components: + - type: Transform + pos: -18.5,17.5 + parent: 2 +- proto: ComputerAlert + entities: + - uid: 1163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,16.5 + parent: 2 +- proto: ComputerAnalysisConsole + entities: + - uid: 1442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2989: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: ComputerBroken + entities: + - uid: 1443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-11.5 + parent: 2 + - uid: 1444 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 2 +- proto: ComputerComms + entities: + - uid: 100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,16.5 + parent: 2 +- proto: ComputerCrewMonitoring + entities: + - uid: 1840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,17.5 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 2271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,13.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 2 + - uid: 879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,14.5 + parent: 2 +- proto: ComputerStationRecords + entities: + - uid: 1841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,16.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 1481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,18.5 + parent: 2 + - uid: 2096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 2 +- proto: ComputerTelevision + entities: + - uid: 1878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-15.5 + parent: 2 + - uid: 5090 + components: + - type: Transform + pos: 27.5,6.5 + parent: 2 +- proto: CrateEngineeringCableHV + entities: + - uid: 1464 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 2 +- proto: CrateFreezer + entities: + - uid: 1466 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 2 +- proto: CrateFunBoardGames + entities: + - uid: 1216 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 +- proto: CrateFunPlushie + entities: + - uid: 1467 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 +- proto: CrateFunToyBox + entities: + - uid: 1468 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 +- proto: CrateHydroponicsTools + entities: + - uid: 2130 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 2 +- proto: CrateMedicalSecure + entities: + - uid: 168 + components: + - type: Transform + pos: 5.5,20.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 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 169 + - 170 + - 172 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 184 + components: + - type: Transform + pos: 6.5,20.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 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 185 + - 186 + - 187 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 188 + components: + - type: Transform + pos: 7.5,20.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 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 229 + - 236 + - 237 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateServiceTheatre + entities: + - uid: 1471 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 2 +- proto: CrateTrashCart + entities: + - uid: 2258 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 2 +- proto: CrateVendingMachineRestockChemVendFilled + entities: + - uid: 239 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 +- proto: CrewMonitoringServer + entities: + - uid: 1843 + components: + - type: Transform + pos: -2.5,19.5 + parent: 2 +- proto: Crowbar + entities: + - uid: 1474 + components: + - type: Transform + pos: 29.555098,1.6958946 + parent: 2 +- proto: CrowbarRed + entities: + - uid: 1475 + components: + - type: Transform + pos: -10.543692,-5.4498596 + parent: 2 +- proto: CyberPen + entities: + - uid: 1477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.200603,-14.192375 + parent: 2 +- proto: CyborgEndoskeleton + entities: + - uid: 1478 + components: + - type: Transform + pos: 23.595257,-10.203423 + parent: 2 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 1480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 2 +- proto: DehydratedSpaceCarp + entities: + - uid: 1483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.015306,-10.282484 + parent: 2 + - uid: 1484 + components: + - type: Transform + pos: 26.640306,-14.219984 + parent: 2 + - uid: 1485 + components: + - type: Transform + pos: 22.687181,-14.094984 + parent: 2 +- proto: DisposalBend + entities: + - uid: 1501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,19.5 + parent: 2 + - uid: 1512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 +- proto: DisposalPipe + entities: + - uid: 1539 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 1540 + components: + - type: Transform + pos: 26.5,6.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + pos: 26.5,5.5 + parent: 2 + - uid: 1542 + components: + - type: Transform + pos: 26.5,4.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 + - uid: 1544 + components: + - type: Transform + pos: 26.5,2.5 + parent: 2 + - uid: 1545 + components: + - type: Transform + pos: 26.5,1.5 + parent: 2 + - uid: 1546 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 1547 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 1548 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 1549 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - uid: 1612 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + pos: -4.5,16.5 + parent: 2 + - uid: 1614 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 1618 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 + - uid: 1698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 2 + - uid: 1701 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - uid: 1722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 1737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,19.5 + parent: 2 +- proto: DonkpocketBoxSpawner + entities: + - uid: 552 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - uid: 1144 + components: + - type: Transform + pos: -23.5,19.5 + parent: 2 + - uid: 2427 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 2 +- proto: DresserFilled + entities: + - uid: 1777 + components: + - type: Transform + pos: 29.5,5.5 + parent: 2 + - uid: 1778 + components: + - type: Transform + pos: 29.5,4.5 + parent: 2 + - uid: 1779 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - uid: 1780 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 + - uid: 1781 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 + - uid: 1782 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 2 +- proto: DrinkJar + entities: + - uid: 4809 + components: + - type: Transform + pos: 25.721022,-15.816264 + parent: 2 +- proto: DrinkJarWhat + entities: + - uid: 4810 + components: + - type: Transform + pos: 32.50227,-19.498255 + parent: 2 +- proto: DrinkWaterCup + entities: + - uid: 85 + components: + - type: Transform + pos: -9.641878,-3.1974373 + parent: 2 + - uid: 92 + components: + - type: Transform + pos: -9.485628,-3.4630623 + parent: 2 + - uid: 2112 + components: + - type: Transform + pos: -9.907503,-3.4943123 + parent: 2 +- proto: EggSpider + entities: + - uid: 1788 + components: + - type: Transform + pos: 33.16626,-13.203593 + parent: 2 + - uid: 1789 + components: + - type: Transform + pos: 33.365486,-13.026602 + parent: 2 + - uid: 1790 + components: + - type: Transform + pos: 33.365486,-13.269965 + parent: 2 +- proto: ExplosivesSignMed + entities: + - uid: 3128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,10.5 + parent: 2 + - uid: 3129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,10.5 + parent: 2 +- proto: FaxMachineBase + entities: + - uid: 663 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 + - uid: 2121 + components: + - type: Transform + pos: -1.5,3.5 + parent: 2 +- proto: FaxMachineSyndie + entities: + - uid: 1808 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 2 +- proto: FireAlarm + entities: + - uid: 2077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,25.5 + parent: 2 +- proto: Firelock + entities: + - uid: 656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,25.5 + parent: 2 + - uid: 1552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,25.5 + parent: 2 + - uid: 1730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,25.5 + parent: 2 + - uid: 1811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 39 + - 36 + - uid: 1812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 39 + - 37 + - uid: 1816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 39 + - 38 + - uid: 1817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 39 + - uid: 1818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 39 + - uid: 1825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 40 + - 26 + - uid: 1826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 40 + - 26 + - uid: 1827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 26 + - uid: 1828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 26 + - uid: 1835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 2 + - uid: 1842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 46 +- proto: FloodlightBroken + entities: + - uid: 1880 + components: + - type: Transform + pos: -24.596643,-10.37954 + parent: 2 +- proto: FloorDrain + entities: + - uid: 15 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 1881 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 2383 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 2384 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 2445 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloraTree03 + entities: + - uid: 22 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.78612614,-8.396278 + parent: 2 + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.1455011,-9.474403 + parent: 2 + - uid: 2101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.19237614,-9.365028 + parent: 2 +- proto: FloraTree05 + entities: + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.4077616,-12.399094 + parent: 2 + - uid: 146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5239925,-12.554985 + parent: 2 + - uid: 1487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5924492,-9.013058 + parent: 2 + - uid: 1580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.6667814,-8.977043 + parent: 2 + - uid: 1581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.3969831,-6.067524 + parent: 2 + - uid: 1590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.4946547,-5.848774 + parent: 2 +- proto: FoamedAluminiumMetal + entities: + - uid: 1887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-18.5 + parent: 2 + - uid: 1888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-19.5 + parent: 2 + - uid: 1895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-19.5 + parent: 2 + - uid: 1902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-16.5 + parent: 2 + - uid: 1906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-19.5 + parent: 2 + - uid: 1907 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 + - uid: 1908 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 2 +- proto: FoodBreadMeatSlice + entities: + - uid: 1911 + components: + - type: Transform + pos: -10.184317,-5.5592346 + parent: 2 +- proto: FoodFrozenSnowconeClown + entities: + - uid: 5122 + components: + - type: Transform + pos: -13.330396,-16.567081 + parent: 2 +- proto: FoodMeatClown + entities: + - uid: 4801 + components: + - type: Transform + pos: -26.29886,-0.3328228 + parent: 2 +- proto: FoodPieBananaCream + entities: + - uid: 5154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.83063,9.04374 + parent: 2 +- proto: FoodSpaceshroom + entities: + - uid: 1920 + components: + - type: Transform + pos: -21.178097,-9.751247 + parent: 2 + - uid: 1921 + components: + - type: Transform + pos: -21.827427,-9.677501 + parent: 2 + - uid: 1922 + components: + - type: Transform + pos: 27.20302,-14.646598 + parent: 2 + - uid: 1923 + components: + - type: Transform + pos: 26.34708,-13.9533825 + parent: 2 + - uid: 1924 + components: + - type: Transform + pos: 19.942272,-16.804543 + parent: 2 +- proto: GasCanisterBrokenBase + entities: + - uid: 1319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,12.5 + parent: 2 +- proto: GasPipeBend + entities: + - uid: 104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,15.5 + parent: 2 + - uid: 635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,18.5 + parent: 2 + - uid: 650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,12.5 + parent: 2 + - uid: 694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,19.5 + parent: 2 + - uid: 708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,14.5 + parent: 2 + - uid: 709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,13.5 + parent: 2 + - uid: 831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,14.5 + parent: 2 + - uid: 1389 + components: + - type: Transform + pos: -15.5,18.5 + parent: 2 + - uid: 1797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,14.5 + parent: 2 + - uid: 1914 + components: + - type: Transform + pos: -14.5,19.5 + parent: 2 + - uid: 1942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1943 + components: + - type: Transform + pos: 28.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1948 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1961 + components: + - type: Transform + pos: 27.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-19.5 + parent: 2 + - uid: 1966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-16.5 + parent: 2 +- proto: GasPipeBroken + entities: + - uid: 1968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-18.5 + parent: 2 + - uid: 1969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-17.5 + parent: 2 +- proto: GasPipeFourway + entities: + - uid: 1979 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1980 + components: + - type: Transform + pos: 24.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1992 + components: + - type: Transform + pos: 22.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeHalf + entities: + - uid: 1993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-16.5 + parent: 2 +- proto: GasPipeStraight + entities: + - uid: 103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,18.5 + parent: 2 + - uid: 110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,18.5 + parent: 2 + - uid: 111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,16.5 + parent: 2 + - uid: 112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,17.5 + parent: 2 + - uid: 596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,12.5 + parent: 2 + - uid: 607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,13.5 + parent: 2 + - uid: 608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,13.5 + parent: 2 + - uid: 610 + components: + - type: Transform + pos: -17.5,13.5 + parent: 2 + - uid: 612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,12.5 + parent: 2 + - uid: 613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,12.5 + parent: 2 + - uid: 628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,15.5 + parent: 2 + - uid: 633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,15.5 + parent: 2 + - uid: 639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,17.5 + parent: 2 + - uid: 661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,18.5 + parent: 2 + - uid: 669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,14.5 + parent: 2 + - uid: 670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,14.5 + parent: 2 + - uid: 681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,14.5 + parent: 2 + - uid: 685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,14.5 + parent: 2 + - uid: 689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,15.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: -17.5,12.5 + parent: 2 + - uid: 691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,12.5 + parent: 2 + - uid: 692 + components: + - type: Transform + pos: -17.5,11.5 + parent: 2 + - uid: 701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,16.5 + parent: 2 + - uid: 748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,15.5 + parent: 2 + - uid: 777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,14.5 + parent: 2 + - uid: 983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,14.5 + parent: 2 + - uid: 987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,12.5 + parent: 2 + - uid: 990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,14.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,11.5 + parent: 2 + - uid: 1153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,15.5 + parent: 2 + - uid: 1335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,18.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + pos: -19.5,20.5 + parent: 2 + - uid: 1349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,15.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,13.5 + parent: 2 + - uid: 1441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,12.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + pos: -19.5,19.5 + parent: 2 + - uid: 1479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,18.5 + parent: 2 + - uid: 1726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,12.5 + parent: 2 + - uid: 1769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,14.5 + parent: 2 + - uid: 1785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,19.5 + parent: 2 + - uid: 1793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,12.5 + parent: 2 + - uid: 1870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,20.5 + parent: 2 + - uid: 2034 + components: + - type: Transform + pos: -15.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,12.5 + parent: 2 + - uid: 2047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,15.5 + parent: 2 + - uid: 2048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,12.5 + parent: 2 + - uid: 2064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,19.5 + parent: 2 + - uid: 2152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2170 + components: + - type: Transform + pos: 28.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2181 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2182 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2370 + components: + - type: Transform + pos: 22.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2371 + components: + - type: Transform + pos: 22.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2376 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,15.5 + parent: 2 + - uid: 640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,15.5 + parent: 2 + - uid: 651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,13.5 + parent: 2 + - uid: 652 + components: + - type: Transform + pos: -19.5,12.5 + parent: 2 + - uid: 1500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,18.5 + parent: 2 + - uid: 1603 + components: + - type: Transform + pos: -21.5,18.5 + parent: 2 + - uid: 1771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,14.5 + parent: 2 + - uid: 2504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 2513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-19.5 + parent: 2 +- proto: GasVentPump + entities: + - uid: 535 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 + - uid: 645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,13.5 + parent: 2 + - uid: 1099 + components: + - type: Transform + pos: -18.5,4.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + pos: -22.5,4.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: -15.5,16.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + pos: -14.5,4.5 + parent: 2 + - uid: 1503 + components: + - type: Transform + pos: -10.5,4.5 + parent: 2 + - uid: 1555 + components: + - type: Transform + pos: -21.5,16.5 + parent: 2 + - uid: 1871 + components: + - type: Transform + pos: -17.5,21.5 + parent: 2 + - uid: 2534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 39 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 37 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2551 + components: + - type: Transform + pos: 23.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 36 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 38 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,12.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: -19.5,21.5 + parent: 2 + - uid: 1554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,17.5 + parent: 2 + - uid: 1560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,17.5 + parent: 2 + - uid: 2568 + components: + - type: Transform + pos: 22.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 36 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 37 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 38 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 39 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GatfruitSeeds + entities: + - uid: 2607 + components: + - type: Transform + pos: -10.974922,-14.666669 + parent: 2 +- proto: GeigerCounter + entities: + - uid: 3127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.558895,13.043236 + parent: 2 +- proto: Girder + entities: + - uid: 2609 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 2 + - uid: 2610 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 2 + - uid: 2611 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 2 + - uid: 2612 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 2 + - uid: 2613 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 2 +- proto: GravityGeneratorMini + entities: + - uid: 3114 + components: + - type: Transform + pos: -11.5,19.5 + parent: 2 + - uid: 3115 + components: + - type: Transform + pos: -7.5,19.5 + parent: 2 +- proto: Grille + entities: + - uid: 12 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,25.5 + parent: 2 + - uid: 29 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 2 + - uid: 63 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 2 + - uid: 67 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 81 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,24.5 + parent: 2 + - uid: 97 + components: + - type: Transform + pos: -14.5,26.5 + parent: 2 + - uid: 109 + components: + - type: Transform + pos: 3.5,25.5 + parent: 2 + - uid: 116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,3.5 + parent: 2 + - uid: 119 + components: + - type: Transform + pos: 4.5,25.5 + parent: 2 + - uid: 126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,3.5 + parent: 2 + - uid: 127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,3.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 2 + - uid: 371 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - uid: 372 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 2 + - uid: 376 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 2 + - uid: 377 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 + - uid: 514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,3.5 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 2 + - uid: 615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,26.5 + parent: 2 + - uid: 616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,26.5 + parent: 2 + - uid: 617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,26.5 + parent: 2 + - uid: 618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,26.5 + parent: 2 + - uid: 619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,26.5 + parent: 2 + - uid: 620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,26.5 + parent: 2 + - uid: 621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,26.5 + parent: 2 + - uid: 622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,20.5 + parent: 2 + - uid: 623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,20.5 + parent: 2 + - uid: 624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,20.5 + parent: 2 + - uid: 625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,20.5 + parent: 2 + - uid: 634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,22.5 + parent: 2 + - uid: 636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,21.5 + parent: 2 + - uid: 643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 2 + - uid: 964 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 2 + - uid: 966 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 967 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,25.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 1043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,23.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,3.5 + parent: 2 + - uid: 1105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,3.5 + parent: 2 + - uid: 1121 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 1122 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 1131 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 1133 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,16.5 + parent: 2 + - uid: 1142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,19.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - uid: 1350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,17.5 + parent: 2 + - uid: 1363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,3.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 2 + - uid: 1463 + components: + - type: Transform + pos: -2.5,4.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,17.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + - uid: 1573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,24.5 + parent: 2 + - uid: 1575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,25.5 + parent: 2 + - uid: 1577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 2 + - uid: 1579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 2 + - uid: 1591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 2 + - uid: 1632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,26.5 + parent: 2 + - uid: 1641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,0.5 + parent: 2 + - uid: 1642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,1.5 + parent: 2 + - uid: 1656 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 2 + - uid: 1710 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 + - uid: 1729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,18.5 + parent: 2 + - uid: 1806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,15.5 + parent: 2 + - uid: 1905 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 2 + - uid: 1939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,21.5 + parent: 2 + - uid: 1940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,23.5 + parent: 2 + - uid: 1952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,22.5 + parent: 2 + - uid: 2024 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - uid: 2041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,15.5 + parent: 2 + - uid: 2042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,15.5 + parent: 2 + - uid: 2044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,15.5 + parent: 2 + - uid: 2045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 2 + - uid: 2065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,17.5 + parent: 2 + - uid: 2094 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 2154 + components: + - type: Transform + pos: -2.5,0.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 2 + - uid: 2244 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - uid: 2245 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 + - uid: 2312 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 2333 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 2361 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 + - uid: 2362 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - uid: 2439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 2 + - uid: 2454 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 2459 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 2 + - uid: 2472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 + - uid: 2615 + components: + - type: Transform + pos: -3.5,25.5 + parent: 2 + - uid: 2617 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - uid: 2618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,25.5 + parent: 2 + - uid: 2619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,25.5 + parent: 2 + - uid: 2628 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 + - uid: 2637 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 2 + - uid: 2638 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 2 + - uid: 2639 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 2649 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 2650 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 2651 + components: + - type: Transform + pos: 28.5,2.5 + parent: 2 + - uid: 2652 + components: + - type: Transform + pos: 26.5,4.5 + parent: 2 + - uid: 2653 + components: + - type: Transform + pos: 25.5,4.5 + parent: 2 + - uid: 2654 + components: + - type: Transform + pos: 23.5,4.5 + parent: 2 + - uid: 2661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,9.5 + parent: 2 + - uid: 2662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,8.5 + parent: 2 + - uid: 2678 + components: + - type: Transform + pos: -24.5,17.5 + parent: 2 + - uid: 2679 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 + - uid: 2680 + components: + - type: Transform + pos: -24.5,16.5 + parent: 2 + - uid: 2681 + components: + - type: Transform + pos: -24.5,13.5 + parent: 2 + - uid: 2682 + components: + - type: Transform + pos: -24.5,14.5 + parent: 2 + - uid: 2687 + components: + - type: Transform + pos: -24.5,9.5 + parent: 2 + - uid: 2688 + components: + - type: Transform + pos: -24.5,8.5 + parent: 2 + - uid: 2691 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 2 + - uid: 2710 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 2 + - uid: 2711 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 2712 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 2713 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 + - uid: 2714 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 + - uid: 2853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-10.5 + parent: 2 + - uid: 2854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-11.5 + parent: 2 + - uid: 2857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 2 + - uid: 3517 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 2 + - uid: 3825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,25.5 + parent: 2 + - uid: 4422 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 +- proto: GrilleBroken + entities: + - uid: 2858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-14.5 + parent: 2 + - uid: 2859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-15.5 + parent: 2 + - uid: 2860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-15.5 + parent: 2 + - uid: 2862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 2 + - uid: 2863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-14.5 + parent: 2 + - uid: 2864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-13.5 + parent: 2 + - uid: 5092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-14.5 + parent: 2 + - uid: 5093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-14.5 + parent: 2 +- proto: HarmonicaInstrument + entities: + - uid: 2892 + components: + - type: Transform + pos: 29.34292,0.08919525 + parent: 2 +- proto: HospitalCurtains + entities: + - uid: 355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-3.5 + parent: 2 + - uid: 471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-3.5 + parent: 2 + - uid: 1112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-5.5 + parent: 2 + - uid: 1626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-5.5 + parent: 2 + - uid: 2897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,6.5 + parent: 2 + - type: Door + secondsUntilStateChange: -126300.89 + state: Opening + - uid: 2898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,5.5 + parent: 2 + - type: Door + secondsUntilStateChange: -126301.99 + state: Opening + - uid: 2899 + components: + - type: Transform + pos: 27.5,1.5 + parent: 2 + - type: Door + secondsUntilStateChange: -126300.06 + state: Opening +- proto: HydroponicsToolHatchet + entities: + - uid: 2900 + components: + - type: Transform + pos: -14.669573,-14.115818 + parent: 2 +- proto: HydroponicsToolScythe + entities: + - uid: 2903 + components: + - type: Transform + pos: -14.653948,-14.209568 + parent: 2 +- proto: hydroponicsTray + entities: + - uid: 480 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - uid: 482 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 +- proto: HydroponicsTrayEmpty + entities: + - uid: 2927 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 + - uid: 2928 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 2 + - uid: 2929 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 2 + - uid: 2930 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 2 +- proto: Hypopen + entities: + - uid: 2932 + components: + - type: Transform + pos: -15.849928,-17.72664 + parent: 2 +- proto: InflatableWall + entities: + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 224 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 2128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-0.5 + parent: 2 + - uid: 2151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,2.5 + parent: 2 + - uid: 2183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,1.5 + parent: 2 + - uid: 2406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,4.5 + parent: 2 + - uid: 2407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,5.5 + parent: 2 + - uid: 2408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,5.5 + parent: 2 + - uid: 2933 + components: + - type: Transform + pos: -18.5,-14.5 + parent: 2 + - uid: 2934 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 2 + - uid: 2935 + components: + - type: Transform + pos: -18.5,-13.5 + parent: 2 + - uid: 2936 + components: + - type: Transform + pos: -20.5,-12.5 + parent: 2 + - uid: 2937 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 2 + - uid: 2938 + components: + - type: Transform + pos: -21.5,-12.5 + parent: 2 + - uid: 2939 + components: + - type: Transform + pos: -21.5,-13.5 + parent: 2 + - uid: 2940 + components: + - type: Transform + pos: -22.5,-13.5 + parent: 2 + - uid: 2941 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 2 + - uid: 2942 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - uid: 2943 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 2950 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 +- proto: KitchenReagentGrinder + entities: + - uid: 2952 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 +- proto: KitchenSpike + entities: + - uid: 2954 + components: + - type: Transform + pos: -11.5,-17.5 + parent: 2 +- proto: Lamp + entities: + - uid: 1067 + components: + - type: Transform + pos: 12.362946,6.319256 + parent: 2 +- proto: LampGold + entities: + - uid: 2028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-15.5 + parent: 2 +- proto: Lantern + entities: + - uid: 250 + components: + - type: Transform + pos: 0.99762344,-0.403862 + parent: 2 +- proto: LargeBeaker + entities: + - uid: 904 + components: + - type: Transform + pos: 10.518847,20.0891 + parent: 2 + - uid: 988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.659472,19.24535 + parent: 2 +- proto: LimeSeeds + entities: + - uid: 2218 + components: + - type: Transform + pos: -1.7910023,-11.001492 + parent: 2 +- proto: LockerBotanistFilled + entities: + - uid: 2966 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 2 + - uid: 2967 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 +- proto: LockerEngineerFilled + entities: + - uid: 2308 + components: + - type: Transform + pos: 9.5,13.5 + parent: 2 +- proto: LockerEvidence + entities: + - uid: 2979 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 2 + - uid: 2980 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 +- proto: LockerMedicineFilled + entities: + - uid: 162 + components: + - type: Transform + pos: 3.5,19.5 + parent: 2 +- proto: LootSpawnerMedicalClassy + entities: + - uid: 151 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: 7.5,15.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: 7.5,18.5 + parent: 2 + - uid: 270 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 553 + components: + - type: Transform + pos: -9.5,24.5 + parent: 2 +- proto: LuxuryPen + entities: + - uid: 686 + components: + - type: Transform + pos: -22.575766,11.576115 + parent: 2 + - uid: 1561 + components: + - type: Transform + pos: -22.450766,11.65424 + parent: 2 + - uid: 2020 + components: + - type: Transform + pos: 12.284821,5.850506 + parent: 2 +- proto: MachineArtifactAnalyzer + entities: + - uid: 2989 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 +- proto: MachineFrame + entities: + - uid: 2990 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 +- proto: MachineFrameDestroyed + entities: + - uid: 2991 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 2 + - uid: 2992 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - uid: 2993 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 2 + - uid: 2994 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 +- proto: MagazineLightRifle + entities: + - uid: 4997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.768185,-0.25017965 + parent: 2 +- proto: MagazinePistolSubMachineGun + entities: + - uid: 76 + components: + - type: Transform + pos: -9.220463,17.454758 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: -8.454838,17.579758 + parent: 2 + - uid: 1361 + components: + - type: Transform + pos: -8.907963,17.595383 + parent: 2 +- proto: MagazineRifle + entities: + - uid: 536 + components: + - type: Transform + pos: -10.392338,17.470383 + parent: 2 + - uid: 776 + components: + - type: Transform + pos: -10.064213,17.501633 + parent: 2 + - uid: 1345 + components: + - type: Transform + pos: -10.704838,17.439133 + parent: 2 +- proto: MaintenanceFluffSpawner + entities: + - uid: 2995 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 2 +- proto: MaintenancePlantSpawner + entities: + - uid: 948 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 2 + - uid: 949 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 950 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 +- proto: MaintenanceToolSpawner + entities: + - uid: 2997 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 2 + - uid: 2998 + components: + - type: Transform + pos: -25.5,-14.5 + parent: 2 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 3000 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 2 + - uid: 3001 + components: + - type: Transform + pos: 32.5,-18.5 + parent: 2 + - uid: 3002 + components: + - type: Transform + pos: -26.5,-14.5 + parent: 2 +- proto: MaterialWoodPlank + entities: + - uid: 3006 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 2 + - type: Stack + count: 3 +- proto: MaterialWoodPlank1 + entities: + - uid: 2332 + components: + - type: Transform + pos: -14.989427,-4.0007744 + parent: 2 +- proto: Mattress + entities: + - uid: 3008 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 + - uid: 3009 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - uid: 3010 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 +- proto: MedicalBed + entities: + - uid: 128 + components: + - type: Transform + pos: 7.5,16.5 + parent: 2 + - uid: 279 + components: + - type: Transform + pos: 7.5,14.5 + parent: 2 + - uid: 1151 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + pos: 3.5,14.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 1558 + components: + - type: Transform + pos: 7.5,12.5 + parent: 2 +- proto: MedkitAdvancedFilled + entities: + - uid: 186 + components: + - type: Transform + parent: 184 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MedkitBruteFilled + entities: + - uid: 185 + components: + - type: Transform + parent: 184 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MedkitBurnFilled + entities: + - uid: 187 + components: + - type: Transform + parent: 184 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MedkitFilled + entities: + - uid: 169 + components: + - type: Transform + parent: 168 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 170 + components: + - type: Transform + parent: 168 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 172 + components: + - type: Transform + parent: 168 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MedkitOxygenFilled + entities: + - uid: 229 + components: + - type: Transform + parent: 188 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MedkitRadiationFilled + entities: + - uid: 236 + components: + - type: Transform + parent: 188 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MedkitToxinFilled + entities: + - uid: 237 + components: + - type: Transform + parent: 188 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MopBucketFull + entities: + - uid: 2286 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 +- proto: MopItem + entities: + - uid: 1027 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 +- proto: MouseTimedSpawner + entities: + - uid: 3029 + components: + - type: Transform + pos: 34.5,3.5 + parent: 2 +- proto: Multitool + entities: + - uid: 3110 + components: + - type: Transform + pos: 13.566889,-3.4793434 + parent: 2 +- proto: NitrogenCanister + entities: + - uid: 3031 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 2 + - uid: 3032 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 2 +- proto: OrganDwarfStomach + entities: + - uid: 3037 + components: + - type: Transform + pos: 25.469465,-9.215221 + parent: 2 +- proto: OrganHumanEyes + entities: + - uid: 3039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.51193,-12.316445 + parent: 2 +- proto: OrganHumanLiver + entities: + - uid: 3040 + components: + - type: Transform + pos: 25.303596,-11.358112 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 1334 + components: + - type: Transform + pos: -23.5,13.5 + parent: 2 + - uid: 1453 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 1458 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - uid: 3042 + components: + - type: Transform + pos: -17.5,-14.5 + parent: 2 + - uid: 3043 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 2 +- proto: Paper + entities: + - uid: 293 + components: + - type: Transform + pos: -1.5,4.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: 2.4496164,4.317398 + parent: 2 + - uid: 2019 + components: + - type: Transform + pos: 12.706696,5.413006 + parent: 2 +- proto: Pen + entities: + - uid: 2278 + components: + - type: Transform + pos: -1.5,4.5 + parent: 2 +- proto: Pickaxe + entities: + - uid: 404 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 47 + components: + - type: Transform + pos: -18.5,23.5 + parent: 2 + - uid: 631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,23.5 + parent: 2 + - uid: 632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,23.5 + parent: 2 + - uid: 1130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,1.5 + parent: 2 + - uid: 1219 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 + - uid: 1348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,23.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,1.5 + parent: 2 + - uid: 1640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,0.5 + parent: 2 + - uid: 2014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,1.5 + parent: 2 + - uid: 2015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,0.5 + parent: 2 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 880 + components: + - type: Transform + pos: 17.5,15.5 + parent: 2 + - uid: 890 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 +- proto: PositronicBrain + entities: + - uid: 3062 + components: + - type: Transform + pos: 25.720345,-9.347964 + parent: 2 +- proto: PosterBroken + entities: + - uid: 3063 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 2 + - uid: 3064 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 2 + - uid: 3065 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 2 + - uid: 3066 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 2 + - uid: 5078 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 2 +- proto: PosterContrabandClown + entities: + - uid: 3068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,9.5 + parent: 2 +- proto: PosterContrabandCommunistState + entities: + - uid: 5020 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 +- proto: PosterContrabandDDayPromo + entities: + - uid: 5063 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 2 +- proto: PosterContrabandEnergySwords + entities: + - uid: 5077 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 2 +- proto: PosterContrabandFreeSyndicateEncryptionKey + entities: + - uid: 3071 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 2 + - uid: 3072 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 2 +- proto: PosterContrabandFunPolice + entities: + - uid: 5076 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 +- proto: PosterContrabandLustyExomorph + entities: + - uid: 3075 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 +- proto: PosterContrabandRevolt + entities: + - uid: 3077 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 2 + - uid: 3078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-12.5 + parent: 2 +- proto: PosterContrabandRevolver + entities: + - uid: 5061 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 2 +- proto: PosterContrabandRise + entities: + - uid: 3079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,2.5 + parent: 2 +- proto: PosterContrabandSyndicatePistol + entities: + - uid: 3081 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 2 +- proto: PosterContrabandTheBigGasTruth + entities: + - uid: 5060 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 2 +- proto: PosterContrabandWaffleCorp + entities: + - uid: 3084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,4.5 + parent: 2 +- proto: PosterLegitCarpMount + entities: + - uid: 5047 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 2 +- proto: PosterLegitDoNotQuestion + entities: + - uid: 4937 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 +- proto: PosterLegitIonRifle + entities: + - uid: 5018 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 2 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 5029 + components: + - type: Transform + pos: 26.5,1.5 + parent: 2 +- proto: PosterLegitNoERP + entities: + - uid: 3086 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 3087 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 +- proto: PosterLegitSafetyMothDelam + entities: + - uid: 4218 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 2 +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 3089 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 +- proto: PosterLegitScience + entities: + - uid: 5044 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 2 +- proto: PosterLegitWorkForAFuture + entities: + - uid: 5062 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 +- proto: PotatoSeeds + entities: + - uid: 1128 + components: + - type: Transform + pos: -2.0253773,-7.8139915 + parent: 2 +- proto: PottedPlantRandom + entities: + - uid: 414 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 419 + components: + - type: Transform + pos: -7.5,3.5 + parent: 2 + - uid: 420 + components: + - type: Transform + pos: -7.5,5.5 + parent: 2 + - uid: 951 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 2 + - uid: 952 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - uid: 953 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 2023 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 2212 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 3100 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 1347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,14.5 + parent: 2 +- proto: Poweredlight + entities: + - uid: 49 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,17.5 + parent: 2 + - uid: 114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,18.5 + parent: 2 + - uid: 521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,11.5 + parent: 2 + - uid: 537 + components: + - type: Transform + pos: -8.5,19.5 + parent: 2 + - uid: 605 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - uid: 611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,21.5 + parent: 2 + - uid: 642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,21.5 + parent: 2 + - uid: 648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,19.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - uid: 668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,8.5 + parent: 2 + - uid: 672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 + - uid: 684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,21.5 + parent: 2 + - uid: 687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 2 + - uid: 746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,17.5 + parent: 2 + - uid: 900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,12.5 + parent: 2 + - uid: 902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,13.5 + parent: 2 + - uid: 917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,12.5 + parent: 2 + - uid: 918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,14.5 + parent: 2 + - uid: 945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,13.5 + parent: 2 + - uid: 989 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 2 + - uid: 1166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,19.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,21.5 + parent: 2 + - uid: 1204 + components: + - type: Transform + pos: -20.5,9.5 + parent: 2 + - uid: 1344 + components: + - type: Transform + pos: -19.5,23.5 + parent: 2 + - uid: 1346 + components: + - type: Transform + pos: -10.5,19.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,23.5 + parent: 2 + - uid: 1368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,23.5 + parent: 2 + - uid: 1437 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 1446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,8.5 + parent: 2 + - uid: 1615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,22.5 + parent: 2 + - uid: 1630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,11.5 + parent: 2 + - uid: 1731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,16.5 + parent: 2 + - uid: 1791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,14.5 + parent: 2 + - uid: 2038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,11.5 + parent: 2 + - uid: 2274 + components: + - type: Transform + pos: 17.5,16.5 + parent: 2 + - uid: 2275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,13.5 + parent: 2 + - uid: 2491 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,11.5 + parent: 2 + - uid: 2498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,11.5 + parent: 2 + - uid: 3012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,12.5 + parent: 2 + - uid: 3013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,18.5 + parent: 2 + - uid: 3041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,14.5 + parent: 2 + - uid: 3044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,11.5 + parent: 2 + - uid: 3121 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 + - uid: 3138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-14.5 + parent: 2 + - uid: 3139 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 + - uid: 3143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-9.5 + parent: 2 + - uid: 3144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-12.5 + parent: 2 + - uid: 3145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-16.5 + parent: 2 + - uid: 3146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-16.5 + parent: 2 + - uid: 3147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-6.5 + parent: 2 + - uid: 3150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-6.5 + parent: 2 + - uid: 3151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 2 + - uid: 3172 + components: + - type: Transform + pos: 9.5,9.5 + parent: 2 + - uid: 3202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,21.5 + parent: 2 + - uid: 3207 + components: + - type: Transform + pos: 7.5,24.5 + parent: 2 + - uid: 3209 + components: + - type: Transform + pos: -6.5,24.5 + parent: 2 + - uid: 3221 + components: + - type: Transform + pos: -4.5,19.5 + parent: 2 + - uid: 3227 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 + - uid: 3228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-5.5 + parent: 2 + - uid: 3229 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 +- proto: PoweredlightCyan + entities: + - uid: 5152 + components: + - type: Transform + anchored: False + pos: -26.5,-0.5 + parent: 2 +- proto: PoweredlightSodium + entities: + - uid: 1172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 2 + - uid: 2052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-4.5 + parent: 2 + - uid: 2095 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 2120 + components: + - type: Transform + pos: -1.5,4.5 + parent: 2 + - uid: 2191 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 + - uid: 2327 + components: + - type: Transform + pos: -20.5,2.5 + parent: 2 + - uid: 2328 + components: + - type: Transform + pos: -16.5,2.5 + parent: 2 + - uid: 2329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-4.5 + parent: 2 + - uid: 2330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-4.5 + parent: 2 + - uid: 2331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-4.5 + parent: 2 + - uid: 2338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 2 + - uid: 2340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,2.5 + parent: 2 + - uid: 2396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 2 + - uid: 2397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 2 + - uid: 2398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 2 + - uid: 2399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 2 + - uid: 2400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 2 + - uid: 2426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-17.5 + parent: 2 + - uid: 2434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 2 + - uid: 2435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,3.5 + parent: 2 + - uid: 2436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 2 + - uid: 2437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 2438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 2 + - uid: 2440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 2 + - uid: 2441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 2 + - uid: 2444 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 2476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-17.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 34 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 65 + components: + - type: Transform + pos: -10.5,6.5 + parent: 2 + - uid: 68 + components: + - type: Transform + pos: -22.5,6.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,2.5 + parent: 2 + - uid: 223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 2 + - uid: 249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,3.5 + parent: 2 + - uid: 306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-4.5 + parent: 2 + - uid: 1646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 2 + - uid: 2144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,26.5 + parent: 2 + - uid: 2190 + components: + - type: Transform + pos: -14.5,6.5 + parent: 2 + - uid: 2230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,26.5 + parent: 2 + - uid: 2231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,5.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + pos: -18.5,6.5 + parent: 2 + - uid: 3237 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 3238 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 2 +- proto: PRISONAirlockGlassLocked + entities: + - uid: 70 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,25.5 + parent: 2 + - uid: 78 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,25.5 + parent: 2 + - uid: 1063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,25.5 + parent: 2 + - uid: 1323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 2 + - uid: 1340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-0.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,3.5 + parent: 2 + - uid: 1343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,4.5 + parent: 2 +- proto: PRISONAirlockGlassLockedBrig + entities: + - uid: 704 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 1081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,12.5 + parent: 2 + - uid: 1393 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 1609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,13.5 + parent: 2 + - uid: 1872 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 +- proto: PRISONAirlockGlassLockedHeadOfPrison + entities: + - uid: 1909 + components: + - type: Transform + pos: -18.5,20.5 + parent: 2 +- proto: PRISONAirlockGlassLockedMed + entities: + - uid: 1143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,17.5 + parent: 2 +- proto: PRISONAirlockGlassLockedPrisoner + entities: + - uid: 9 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 2 + - uid: 57 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 2 + - uid: 179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 2 + - uid: 1209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 2 + - uid: 2018 + components: + - type: Transform + pos: 11.5,2.5 + parent: 2 + - uid: 2335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 2 +- proto: PRISONAirlockGlassShuttleLocked + entities: + - uid: 1054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,27.5 + parent: 2 + - uid: 1060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,27.5 + parent: 2 + - uid: 1061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,27.5 + parent: 2 +- proto: PRISONAirlockLocked + entities: + - uid: 88 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-4.5 + parent: 2 + - uid: 89 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-4.5 + parent: 2 + - uid: 90 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-4.5 + parent: 2 + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-19.5 + parent: 2 +- proto: PRISONAirlockLockedBrig + entities: + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 380 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 405 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,15.5 + parent: 2 + - uid: 1525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,7.5 + parent: 2 + - uid: 2017 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,7.5 + parent: 2 + - uid: 2237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 2 +- proto: PRISONAirlockLockedEng + entities: + - uid: 82 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 + - uid: 1692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 2 + - uid: 2057 + components: + - type: Transform + pos: -24.5,1.5 + parent: 2 +- proto: PRISONAirlockLockedHeadOfPrison + entities: + - uid: 1792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,15.5 + parent: 2 +- proto: PRISONAirlockLockedMed + entities: + - uid: 59 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,19.5 + parent: 2 +- proto: PRISONAirlockLockedPrisoner + entities: + - uid: 364 + components: + - type: Transform + pos: -10.5,3.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: -22.5,3.5 + parent: 2 + - uid: 2073 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 +- proto: PRISONComputerShuttlePrison + entities: + - uid: 368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,16.5 + parent: 2 +- proto: PRISONEncryptionKey + entities: + - uid: 3112 + components: + - type: Transform + parent: 3111 + - type: Physics + canCollide: False +- proto: PRISONLockerFilled + entities: + - uid: 745 + components: + - type: Transform + pos: -5.5,17.5 + parent: 2 + - uid: 1134 + components: + - type: Transform + pos: -7.5,12.5 + parent: 2 + - uid: 1766 + components: + - type: Transform + pos: -8.5,12.5 + parent: 2 + - uid: 1768 + components: + - type: Transform + pos: -9.5,12.5 + parent: 2 +- proto: PRISONLockerHeadOfPrisonFilled + entities: + - uid: 1042 + components: + - type: Transform + pos: -20.5,22.5 + parent: 2 +- proto: PRISONSpawnPointEngineer + entities: + - uid: 2309 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 +- proto: PRISONSpawnPointHeadOfPrison + entities: + - uid: 1161 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 +- proto: PRISONSpawnPointMedic + entities: + - uid: 946 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 +- proto: PRISONSpawnPointOfficer + entities: + - uid: 555 + components: + - type: Transform + pos: -3.5,17.5 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 + - uid: 743 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - uid: 1556 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 +- proto: PRISONSuitStorageEngi + entities: + - uid: 2307 + components: + - type: Transform + pos: 9.5,14.5 + parent: 2 +- proto: PRISONSuitStorageMed + entities: + - uid: 163 + components: + - type: Transform + pos: 3.5,20.5 + parent: 2 +- proto: PRISONSuitStorageOfficer + entities: + - uid: 1607 + components: + - type: Transform + pos: -5.5,18.5 + parent: 2 + - uid: 1869 + components: + - type: Transform + pos: -7.5,13.5 + parent: 2 + - uid: 2043 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - uid: 2067 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 +- proto: PRISONVendingMachine + entities: + - uid: 556 + components: + - type: Transform + pos: -9.5,13.5 + parent: 2 +- proto: PRISONVendingMachineDrobe + entities: + - uid: 833 + components: + - type: Transform + pos: -6.5,12.5 + parent: 2 +- proto: Rack + entities: + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,18.5 + parent: 2 + - uid: 158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,18.5 + parent: 2 + - uid: 3252 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 2 +- proto: Railing + entities: + - uid: 6 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 8 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 2 + - uid: 19 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-3.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - uid: 351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 2 + - uid: 352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-6.5 + parent: 2 + - uid: 353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-4.5 + parent: 2 + - uid: 454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 2 + - uid: 1097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-6.5 + parent: 2 + - uid: 1106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-6.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 2 + - uid: 1213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-6.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-3.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 2 + - uid: 1505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-4.5 + parent: 2 + - uid: 1585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-5.5 + parent: 2 + - uid: 1598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-13.5 + parent: 2 + - uid: 2074 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 2 + - uid: 2131 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 + - uid: 2193 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 + - uid: 2288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 2 + - uid: 2289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 2 + - uid: 2290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 2 + - uid: 2295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 2 + - uid: 2467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 2 + - uid: 3266 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 3267 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 3268 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 + - uid: 3269 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 2 + - uid: 3270 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 2 + - uid: 3271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-13.5 + parent: 2 + - uid: 3272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-12.5 + parent: 2 + - uid: 3273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-11.5 + parent: 2 +- proto: RailingCorner + entities: + - uid: 259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 2 + - uid: 1021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 2 + - uid: 1116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 2 + - uid: 1118 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 2 + - uid: 1206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 2 + - uid: 1531 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 + - uid: 1620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-12.5 + parent: 2 + - uid: 2098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 2 + - uid: 3280 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-11.5 + parent: 2 + - uid: 290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 2 + - uid: 358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 2 + - uid: 451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-6.5 + parent: 2 + - uid: 1320 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 1402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-1.5 + parent: 2 + - uid: 1504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 2 + - uid: 1593 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 2 + - uid: 2299 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 2 + - uid: 2458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 2 + - uid: 2466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 2 + - uid: 3281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-10.5 + parent: 2 +- proto: RandomArtifactSpawner + entities: + - uid: 3286 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 2 +- proto: RandomBrownStalagmite + entities: + - uid: 955 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 2 +- proto: RandomPosterContraband + entities: + - uid: 3292 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 3293 + components: + - type: Transform + pos: 34.5,-16.5 + parent: 2 +- proto: RandomPosterLegit + entities: + - uid: 3313 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 2 + - uid: 3314 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 2 + - uid: 3315 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 2 + - uid: 3316 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 2 + - uid: 3317 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 3318 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 3319 + components: + - type: Transform + pos: 27.5,2.5 + parent: 2 + - uid: 3320 + components: + - type: Transform + pos: 20.5,4.5 + parent: 2 + - uid: 3327 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 2 + - uid: 3328 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 +- proto: RandomScienceCorpseSpawner + entities: + - uid: 3334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-13.5 + parent: 2 +- proto: RandomSecurityCorpseSpawner + entities: + - uid: 3335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-13.5 + parent: 2 +- proto: RandomSnacks + entities: + - uid: 5097 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 +- proto: RandomSoap + entities: + - uid: 469 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 2 + - uid: 1420 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 +- proto: RandomSpawner + entities: + - uid: 1169 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 + - uid: 1170 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 3337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,0.5 + parent: 2 + - uid: 3342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 2 + - uid: 3343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-20.5 + parent: 2 + - uid: 3344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-19.5 + parent: 2 + - uid: 3345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-18.5 + parent: 2 + - uid: 3346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-15.5 + parent: 2 + - uid: 3347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,2.5 + parent: 2 + - uid: 3348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-1.5 + parent: 2 + - uid: 3349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,4.5 + parent: 2 + - uid: 3350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,6.5 + parent: 2 + - uid: 3351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-12.5 + parent: 2 + - uid: 3353 + components: + - type: Transform + pos: -14.5,-16.5 + parent: 2 + - uid: 3354 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 2 + - uid: 3355 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 2 + - uid: 3356 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 3357 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 2 + - uid: 3358 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 + - uid: 3377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-12.5 + parent: 2 + - uid: 3378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-15.5 + parent: 2 + - uid: 3380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-9.5 + parent: 2 + - uid: 3382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-8.5 + parent: 2 + - uid: 3393 + components: + - type: Transform + pos: 27.5,4.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 3395 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - uid: 3396 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 3400 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 + - uid: 3401 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - uid: 3402 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - uid: 3403 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 + - uid: 3404 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 3405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-18.5 + parent: 2 + - uid: 3406 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 3407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-11.5 + parent: 2 + - uid: 3408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 2 + - uid: 3409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-15.5 + parent: 2 +- proto: RandomSpawner100 + entities: + - uid: 1583 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 1621 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 + - uid: 2314 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - uid: 2431 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 3410 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 3426 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 2 +- proto: RandomStalagmiteOrCrystal + entities: + - uid: 366 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 2 +- proto: RandomVending + entities: + - uid: 58 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 + - uid: 137 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 + - uid: 712 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 +- proto: RandomVendingDrinks + entities: + - uid: 48 + components: + - type: Transform + pos: -22.5,19.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: -15.5,19.5 + parent: 2 + - uid: 809 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 1664 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 2 +- proto: RandomVendingSnacks + entities: + - uid: 557 + components: + - type: Transform + pos: -14.5,19.5 + parent: 2 + - uid: 747 + components: + - type: Transform + pos: -21.5,19.5 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - uid: 826 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 2 + - uid: 913 + components: + - type: Transform + pos: -10.5,24.5 + parent: 2 + - uid: 914 + components: + - type: Transform + pos: -10.5,22.5 + parent: 2 + - uid: 1564 + components: + - type: Transform + pos: 11.5,22.5 + parent: 2 + - uid: 1565 + components: + - type: Transform + pos: 11.5,24.5 + parent: 2 +- proto: ReinforcedGirder + entities: + - uid: 3442 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 2 + - uid: 3443 + components: + - type: Transform + pos: 31.5,-22.5 + parent: 2 + - uid: 3444 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 2 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,15.5 + parent: 2 + - uid: 1051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,15.5 + parent: 2 + - uid: 1445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,15.5 + parent: 2 + - uid: 1601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,15.5 + parent: 2 + - uid: 3448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-13.5 + parent: 2 + - uid: 3449 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 2 + - uid: 3450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-11.5 + parent: 2 +- proto: ReinforcedWindow + entities: + - uid: 13 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 2 + - uid: 62 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 2 + - uid: 161 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - uid: 627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,17.5 + parent: 2 + - uid: 774 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 775 + components: + - type: Transform + pos: 4.5,25.5 + parent: 2 + - uid: 912 + components: + - type: Transform + pos: 3.5,25.5 + parent: 2 + - uid: 938 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,17.5 + parent: 2 + - uid: 1773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,20.5 + parent: 2 + - uid: 1794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,25.5 + parent: 2 + - uid: 1795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,25.5 + parent: 2 + - uid: 1882 + components: + - type: Transform + pos: -19.5,20.5 + parent: 2 + - uid: 1883 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 + - uid: 1926 + components: + - type: Transform + pos: -16.5,20.5 + parent: 2 + - uid: 2049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,25.5 + parent: 2 + - uid: 2050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 2 + - uid: 2395 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 2 + - uid: 2452 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 2453 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 2 + - uid: 2705 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 2 + - uid: 3102 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 2 + - uid: 3103 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 2 + - uid: 3104 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 2 + - uid: 3105 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - uid: 3106 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - uid: 3107 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 + - uid: 3108 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 + - uid: 3230 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 2 + - uid: 3461 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - uid: 3464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,25.5 + parent: 2 + - uid: 3465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,25.5 + parent: 2 + - uid: 3476 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 + - uid: 3477 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 3478 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 2 + - uid: 3479 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 2 + - uid: 3483 + components: + - type: Transform + pos: 28.5,2.5 + parent: 2 + - uid: 3484 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 3485 + components: + - type: Transform + pos: 26.5,4.5 + parent: 2 + - uid: 3486 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 3487 + components: + - type: Transform + pos: 23.5,4.5 + parent: 2 + - uid: 3488 + components: + - type: Transform + pos: 25.5,4.5 + parent: 2 + - uid: 3502 + components: + - type: Transform + pos: -3.5,25.5 + parent: 2 + - uid: 3504 + components: + - type: Transform + pos: -24.5,9.5 + parent: 2 + - uid: 3505 + components: + - type: Transform + pos: -24.5,8.5 + parent: 2 + - uid: 3507 + components: + - type: Transform + pos: -24.5,13.5 + parent: 2 + - uid: 3508 + components: + - type: Transform + pos: -24.5,14.5 + parent: 2 + - uid: 3509 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 + - uid: 3510 + components: + - type: Transform + pos: -24.5,16.5 + parent: 2 + - uid: 3511 + components: + - type: Transform + pos: -24.5,17.5 + parent: 2 + - uid: 3512 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 2 + - uid: 3822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,25.5 + parent: 2 + - uid: 4439 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 +- proto: RemoteSignaller + entities: + - uid: 3109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.348139,-4.3387184 + parent: 2 +- proto: RevolverCapGunFake + entities: + - uid: 1379 + components: + - type: Transform + parent: 1377 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SalvageCanisterSpawner + entities: + - uid: 3537 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 2 +- proto: ScalpelShiv + entities: + - uid: 354 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 + - uid: 3540 + components: + - type: Transform + parent: 3539 + - type: Physics + canCollide: False +- proto: Screwdriver + entities: + - uid: 982 + components: + - type: Transform + pos: -2.464715,12.637312 + parent: 2 +- proto: ShardGlass + entities: + - uid: 438 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 439 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 3543 + components: + - type: Transform + pos: -19.871286,-9.945551 + parent: 2 + - uid: 3544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.84915,-10.27741 + parent: 2 + - uid: 3545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.911694,-9.989799 + parent: 2 + - uid: 3546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.948236,-11.383604 + parent: 2 + - uid: 3547 + components: + - type: Transform + pos: -18.853014,-11.051745 + parent: 2 + - uid: 3548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.945425,-9.790684 + parent: 2 + - uid: 3549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.440155,-10.16679 + parent: 2 + - uid: 3550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.037836,-11.693338 + parent: 2 + - uid: 3551 + components: + - type: Transform + pos: -24.962643,-10.343781 + parent: 2 + - uid: 3552 + components: + - type: Transform + pos: -24.453506,-10.321657 + parent: 2 + - uid: 3553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.608461,-10.719888 + parent: 2 + - uid: 3554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.620056,-8.839356 + parent: 2 + - uid: 3555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.86742,-9.215463 + parent: 2 +- proto: ShardGlassPlasma + entities: + - uid: 3556 + components: + - type: Transform + pos: 28.815224,-14.332981 + parent: 2 + - uid: 3557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.393349,-14.098606 + parent: 2 + - uid: 3558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.455849,-14.598606 + parent: 2 +- proto: ShardGlassReinforced + entities: + - uid: 3559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.451706,-19.19547 + parent: 2 + - uid: 3560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.953566,-18.841457 + parent: 2 + - uid: 3561 + components: + - type: Transform + pos: 22.063896,-19.121693 + parent: 2 + - uid: 3562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.960592,-16.37833 + parent: 2 + - uid: 3565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.978104,-9.503073 + parent: 2 + - uid: 3566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.022375,-11.427852 + parent: 2 + - uid: 3567 + components: + - type: Transform + pos: -19.18506,-11.339356 + parent: 2 + - uid: 3568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.626732,-11.582719 + parent: 2 +- proto: ShardGlassUranium + entities: + - uid: 3118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.57452,11.152611 + parent: 2 + - uid: 3119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.965145,13.418236 + parent: 2 + - uid: 3120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.41827,15.230736 + parent: 2 + - uid: 3122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.01202,13.746361 + parent: 2 +- proto: SheetSteel1 + entities: + - uid: 3583 + components: + - type: Transform + pos: -22.575726,-8.387686 + parent: 2 + - uid: 3584 + components: + - type: Transform + pos: -22.546211,-8.623673 + parent: 2 +- proto: SheetUranium + entities: + - uid: 1523 + components: + - type: Transform + pos: 10.453312,15.87616 + parent: 2 + - uid: 1524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.922062,14.93866 + parent: 2 + - uid: 1587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.953312,11.90741 + parent: 2 + - uid: 3116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.88702,11.652611 + parent: 2 + - uid: 3117 + components: + - type: Transform + pos: 13.715145,16.449486 + parent: 2 +- proto: SignDirectionalFood + entities: + - uid: 3596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,7.5 + parent: 2 +- proto: SignElectrical + entities: + - uid: 3130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,2.5 + parent: 2 +- proto: SignElectricalMed + entities: + - uid: 2097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + - uid: 2227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + - uid: 2250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 2 + - uid: 2251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 2 + - uid: 2474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 2 + - uid: 3131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,1.5 + parent: 2 + - uid: 3132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,0.5 + parent: 2 +- proto: SignEngine + entities: + - uid: 4763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-4.5 + parent: 2 +- proto: SignNosmoking + entities: + - uid: 706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,20.5 + parent: 2 +- proto: SmallLight + entities: + - uid: 292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 2 + - uid: 476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 2 + - uid: 478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 2 + - uid: 2225 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 2496 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 + - uid: 2497 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2 +- proto: SolidSecretDoor + entities: + - uid: 962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-19.5 + parent: 2 + - uid: 2213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-19.5 + parent: 2 + - uid: 3620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,2.5 + parent: 2 +- proto: SpawnMobCarp + entities: + - uid: 3645 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 2 +- proto: SpawnMobMedibot + entities: + - uid: 903 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 +- proto: SpawnMobMouse + entities: + - uid: 3654 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 2 + - uid: 3655 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 2 + - uid: 3656 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 +- proto: SpawnMobSpaceSpider + entities: + - uid: 3657 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 2 +- proto: SpiderWeb + entities: + - uid: 3659 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 2 + - uid: 3660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-12.5 + parent: 2 + - uid: 3661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-13.5 + parent: 2 + - uid: 5019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-6.5 + parent: 2 +- proto: SteelBench + entities: + - uid: 299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-17.5 + parent: 2 + - uid: 957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 2 + - uid: 2149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 2 + - uid: 2210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 2 + - uid: 2211 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 2 + - uid: 2457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 2 +- proto: StimpackMini + entities: + - uid: 3666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.16608,4.0802937 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 878 + components: + - type: Transform + pos: 9.5,16.5 + parent: 2 + - uid: 2090 + components: + - type: Transform + pos: -25.5,2.5 + parent: 2 + - uid: 3669 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 2 + - uid: 3670 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 +- proto: SurveillanceCameraMedical + entities: + - uid: 674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,20.5 + parent: 2 + - uid: 769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,14.5 + parent: 2 + - uid: 835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,14.5 + parent: 2 +- proto: SurveillanceCameraSecurity + entities: + - uid: 1844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,18.5 + parent: 2 + - uid: 2089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,24.5 + parent: 2 +- proto: SyndicatePersonalAI + entities: + - uid: 3684 + components: + - type: Transform + pos: 25.511587,-8.505088 + parent: 2 +- proto: SyndieHandyFlag + entities: + - uid: 3685 + components: + - type: Transform + pos: 29.36331,-8.44609 + parent: 2 +- proto: Syringe + entities: + - uid: 981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.628222,20.3391 + parent: 2 +- proto: Table + entities: + - uid: 83 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 2 + - uid: 93 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 2 + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,15.5 + parent: 2 + - uid: 156 + components: + - type: Transform + pos: 7.5,11.5 + parent: 2 + - uid: 157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,13.5 + parent: 2 + - uid: 159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,15.5 + parent: 2 + - uid: 294 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 298 + components: + - type: Transform + pos: -1.5,3.5 + parent: 2 + - uid: 300 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 303 + components: + - type: Transform + pos: -1.5,4.5 + parent: 2 + - uid: 308 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 2 + - uid: 599 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: -22.5,11.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: -21.5,11.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: -23.5,19.5 + parent: 2 + - uid: 714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,24.5 + parent: 2 + - uid: 773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,24.5 + parent: 2 + - uid: 942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,22.5 + parent: 2 + - uid: 943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,24.5 + parent: 2 + - uid: 944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,22.5 + parent: 2 + - uid: 960 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - uid: 984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,24.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,4.5 + parent: 2 + - uid: 1776 + components: + - type: Transform + pos: -13.5,19.5 + parent: 2 + - uid: 2016 + components: + - type: Transform + pos: 12.5,6.5 + parent: 2 + - uid: 2022 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 2 + - uid: 3724 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 3725 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 + - uid: 3726 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 2 + - uid: 3743 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 2 + - uid: 3744 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 + - uid: 3745 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 2 + - uid: 3746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-14.5 + parent: 2 +- proto: TableFrame + entities: + - uid: 3748 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 2 + - uid: 3749 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 2 +- proto: TablePlasmaGlass + entities: + - uid: 1058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,22.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,21.5 + parent: 2 + - uid: 1077 + components: + - type: Transform + pos: -18.5,23.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 520 + components: + - type: Transform + pos: -2.5,11.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: -2.5,12.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 +- proto: TableWood + entities: + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-15.5 + parent: 2 + - uid: 1867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-15.5 + parent: 2 + - uid: 1876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 2 + - uid: 2277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-15.5 + parent: 2 + - uid: 2801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 2 +- proto: TargetClown + entities: + - uid: 1113 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - uid: 3765 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 +- proto: TelecomServer + entities: + - uid: 3111 + components: + - type: Transform + pos: -9.5,19.5 + parent: 2 + - type: Physics + fixedRotation: False + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3112 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] +- proto: Telecrystal5 + entities: + - uid: 3766 + components: + - type: Transform + pos: 31.496037,2.5101233 + parent: 2 +- proto: ToiletEmpty + entities: + - uid: 1100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,6.5 + parent: 2 + - uid: 1102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,6.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,6.5 + parent: 2 + - uid: 1631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,23.5 + parent: 2 + - uid: 2072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,6.5 + parent: 2 + - uid: 3539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,6.5 + parent: 2 + - type: DisposalUnit + nextFlush: 0 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + disposals: !type:Container + showEnts: False + occludes: True + ents: + - 3540 + - uid: 3771 + components: + - type: Transform + pos: 27.5,1.5 + parent: 2 + - uid: 3772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,5.5 + parent: 2 +- proto: ToyFigurineClown + entities: + - uid: 3780 + components: + - type: Transform + pos: 29.564201,5.921811 + parent: 2 +- proto: ToyFigurineWizardFake + entities: + - uid: 2027 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 +- proto: ToySpawner + entities: + - uid: 2319 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 +- proto: TrashBag + entities: + - uid: 2056 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 2 +- proto: UnfinishedMachineFrame + entities: + - uid: 3784 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 2 +- proto: UniformShortsRed + entities: + - uid: 452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-5.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-2.5 + parent: 2 +- proto: UniformShortsRedWithTop + entities: + - uid: 440 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 2 + - uid: 1414 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 2 +- proto: UraniumOre1 + entities: + - uid: 3123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.371395,15.808861 + parent: 2 + - uid: 3124 + components: + - type: Transform + pos: 14.246395,11.558861 + parent: 2 + - uid: 3125 + components: + - type: Transform + pos: 16.340145,16.30886 + parent: 2 + - uid: 3126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.340145,12.949486 + parent: 2 +- proto: VendingMachineChemicals + entities: + - uid: 238 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 +- proto: VendingMachineGames + entities: + - uid: 3794 + components: + - type: Transform + pos: 19.5,1.5 + parent: 2 +- proto: VendingMachineMedical + entities: + - uid: 770 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 +- proto: VendingMachineMediDrobe + entities: + - uid: 673 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 +- proto: VendingMachineRestockChemVend + entities: + - uid: 5089 + components: + - type: Transform + pos: 33.445423,4.751405 + parent: 2 + - uid: 5091 + components: + - type: Transform + pos: 33.624435,-10.368875 + parent: 2 +- proto: VendingMachineSeeds + entities: + - uid: 307 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 2 +- proto: VendingMachineSovietSoda + entities: + - uid: 2769 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 +- proto: VendingMachineSustenance + entities: + - uid: 3806 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 2 + - uid: 44 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,17.5 + parent: 2 + - uid: 51 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 2 + - uid: 75 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,1.5 + parent: 2 + - uid: 98 + components: + - type: Transform + pos: -12.5,20.5 + parent: 2 + - uid: 99 + components: + - type: Transform + pos: -12.5,19.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: -10.5,25.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: -1.5,15.5 + parent: 2 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,6.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 130 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 132 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: -1.5,6.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - uid: 173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 2 + - uid: 178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 2 + - uid: 180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-6.5 + parent: 2 + - uid: 181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 2 + - uid: 182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 2 + - uid: 183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-3.5 + parent: 2 + - uid: 192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 2 + - uid: 199 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - uid: 251 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 + - uid: 269 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 + - uid: 356 + components: + - type: Transform + pos: -15.5,7.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: -18.5,7.5 + parent: 2 + - uid: 447 + components: + - type: Transform + pos: -20.5,6.5 + parent: 2 + - uid: 450 + components: + - type: Transform + pos: -10.5,7.5 + parent: 2 + - uid: 472 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 + - uid: 473 + components: + - type: Transform + pos: -17.5,7.5 + parent: 2 + - uid: 498 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 2 + - uid: 500 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - uid: 545 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - uid: 546 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - uid: 547 + components: + - type: Transform + pos: -1.5,11.5 + parent: 2 + - uid: 548 + components: + - type: Transform + pos: -1.5,10.5 + parent: 2 + - uid: 554 + components: + - type: Transform + pos: -1.5,14.5 + parent: 2 + - uid: 597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,17.5 + parent: 2 + - uid: 600 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: 12.5,22.5 + parent: 2 + - uid: 630 + components: + - type: Transform + pos: 12.5,24.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,15.5 + parent: 2 + - uid: 679 + components: + - type: Transform + pos: -1.5,20.5 + parent: 2 + - uid: 696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,16.5 + parent: 2 + - uid: 700 + components: + - type: Transform + pos: -14.5,20.5 + parent: 2 + - uid: 705 + components: + - type: Transform + pos: -14.5,10.5 + parent: 2 + - uid: 713 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - uid: 768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,18.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 2 + - uid: 805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 2 + - uid: 806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-13.5 + parent: 2 + - uid: 807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 2 + - uid: 808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 2 + - uid: 810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-18.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 2 + - uid: 823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-15.5 + parent: 2 + - uid: 834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,13.5 + parent: 2 + - uid: 909 + components: + - type: Transform + pos: 12.5,20.5 + parent: 2 + - uid: 956 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 2 + - uid: 958 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 2 + - uid: 961 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 2 + - uid: 963 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 2 + - uid: 992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,21.5 + parent: 2 + - uid: 993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,25.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 + - uid: 1034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,5.5 + parent: 2 + - uid: 1039 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 2 + - uid: 1044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,15.5 + parent: 2 + - uid: 1046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,12.5 + parent: 2 + - uid: 1052 + components: + - type: Transform + pos: -13.5,10.5 + parent: 2 + - uid: 1055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,27.5 + parent: 2 + - uid: 1069 + components: + - type: Transform + pos: -26.5,1.5 + parent: 2 + - uid: 1078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,25.5 + parent: 2 + - uid: 1079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,27.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,7.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + pos: -26.5,2.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: -13.5,7.5 + parent: 2 + - uid: 1114 + components: + - type: Transform + pos: -19.5,7.5 + parent: 2 + - uid: 1127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 2 + - uid: 1157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-17.5 + parent: 2 + - uid: 1164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,17.5 + parent: 2 + - uid: 1202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-18.5 + parent: 2 + - uid: 1203 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 + - uid: 1207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-8.5 + parent: 2 + - uid: 1211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 2 + - uid: 1212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 2 + - uid: 1295 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 2 + - uid: 1300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 2 + - uid: 1301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 2 + - uid: 1303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 2 + - uid: 1322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 2 + - uid: 1328 + components: + - type: Transform + pos: -20.5,3.5 + parent: 2 + - uid: 1329 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + pos: -15.5,10.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,2.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: 12.5,23.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 1394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,10.5 + parent: 2 + - uid: 1435 + components: + - type: Transform + pos: -16.5,7.5 + parent: 2 + - uid: 1436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,5.5 + parent: 2 + - uid: 1447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,7.5 + parent: 2 + - uid: 1448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,6.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,9.5 + parent: 2 + - uid: 1486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,11.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + pos: -21.5,7.5 + parent: 2 + - uid: 1508 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,7.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,7.5 + parent: 2 + - uid: 1511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,8.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,4.5 + parent: 2 + - uid: 1521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,3.5 + parent: 2 + - uid: 1522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,7.5 + parent: 2 + - uid: 1526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,7.5 + parent: 2 + - uid: 1528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,7.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,26.5 + parent: 2 + - uid: 1571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,25.5 + parent: 2 + - uid: 1572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,25.5 + parent: 2 + - uid: 1595 + components: + - type: Transform + pos: -24.5,5.5 + parent: 2 + - uid: 1596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 2 + - uid: 1600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,15.5 + parent: 2 + - uid: 1602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,15.5 + parent: 2 + - uid: 1604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,14.5 + parent: 2 + - uid: 1606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,26.5 + parent: 2 + - uid: 1625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 2 + - uid: 1628 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 2 + - uid: 1629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,20.5 + parent: 2 + - uid: 1638 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 2 + - uid: 1648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 2 + - uid: 1649 + components: + - type: Transform + pos: -22.5,7.5 + parent: 2 + - uid: 1654 + components: + - type: Transform + pos: -24.5,7.5 + parent: 2 + - uid: 1660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + - uid: 1662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 2 + - uid: 1712 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - uid: 1735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-12.5 + parent: 2 + - uid: 1739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,3.5 + parent: 2 + - uid: 1823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,2.5 + parent: 2 + - uid: 1824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,1.5 + parent: 2 + - uid: 1874 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 1955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,21.5 + parent: 2 + - uid: 1956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,23.5 + parent: 2 + - uid: 1967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,24.5 + parent: 2 + - uid: 1973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,22.5 + parent: 2 + - uid: 1989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,24.5 + parent: 2 + - uid: 1996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,23.5 + parent: 2 + - uid: 2030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 2 + - uid: 2032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 2 + - uid: 2035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,24.5 + parent: 2 + - uid: 2036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,22.5 + parent: 2 + - uid: 2040 + components: + - type: Transform + pos: -12.5,14.5 + parent: 2 + - uid: 2058 + components: + - type: Transform + pos: -24.5,4.5 + parent: 2 + - uid: 2069 + components: + - type: Transform + pos: -26.5,3.5 + parent: 2 + - uid: 2075 + components: + - type: Transform + pos: -24.5,3.5 + parent: 2 + - uid: 2076 + components: + - type: Transform + pos: -24.5,2.5 + parent: 2 + - uid: 2092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-6.5 + parent: 2 + - uid: 2099 + components: + - type: Transform + pos: -3.5,7.5 + parent: 2 + - uid: 2100 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 2102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 2 + - uid: 2103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,3.5 + parent: 2 + - uid: 2111 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 2127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 2 + - uid: 2141 + components: + - type: Transform + pos: -11.5,7.5 + parent: 2 + - uid: 2142 + components: + - type: Transform + pos: -9.5,7.5 + parent: 2 + - uid: 2143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 2 + - uid: 2155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 2 + - uid: 2194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-13.5 + parent: 2 + - uid: 2195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 2 + - uid: 2200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 2 + - uid: 2201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,7.5 + parent: 2 + - uid: 2203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 2 + - uid: 2205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 2 + - uid: 2206 + components: + - type: Transform + pos: -1.5,7.5 + parent: 2 + - uid: 2215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,7.5 + parent: 2 + - uid: 2232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-2.5 + parent: 2 + - uid: 2235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 2 + - uid: 2236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,6.5 + parent: 2 + - uid: 2242 + components: + - type: Transform + pos: -23.5,7.5 + parent: 2 + - uid: 2276 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 2 + - uid: 2280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 2 + - uid: 2281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 2 + - uid: 2301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 2 + - uid: 2302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,5.5 + parent: 2 + - uid: 2303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,4.5 + parent: 2 + - uid: 2316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 2 + - uid: 2336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-15.5 + parent: 2 + - uid: 2348 + components: + - type: Transform + pos: -20.5,4.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + pos: -20.5,5.5 + parent: 2 + - uid: 2350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 2 + - uid: 2403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 2 + - uid: 2424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 2 + - uid: 2447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-18.5 + parent: 2 + - uid: 2448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 2 + - uid: 2449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 2 + - uid: 2456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 2 + - uid: 2460 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 + - uid: 2461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,6.5 + parent: 2 + - uid: 2463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,4.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,5.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 2 + - uid: 2484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,17.5 + parent: 2 + - uid: 2485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,17.5 + parent: 2 + - uid: 2486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,17.5 + parent: 2 + - uid: 2487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,17.5 + parent: 2 + - uid: 2488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,17.5 + parent: 2 + - uid: 2489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,17.5 + parent: 2 + - uid: 2692 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 2 + - uid: 3516 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 2 + - uid: 3827 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 + - uid: 3842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,25.5 + parent: 2 + - uid: 3849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,21.5 + parent: 2 + - uid: 3850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,21.5 + parent: 2 + - uid: 3851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,21.5 + parent: 2 + - uid: 3852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,21.5 + parent: 2 + - uid: 3853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,21.5 + parent: 2 + - uid: 3854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,21.5 + parent: 2 + - uid: 3855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,21.5 + parent: 2 + - uid: 3856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,21.5 + parent: 2 + - uid: 3858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,20.5 + parent: 2 + - uid: 3859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,21.5 + parent: 2 + - uid: 3860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,21.5 + parent: 2 + - uid: 3861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 2 + - uid: 3862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,21.5 + parent: 2 + - uid: 3863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,20.5 + parent: 2 + - uid: 3865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,20.5 + parent: 2 + - uid: 3866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,25.5 + parent: 2 + - uid: 3867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,24.5 + parent: 2 + - uid: 3868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,23.5 + parent: 2 + - uid: 3869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,22.5 + parent: 2 + - uid: 3870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,15.5 + parent: 2 + - uid: 3871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,20.5 + parent: 2 + - uid: 3872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,19.5 + parent: 2 + - uid: 3873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,18.5 + parent: 2 + - uid: 3874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,17.5 + parent: 2 + - uid: 3875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,16.5 + parent: 2 + - uid: 3876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,15.5 + parent: 2 + - uid: 3878 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 + - uid: 3882 + components: + - type: Transform + pos: -6.5,19.5 + parent: 2 + - uid: 3883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,20.5 + parent: 2 + - uid: 3884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,20.5 + parent: 2 + - uid: 3885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,20.5 + parent: 2 + - uid: 3886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,20.5 + parent: 2 + - uid: 3887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,10.5 + parent: 2 + - uid: 3888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,11.5 + parent: 2 + - uid: 3889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,12.5 + parent: 2 + - uid: 3890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,13.5 + parent: 2 + - uid: 3891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 2 + - uid: 3892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,10.5 + parent: 2 + - uid: 3893 + components: + - type: Transform + pos: 8.5,10.5 + parent: 2 + - uid: 3894 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 + - uid: 3895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,10.5 + parent: 2 + - uid: 3896 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 3897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,10.5 + parent: 2 + - uid: 3898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,10.5 + parent: 2 + - uid: 3899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,10.5 + parent: 2 + - uid: 3900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,10.5 + parent: 2 + - uid: 3901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,10.5 + parent: 2 + - uid: 3902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,10.5 + parent: 2 + - uid: 3903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,10.5 + parent: 2 + - uid: 3911 + components: + - type: Transform + pos: 30.5,1.5 + parent: 2 + - uid: 3914 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 3920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,6.5 + parent: 2 + - uid: 3921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,6.5 + parent: 2 + - uid: 3922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,6.5 + parent: 2 + - uid: 3923 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 3924 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 3925 + components: + - type: Transform + pos: 21.5,7.5 + parent: 2 + - uid: 3926 + components: + - type: Transform + pos: 23.5,7.5 + parent: 2 + - uid: 3944 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 2 + - uid: 3951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 2 + - uid: 3952 + components: + - type: Transform + pos: -6.5,18.5 + parent: 2 + - uid: 3956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 2 + - uid: 3957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 2 + - uid: 3958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,10.5 + parent: 2 + - uid: 3978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,10.5 + parent: 2 + - uid: 3979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,10.5 + parent: 2 + - uid: 3980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,10.5 + parent: 2 + - uid: 3981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,10.5 + parent: 2 + - uid: 3982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,10.5 + parent: 2 + - uid: 3987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,11.5 + parent: 2 + - uid: 3988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,12.5 + parent: 2 + - uid: 3990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,10.5 + parent: 2 + - uid: 3991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,10.5 + parent: 2 + - uid: 3992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,10.5 + parent: 2 + - uid: 4017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,20.5 + parent: 2 + - uid: 4020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,20.5 + parent: 2 + - uid: 4021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,20.5 + parent: 2 + - uid: 4022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,20.5 + parent: 2 + - uid: 4028 + components: + - type: Transform + pos: -15.5,20.5 + parent: 2 + - uid: 4029 + components: + - type: Transform + pos: -13.5,20.5 + parent: 2 + - uid: 4051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,11.5 + parent: 2 + - uid: 4052 + components: + - type: Transform + pos: -6.5,10.5 + parent: 2 + - uid: 4082 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 2 + - uid: 4083 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 2 + - uid: 4084 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 2 + - uid: 4093 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 + - uid: 4094 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 2 + - uid: 4095 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 + - uid: 4096 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 2 + - uid: 4099 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 2 + - uid: 4102 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 2 + - uid: 4111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 2 + - uid: 4113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-7.5 + parent: 2 + - uid: 4115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-7.5 + parent: 2 + - uid: 4116 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 4117 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 4118 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 2 + - uid: 4119 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 4120 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - uid: 4123 + components: + - type: Transform + pos: -24.5,6.5 + parent: 2 + - uid: 4134 + components: + - type: Transform + pos: -9.5,-12.5 + parent: 2 + - uid: 4137 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 2 + - uid: 4139 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 2 + - uid: 4149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-18.5 + parent: 2 + - uid: 4150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-17.5 + parent: 2 + - uid: 4153 + components: + - type: Transform + pos: -17.5,-15.5 + parent: 2 + - uid: 4156 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 2 + - uid: 4160 + components: + - type: Transform + pos: -27.5,-13.5 + parent: 2 + - uid: 4164 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 2 + - uid: 4165 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 4166 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 4167 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 4169 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 2 + - uid: 4170 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 4181 + components: + - type: Transform + pos: 19.5,16.5 + parent: 2 + - uid: 4189 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 4190 + components: + - type: Transform + pos: 19.5,15.5 + parent: 2 + - uid: 4191 + components: + - type: Transform + pos: 19.5,14.5 + parent: 2 + - uid: 4192 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 4193 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - uid: 4194 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 + - uid: 4196 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 2 + - uid: 4197 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 2 + - uid: 4198 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 2 + - uid: 4200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-18.5 + parent: 2 + - uid: 4201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-19.5 + parent: 2 + - uid: 4202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-20.5 + parent: 2 + - uid: 4203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-20.5 + parent: 2 + - uid: 4204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-20.5 + parent: 2 + - uid: 4205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-20.5 + parent: 2 + - uid: 4206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-20.5 + parent: 2 + - uid: 4207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-20.5 + parent: 2 + - uid: 4208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-20.5 + parent: 2 + - uid: 4209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-20.5 + parent: 2 + - uid: 4210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-20.5 + parent: 2 + - uid: 4211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-20.5 + parent: 2 + - uid: 4212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-20.5 + parent: 2 + - uid: 4222 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 2 + - uid: 4229 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - uid: 4231 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 4232 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - uid: 4233 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - uid: 4234 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 2 + - uid: 4236 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 2 + - uid: 4237 + components: + - type: Transform + pos: 30.5,7.5 + parent: 2 + - uid: 4238 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - uid: 4239 + components: + - type: Transform + pos: 26.5,6.5 + parent: 2 + - uid: 4240 + components: + - type: Transform + pos: 30.5,6.5 + parent: 2 + - uid: 4241 + components: + - type: Transform + pos: 28.5,7.5 + parent: 2 + - uid: 4242 + components: + - type: Transform + pos: 30.5,2.5 + parent: 2 + - uid: 4243 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 2 + - uid: 4244 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 2 + - uid: 4245 + components: + - type: Transform + pos: 30.5,5.5 + parent: 2 + - uid: 4246 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 + - uid: 4248 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 2 + - uid: 4250 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 + - uid: 4251 + components: + - type: Transform + pos: 29.5,7.5 + parent: 2 + - uid: 4252 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 4254 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 4257 + components: + - type: Transform + pos: 18.5,5.5 + parent: 2 + - uid: 4259 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 4260 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 2 + - uid: 4261 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - uid: 4262 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 2 + - uid: 4265 + components: + - type: Transform + pos: 18.5,1.5 + parent: 2 + - uid: 4267 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - uid: 4268 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 + - uid: 4269 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 2 + - uid: 4271 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 2 + - uid: 4273 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 2 + - uid: 4275 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - uid: 4276 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - uid: 4277 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - uid: 4278 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 + - uid: 4279 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 4280 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 2 + - uid: 4281 + components: + - type: Transform + pos: 27.5,2.5 + parent: 2 + - uid: 4282 + components: + - type: Transform + pos: 29.5,2.5 + parent: 2 + - uid: 4283 + components: + - type: Transform + pos: 26.5,1.5 + parent: 2 + - uid: 4284 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 4285 + components: + - type: Transform + pos: 26.5,2.5 + parent: 2 + - uid: 4286 + components: + - type: Transform + pos: 27.5,7.5 + parent: 2 + - uid: 4287 + components: + - type: Transform + pos: 26.5,5.5 + parent: 2 + - uid: 4288 + components: + - type: Transform + pos: 20.5,4.5 + parent: 2 + - uid: 4289 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 4290 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - uid: 4292 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 + - uid: 4293 + components: + - type: Transform + pos: 22.5,4.5 + parent: 2 + - uid: 4297 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 2 + - uid: 4298 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 2 + - uid: 4301 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 4302 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 2 + - uid: 4304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 2 + - uid: 4305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-7.5 + parent: 2 + - uid: 4321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-8.5 + parent: 2 + - uid: 4324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-11.5 + parent: 2 + - uid: 4326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-13.5 + parent: 2 + - uid: 4329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-16.5 + parent: 2 + - uid: 4331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-12.5 + parent: 2 + - uid: 4332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-9.5 + parent: 2 + - uid: 4333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-15.5 + parent: 2 + - uid: 4334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-12.5 + parent: 2 + - uid: 4337 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 + - uid: 4339 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 2 + - uid: 4343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-9.5 + parent: 2 + - uid: 4353 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - uid: 4354 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - uid: 4355 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - uid: 4378 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 4379 + components: + - type: Transform + pos: 11.5,25.5 + parent: 2 + - uid: 4382 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 4385 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 2 + - uid: 4387 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 2 + - uid: 4388 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 2 + - uid: 4389 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 2 + - uid: 4391 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 2 + - uid: 4392 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 2 + - uid: 4394 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 + - uid: 4395 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 2 + - uid: 4396 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 2 + - uid: 4400 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 2 + - uid: 4401 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 2 + - uid: 4404 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 2 + - uid: 4406 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 2 + - uid: 4409 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 2 + - uid: 4410 + components: + - type: Transform + pos: 34.5,-17.5 + parent: 2 + - uid: 4411 + components: + - type: Transform + pos: 34.5,-16.5 + parent: 2 + - uid: 4412 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 2 + - uid: 4414 + components: + - type: Transform + pos: 33.5,-14.5 + parent: 2 + - uid: 4420 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 4421 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 + - uid: 4425 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 2 + - uid: 4426 + components: + - type: Transform + pos: 32.5,5.5 + parent: 2 + - uid: 4432 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 2 + - uid: 4433 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 2 + - uid: 4436 + components: + - type: Transform + pos: 35.5,4.5 + parent: 2 + - uid: 4438 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 2 + - uid: 4440 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 2 + - uid: 4443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-4.5 + parent: 2 + - uid: 4444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-4.5 + parent: 2 + - uid: 4469 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 2 +- proto: WallReinforcedDiagonal + entities: + - uid: 1358 + components: + - type: Transform + pos: -21.5,24.5 + parent: 2 + - uid: 1439 + components: + - type: Transform + pos: -22.5,21.5 + parent: 2 + - uid: 1953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,21.5 + parent: 2 + - uid: 1954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,24.5 + parent: 2 +- proto: WallReinforcedRust + entities: + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,2.5 + parent: 2 + - uid: 31 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-3.5 + parent: 2 + - uid: 1050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,16.5 + parent: 2 + - uid: 1120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,7.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-1.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 2 + - uid: 1803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,20.5 + parent: 2 + - uid: 1804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,20.5 + parent: 2 + - uid: 1805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,20.5 + parent: 2 + - uid: 1838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,17.5 + parent: 2 + - uid: 1839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,16.5 + parent: 2 + - uid: 1873 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 1875 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 1877 + components: + - type: Transform + pos: -24.5,18.5 + parent: 2 + - uid: 1879 + components: + - type: Transform + pos: -24.5,19.5 + parent: 2 + - uid: 1984 + components: + - type: Transform + pos: -18.5,24.5 + parent: 2 + - uid: 1987 + components: + - type: Transform + pos: -19.5,24.5 + parent: 2 + - uid: 2037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,18.5 + parent: 2 + - uid: 2039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,17.5 + parent: 2 + - uid: 2129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,0.5 + parent: 2 + - uid: 2223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 2 + - uid: 2254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-4.5 + parent: 2 + - uid: 2255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-5.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 2 + - uid: 2346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-3.5 + parent: 2 + - uid: 2347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-4.5 + parent: 2 + - uid: 2363 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 2 + - uid: 2401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,3.5 + parent: 2 + - uid: 2473 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 2 + - uid: 2693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 2 + - uid: 3846 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 2 + - uid: 4014 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 2 + - uid: 4110 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 2 + - uid: 4112 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 2 + - uid: 4114 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 4121 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 2 + - uid: 4138 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 2 + - uid: 4146 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 2 + - uid: 4148 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - uid: 4151 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 2 + - uid: 4152 + components: + - type: Transform + pos: -18.5,-15.5 + parent: 2 + - uid: 4154 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 2 + - uid: 4155 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 + - uid: 4157 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 2 + - uid: 4158 + components: + - type: Transform + pos: -27.5,-14.5 + parent: 2 + - uid: 4159 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 2 + - uid: 4161 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 2 + - uid: 4162 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 2 + - uid: 4163 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 2 + - uid: 4168 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 2 + - uid: 4228 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 4230 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 + - uid: 4247 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 2 + - uid: 4249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-7.5 + parent: 2 + - uid: 4253 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 4263 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 2 + - uid: 4264 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 + - uid: 4266 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - uid: 4270 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 + - uid: 4272 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 2 + - uid: 4291 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 4294 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - uid: 4295 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - uid: 4296 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 2 + - uid: 4299 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 + - uid: 4300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 2 + - uid: 4322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-10.5 + parent: 2 + - uid: 4323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 2 + - uid: 4325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-14.5 + parent: 2 + - uid: 4327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-15.5 + parent: 2 + - uid: 4328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-15.5 + parent: 2 + - uid: 4330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-22.5 + parent: 2 + - uid: 4335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-22.5 + parent: 2 + - uid: 4336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 2 + - uid: 4342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-8.5 + parent: 2 + - uid: 4370 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 4376 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 4377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 2 + - uid: 4386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-22.5 + parent: 2 + - uid: 4390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-22.5 + parent: 2 + - uid: 4393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 2 + - uid: 4397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-22.5 + parent: 2 + - uid: 4398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-22.5 + parent: 2 + - uid: 4399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-22.5 + parent: 2 + - uid: 4402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-22.5 + parent: 2 + - uid: 4405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-20.5 + parent: 2 + - uid: 4407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-19.5 + parent: 2 + - uid: 4408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-14.5 + parent: 2 + - uid: 4413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-14.5 + parent: 2 + - uid: 4415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,5.5 + parent: 2 + - uid: 4416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-10.5 + parent: 2 + - uid: 4417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-8.5 + parent: 2 + - uid: 4418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 2 + - uid: 4419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-9.5 + parent: 2 + - uid: 4423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-1.5 + parent: 2 + - uid: 4424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,6.5 + parent: 2 + - uid: 4427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,7.5 + parent: 2 + - uid: 4430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,5.5 + parent: 2 + - uid: 4435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,0.5 + parent: 2 + - uid: 4441 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 2 + - uid: 4493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-20.5 + parent: 2 +- proto: WallRock + entities: + - uid: 7 + components: + - type: Transform + pos: 16.5,20.5 + parent: 2 + - uid: 10 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 2 + - uid: 21 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 30 + components: + - type: Transform + pos: 39.5,-3.5 + parent: 2 + - uid: 32 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 2 + - uid: 66 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 + - uid: 69 + components: + - type: Transform + pos: 20.5,17.5 + parent: 2 + - uid: 71 + components: + - type: Transform + pos: 20.5,16.5 + parent: 2 + - uid: 225 + components: + - type: Transform + pos: 26.5,13.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: 25.5,8.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 248 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 305 + components: + - type: Transform + pos: 26.5,11.5 + parent: 2 + - uid: 313 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - uid: 314 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 + - uid: 315 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 2 + - uid: 316 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 + - uid: 317 + components: + - type: Transform + pos: 32.5,9.5 + parent: 2 + - uid: 318 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - uid: 319 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: -27.5,5.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 2 + - uid: 324 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 2 + - uid: 326 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 327 + components: + - type: Transform + pos: 26.5,8.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: -28.5,1.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: -27.5,3.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: -27.5,4.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 334 + components: + - type: Transform + pos: 31.5,9.5 + parent: 2 + - uid: 335 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 337 + components: + - type: Transform + pos: 30.5,9.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: -27.5,1.5 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: -27.5,2.5 + parent: 2 + - uid: 340 + components: + - type: Transform + pos: 25.5,11.5 + parent: 2 + - uid: 342 + components: + - type: Transform + pos: 25.5,9.5 + parent: 2 + - uid: 343 + components: + - type: Transform + pos: -30.5,-13.5 + parent: 2 + - uid: 344 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 + - uid: 345 + components: + - type: Transform + pos: 24.5,12.5 + parent: 2 + - uid: 347 + components: + - type: Transform + pos: 24.5,10.5 + parent: 2 + - uid: 349 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: 38.5,1.5 + parent: 2 + - uid: 361 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 362 + components: + - type: Transform + pos: 38.5,-3.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - uid: 367 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 2 + - uid: 369 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 370 + components: + - type: Transform + pos: -1.5,-25.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 374 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: -3.5,-25.5 + parent: 2 + - uid: 413 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 441 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 2 + - uid: 442 + components: + - type: Transform + pos: 37.5,0.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: 38.5,-5.5 + parent: 2 + - uid: 444 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 2 + - uid: 484 + components: + - type: Transform + pos: -20.5,-19.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 2 + - uid: 494 + components: + - type: Transform + pos: -20.5,-18.5 + parent: 2 + - uid: 495 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 2 + - uid: 496 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 2 + - uid: 497 + components: + - type: Transform + pos: 23.5,15.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - uid: 504 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 2 + - uid: 505 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - uid: 507 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 2 + - uid: 509 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 2 + - uid: 510 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: 35.5,-16.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 2 + - uid: 517 + components: + - type: Transform + pos: 35.5,-17.5 + parent: 2 + - uid: 518 + components: + - type: Transform + pos: 35.5,-14.5 + parent: 2 + - uid: 558 + components: + - type: Transform + pos: 36.5,-13.5 + parent: 2 + - uid: 559 + components: + - type: Transform + pos: 36.5,-14.5 + parent: 2 + - uid: 561 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 2 + - uid: 563 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 2 + - uid: 564 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 565 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 2 + - uid: 566 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 + - uid: 568 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 2 + - uid: 570 + components: + - type: Transform + pos: 39.5,-12.5 + parent: 2 + - uid: 571 + components: + - type: Transform + pos: 39.5,-13.5 + parent: 2 + - uid: 572 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: 36.5,-17.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: 39.5,-4.5 + parent: 2 + - uid: 576 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 577 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 2 + - uid: 578 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: 35.5,-24.5 + parent: 2 + - uid: 580 + components: + - type: Transform + pos: 35.5,-27.5 + parent: 2 + - uid: 581 + components: + - type: Transform + pos: 34.5,-27.5 + parent: 2 + - uid: 583 + components: + - type: Transform + pos: 34.5,-24.5 + parent: 2 + - uid: 584 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 2 + - uid: 586 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 2 + - uid: 587 + components: + - type: Transform + pos: 31.5,-25.5 + parent: 2 + - uid: 588 + components: + - type: Transform + pos: 31.5,-24.5 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 2 + - uid: 592 + components: + - type: Transform + pos: 28.5,-25.5 + parent: 2 + - uid: 593 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: 26.5,-24.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 2 + - uid: 716 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: 34.5,-26.5 + parent: 2 + - uid: 719 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 2 + - uid: 720 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 2 + - uid: 721 + components: + - type: Transform + pos: -20.5,-20.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: -21.5,-19.5 + parent: 2 + - uid: 723 + components: + - type: Transform + pos: -21.5,-18.5 + parent: 2 + - uid: 724 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 2 + - uid: 725 + components: + - type: Transform + pos: -20.5,-17.5 + parent: 2 + - uid: 726 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 2 + - uid: 727 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 2 + - uid: 728 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 2 + - uid: 730 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 2 + - uid: 731 + components: + - type: Transform + pos: 21.5,-27.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 2 + - uid: 733 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 2 + - uid: 734 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 2 + - uid: 735 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 2 + - uid: 736 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 2 + - uid: 737 + components: + - type: Transform + pos: 19.5,-27.5 + parent: 2 + - uid: 738 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 2 + - uid: 739 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 2 + - uid: 740 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 2 + - uid: 752 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 2 + - uid: 753 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 2 + - uid: 754 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 2 + - uid: 755 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 2 + - uid: 758 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 2 + - uid: 759 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 2 + - uid: 760 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 2 + - uid: 763 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: 2.5,-27.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 2 + - uid: 767 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 2 + - uid: 778 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 2 + - uid: 780 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 2 + - uid: 785 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 2 + - uid: 798 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 2 + - uid: 799 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 2 + - uid: 800 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 2 + - uid: 801 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 2 + - uid: 804 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 + - uid: 811 + components: + - type: Transform + pos: -5.5,-26.5 + parent: 2 + - uid: 812 + components: + - type: Transform + pos: -5.5,-25.5 + parent: 2 + - uid: 813 + components: + - type: Transform + pos: -5.5,-24.5 + parent: 2 + - uid: 815 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 2 + - uid: 816 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 2 + - uid: 818 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 2 + - uid: 819 + components: + - type: Transform + pos: -4.5,-26.5 + parent: 2 + - uid: 820 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 821 + components: + - type: Transform + pos: -4.5,-25.5 + parent: 2 + - uid: 822 + components: + - type: Transform + pos: -4.5,-24.5 + parent: 2 + - uid: 827 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 2 + - uid: 828 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 2 + - uid: 829 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 2 + - uid: 830 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 2 + - uid: 836 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 2 + - uid: 837 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 2 + - uid: 838 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - uid: 839 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 2 + - uid: 840 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 2 + - uid: 843 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 2 + - uid: 846 + components: + - type: Transform + pos: -13.5,-22.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 2 + - uid: 848 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: -21.5,-17.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: -22.5,-20.5 + parent: 2 + - uid: 852 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: -22.5,-18.5 + parent: 2 + - uid: 854 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 2 + - uid: 855 + components: + - type: Transform + pos: -30.5,-14.5 + parent: 2 + - uid: 856 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 859 + components: + - type: Transform + pos: -28.5,-17.5 + parent: 2 + - uid: 860 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 2 + - uid: 861 + components: + - type: Transform + pos: -29.5,-11.5 + parent: 2 + - uid: 863 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 2 + - uid: 864 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - uid: 865 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - uid: 866 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 2 + - uid: 868 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 869 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 871 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 872 + components: + - type: Transform + pos: 15.5,19.5 + parent: 2 + - uid: 873 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 886 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 2 + - uid: 927 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 2 + - uid: 928 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 2 + - uid: 929 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 2 + - uid: 930 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 + - uid: 931 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 2 + - uid: 932 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 2 + - uid: 965 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 + - uid: 1016 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 2 + - uid: 1017 + components: + - type: Transform + pos: 38.5,-19.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: 36.5,-16.5 + parent: 2 + - uid: 1025 + components: + - type: Transform + pos: 37.5,-20.5 + parent: 2 + - uid: 1030 + components: + - type: Transform + pos: 38.5,-20.5 + parent: 2 + - uid: 1037 + components: + - type: Transform + pos: -24.5,-17.5 + parent: 2 + - uid: 1038 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 2 + - uid: 1040 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 2 + - uid: 1053 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 2 + - uid: 1062 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + pos: -26.5,5.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: -26.5,4.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: 14.5,23.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - uid: 1208 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + pos: 27.5,10.5 + parent: 2 + - uid: 1214 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 2 + - uid: 1215 + components: + - type: Transform + pos: 35.5,-22.5 + parent: 2 + - uid: 1217 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 2 + - uid: 1267 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 1288 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 1289 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - uid: 1304 + components: + - type: Transform + pos: -26.5,-19.5 + parent: 2 + - uid: 1306 + components: + - type: Transform + pos: -26.5,-16.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 2 + - uid: 1309 + components: + - type: Transform + pos: -26.5,-18.5 + parent: 2 + - uid: 1333 + components: + - type: Transform + pos: 37.5,-4.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + pos: 14.5,24.5 + parent: 2 + - uid: 1391 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 1454 + components: + - type: Transform + pos: 22.5,14.5 + parent: 2 + - uid: 1455 + components: + - type: Transform + pos: 22.5,13.5 + parent: 2 + - uid: 1456 + components: + - type: Transform + pos: -26.5,6.5 + parent: 2 + - uid: 1457 + components: + - type: Transform + pos: -25.5,6.5 + parent: 2 + - uid: 1459 + components: + - type: Transform + pos: 22.5,11.5 + parent: 2 + - uid: 1460 + components: + - type: Transform + pos: 22.5,12.5 + parent: 2 + - uid: 1461 + components: + - type: Transform + pos: 15.5,23.5 + parent: 2 + - uid: 1462 + components: + - type: Transform + pos: 15.5,22.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + pos: 22.5,8.5 + parent: 2 + - uid: 1529 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 1586 + components: + - type: Transform + pos: 20.5,18.5 + parent: 2 + - uid: 1588 + components: + - type: Transform + pos: 16.5,21.5 + parent: 2 + - uid: 1594 + components: + - type: Transform + pos: -25.5,5.5 + parent: 2 + - uid: 1622 + components: + - type: Transform + pos: 17.5,21.5 + parent: 2 + - uid: 1623 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 + - uid: 1624 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 1643 + components: + - type: Transform + pos: 20.5,15.5 + parent: 2 + - uid: 1644 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 1645 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - uid: 1650 + components: + - type: Transform + pos: 23.5,16.5 + parent: 2 + - uid: 1651 + components: + - type: Transform + pos: 24.5,15.5 + parent: 2 + - uid: 1652 + components: + - type: Transform + pos: 27.5,11.5 + parent: 2 + - uid: 1653 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 + - uid: 1655 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 1657 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 2 + - uid: 1658 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 2 + - uid: 1659 + components: + - type: Transform + pos: 25.5,-27.5 + parent: 2 + - uid: 1661 + components: + - type: Transform + pos: 24.5,-27.5 + parent: 2 + - uid: 1663 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 2 + - uid: 1665 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 2 + - uid: 1667 + components: + - type: Transform + pos: 19.5,19.5 + parent: 2 + - uid: 1668 + components: + - type: Transform + pos: 19.5,18.5 + parent: 2 + - uid: 1669 + components: + - type: Transform + pos: 18.5,18.5 + parent: 2 + - uid: 1671 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 1672 + components: + - type: Transform + pos: 15.5,18.5 + parent: 2 + - uid: 1673 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 2 + - uid: 1674 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - uid: 1675 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 2 + - uid: 1676 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 2 + - uid: 1678 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 2 + - uid: 1679 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - uid: 1699 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 + - uid: 1702 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 + - uid: 1703 + components: + - type: Transform + pos: 23.5,11.5 + parent: 2 + - uid: 1704 + components: + - type: Transform + pos: 23.5,14.5 + parent: 2 + - uid: 1707 + components: + - type: Transform + pos: 23.5,10.5 + parent: 2 + - uid: 1708 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 1713 + components: + - type: Transform + pos: 19.5,-24.5 + parent: 2 + - uid: 1714 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 2 + - uid: 1715 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 2 + - uid: 1716 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 2 + - uid: 1717 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 2 + - uid: 1718 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 2 + - uid: 1719 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 2 + - uid: 1720 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 2 + - uid: 1721 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 2 + - uid: 1723 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 2 + - uid: 1728 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 2 + - uid: 1732 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 2 + - uid: 1733 + components: + - type: Transform + pos: 19.5,-23.5 + parent: 2 + - uid: 1734 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 2 + - uid: 1740 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 2 + - uid: 1742 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 2 + - uid: 1743 + components: + - type: Transform + pos: 24.5,-25.5 + parent: 2 + - uid: 1744 + components: + - type: Transform + pos: 33.5,-24.5 + parent: 2 + - uid: 1745 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 2 + - uid: 1746 + components: + - type: Transform + pos: 27.5,-24.5 + parent: 2 + - uid: 1748 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 2 + - uid: 1749 + components: + - type: Transform + pos: 26.5,-25.5 + parent: 2 + - uid: 1750 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 2 + - uid: 1751 + components: + - type: Transform + pos: 29.5,-25.5 + parent: 2 + - uid: 1752 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 2 + - uid: 1753 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 2 + - uid: 1758 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 2 + - uid: 1759 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 2 + - uid: 1761 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 + - uid: 1763 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 2 + - uid: 1767 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 2 + - uid: 1774 + components: + - type: Transform + pos: 38.5,-12.5 + parent: 2 + - uid: 1775 + components: + - type: Transform + pos: 36.5,-22.5 + parent: 2 + - uid: 1783 + components: + - type: Transform + pos: 36.5,-20.5 + parent: 2 + - uid: 1784 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 2 + - uid: 1796 + components: + - type: Transform + pos: 36.5,-21.5 + parent: 2 + - uid: 1798 + components: + - type: Transform + pos: 36.5,-23.5 + parent: 2 + - uid: 1799 + components: + - type: Transform + pos: 37.5,-17.5 + parent: 2 + - uid: 1800 + components: + - type: Transform + pos: 37.5,-18.5 + parent: 2 + - uid: 1801 + components: + - type: Transform + pos: 37.5,-19.5 + parent: 2 + - uid: 1802 + components: + - type: Transform + pos: 37.5,-14.5 + parent: 2 + - uid: 1807 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 2 + - uid: 1809 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 2 + - uid: 1810 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 1813 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 2 + - uid: 1815 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 + - uid: 1819 + components: + - type: Transform + pos: 35.5,-18.5 + parent: 2 + - uid: 1820 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 2 + - uid: 1822 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - uid: 1829 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 2 + - uid: 1833 + components: + - type: Transform + pos: -18.5,-20.5 + parent: 2 + - uid: 1834 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 2 + - uid: 1837 + components: + - type: Transform + pos: -19.5,-20.5 + parent: 2 + - uid: 1847 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 2 + - uid: 1848 + components: + - type: Transform + pos: -19.5,-19.5 + parent: 2 + - uid: 1849 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 2 + - uid: 1850 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 2 + - uid: 1851 + components: + - type: Transform + pos: -24.5,-16.5 + parent: 2 + - uid: 1852 + components: + - type: Transform + pos: -17.5,-19.5 + parent: 2 + - uid: 1853 + components: + - type: Transform + pos: -17.5,-16.5 + parent: 2 + - uid: 1854 + components: + - type: Transform + pos: -17.5,-18.5 + parent: 2 + - uid: 1855 + components: + - type: Transform + pos: -18.5,-21.5 + parent: 2 + - uid: 1857 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 2 + - uid: 1858 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 2 + - uid: 1859 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 2 + - uid: 1861 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 2 + - uid: 1862 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 + - uid: 1863 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 2 + - uid: 1864 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 2 + - uid: 1865 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 2 + - uid: 1866 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 + - uid: 1868 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 2 + - uid: 1884 + components: + - type: Transform + pos: -6.5,-24.5 + parent: 2 + - uid: 1885 + components: + - type: Transform + pos: -6.5,-25.5 + parent: 2 + - uid: 1886 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 2 + - uid: 1889 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 + - uid: 1892 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 2 + - uid: 1896 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 2 + - uid: 1898 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 2 + - uid: 1899 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 2 + - uid: 1901 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 2 + - uid: 1910 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 2 + - uid: 1912 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 2 + - uid: 1913 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 2 + - uid: 1915 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 2 + - uid: 1916 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 2 + - uid: 1917 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 2 + - uid: 1918 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 2 + - uid: 1919 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 2 + - uid: 1925 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 2 + - uid: 1927 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 2 + - uid: 1928 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 2 + - uid: 1929 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 2 + - uid: 1930 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 2 + - uid: 1931 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 2 + - uid: 1932 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 2 + - uid: 1933 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 2 + - uid: 1934 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 2 + - uid: 1935 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 2 + - uid: 1936 + components: + - type: Transform + pos: -22.5,-16.5 + parent: 2 + - uid: 1937 + components: + - type: Transform + pos: -29.5,-13.5 + parent: 2 + - uid: 1938 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 2 + - uid: 1941 + components: + - type: Transform + pos: -23.5,-20.5 + parent: 2 + - uid: 1947 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 2 + - uid: 1949 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 2 + - uid: 1950 + components: + - type: Transform + pos: 27.5,-27.5 + parent: 2 + - uid: 1951 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 2 + - uid: 1957 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 2 + - uid: 1960 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 2 + - uid: 1964 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - uid: 1970 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 2 + - uid: 1971 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 2 + - uid: 1972 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 2 + - uid: 1974 + components: + - type: Transform + pos: 23.5,-28.5 + parent: 2 + - uid: 1975 + components: + - type: Transform + pos: 24.5,-28.5 + parent: 2 + - uid: 1976 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 2 + - uid: 1977 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 1978 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 + - uid: 1982 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 2 + - uid: 1983 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 1985 + components: + - type: Transform + pos: 36.5,-18.5 + parent: 2 + - uid: 1986 + components: + - type: Transform + pos: 37.5,-16.5 + parent: 2 + - uid: 1988 + components: + - type: Transform + pos: -21.5,-16.5 + parent: 2 + - uid: 1990 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 1991 + components: + - type: Transform + pos: -14.5,-22.5 + parent: 2 + - uid: 1994 + components: + - type: Transform + pos: -17.5,-21.5 + parent: 2 + - uid: 1995 + components: + - type: Transform + pos: -14.5,-21.5 + parent: 2 + - uid: 1997 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 2 + - uid: 1998 + components: + - type: Transform + pos: 36.5,-19.5 + parent: 2 + - uid: 2000 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 2 + - uid: 2001 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 2 + - uid: 2002 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 2 + - uid: 2003 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 2 + - uid: 2004 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 2 + - uid: 2005 + components: + - type: Transform + pos: 32.5,-26.5 + parent: 2 + - uid: 2006 + components: + - type: Transform + pos: 26.5,10.5 + parent: 2 + - uid: 2007 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 2008 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - uid: 2009 + components: + - type: Transform + pos: 28.5,10.5 + parent: 2 + - uid: 2010 + components: + - type: Transform + pos: 34.5,7.5 + parent: 2 + - uid: 2011 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 2 + - uid: 2025 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 2 + - uid: 2026 + components: + - type: Transform + pos: 35.5,-20.5 + parent: 2 + - uid: 2029 + components: + - type: Transform + pos: 37.5,-21.5 + parent: 2 + - uid: 2031 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 2053 + components: + - type: Transform + pos: 22.5,10.5 + parent: 2 + - uid: 2054 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 2 + - uid: 2060 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 2114 + components: + - type: Transform + pos: 36.5,0.5 + parent: 2 + - uid: 2132 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 + - uid: 2134 + components: + - type: Transform + pos: 15.5,21.5 + parent: 2 + - uid: 2135 + components: + - type: Transform + pos: 27.5,9.5 + parent: 2 + - uid: 2136 + components: + - type: Transform + pos: 27.5,8.5 + parent: 2 + - uid: 2137 + components: + - type: Transform + pos: 28.5,9.5 + parent: 2 + - uid: 2138 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 + - uid: 2139 + components: + - type: Transform + pos: 24.5,14.5 + parent: 2 + - uid: 2140 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 2 + - uid: 2146 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 2 + - uid: 2147 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 2 + - uid: 2184 + components: + - type: Transform + pos: 20.5,11.5 + parent: 2 + - uid: 2185 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - uid: 2186 + components: + - type: Transform + pos: 20.5,9.5 + parent: 2 + - uid: 2192 + components: + - type: Transform + pos: 38.5,0.5 + parent: 2 + - uid: 2197 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 2 + - uid: 2202 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 + - uid: 2217 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 + - uid: 2219 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - uid: 2220 + components: + - type: Transform + pos: 35.5,7.5 + parent: 2 + - uid: 2221 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - uid: 2229 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 2 + - uid: 2238 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 2239 + components: + - type: Transform + pos: 21.5,16.5 + parent: 2 + - uid: 2240 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - uid: 2241 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 2 + - uid: 2243 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 2 + - uid: 2247 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 2 + - uid: 2249 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 2 + - uid: 2252 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 2 + - uid: 2253 + components: + - type: Transform + pos: -27.5,-18.5 + parent: 2 + - uid: 2259 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 2 + - uid: 2261 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 2 + - uid: 2262 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 2 + - uid: 2263 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 2 + - uid: 2264 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 2 + - uid: 2267 + components: + - type: Transform + pos: 3.5,-27.5 + parent: 2 + - uid: 2268 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 2 + - uid: 2269 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 2 + - uid: 2270 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 2 + - uid: 2273 + components: + - type: Transform + pos: 16.5,19.5 + parent: 2 + - uid: 2306 + components: + - type: Transform + pos: -24.5,-19.5 + parent: 2 + - uid: 2310 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 + - uid: 2323 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - uid: 2324 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 + - uid: 2325 + components: + - type: Transform + pos: 21.5,11.5 + parent: 2 + - uid: 2341 + components: + - type: Transform + pos: 37.5,2.5 + parent: 2 + - uid: 2389 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 2410 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 2411 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 2 + - uid: 2413 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 2 + - uid: 2414 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - uid: 2415 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 2417 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 2418 + components: + - type: Transform + pos: 22.5,18.5 + parent: 2 + - uid: 2419 + components: + - type: Transform + pos: 21.5,9.5 + parent: 2 + - uid: 2421 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - uid: 2422 + components: + - type: Transform + pos: 20.5,8.5 + parent: 2 + - uid: 2423 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 2425 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 + - uid: 2428 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 2 + - uid: 2442 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - uid: 2443 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 2451 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 2 + - uid: 2475 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 2 + - uid: 2478 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 2 + - uid: 2479 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 + - uid: 2480 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 2 + - uid: 2483 + components: + - type: Transform + pos: 33.5,6.5 + parent: 2 + - uid: 5079 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 2 +- proto: WallRockArtifactFragment + entities: + - uid: 519 + components: + - type: Transform + pos: 36.5,-12.5 + parent: 2 + - uid: 560 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 2 + - uid: 1814 + components: + - type: Transform + pos: 37.5,-13.5 + parent: 2 + - uid: 1890 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 2 +- proto: WallRockCoal + entities: + - uid: 79 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 2 + - uid: 360 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 2 + - uid: 562 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 + - uid: 569 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + pos: 37.5,1.5 + parent: 2 + - uid: 1398 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 1401 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - uid: 1619 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 2 + - uid: 1633 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 2 + - uid: 2071 + components: + - type: Transform + pos: 33.5,7.5 + parent: 2 + - uid: 2113 + components: + - type: Transform + pos: 36.5,2.5 + parent: 2 + - uid: 2148 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 2222 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 2287 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 2 + - uid: 2412 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 + - uid: 2416 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 +- proto: WallRockPlasma + entities: + - uid: 330 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - uid: 862 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 2 + - uid: 1677 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 2 + - uid: 2091 + components: + - type: Transform + pos: -25.5,4.5 + parent: 2 + - uid: 2133 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 2 +- proto: WallRockQuartz + entities: + - uid: 341 + components: + - type: Transform + pos: 25.5,10.5 + parent: 2 + - uid: 346 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 + - uid: 348 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - uid: 485 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - uid: 582 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 2 + - uid: 729 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 2 + - uid: 742 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 2 + - uid: 756 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 2 + - uid: 779 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 2 + - uid: 1028 + components: + - type: Transform + pos: 35.5,-23.5 + parent: 2 + - uid: 1308 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 2 + - uid: 1690 + components: + - type: Transform + pos: 23.5,13.5 + parent: 2 + - uid: 1706 + components: + - type: Transform + pos: 23.5,12.5 + parent: 2 + - uid: 1709 + components: + - type: Transform + pos: 23.5,8.5 + parent: 2 + - uid: 1741 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 + - uid: 1760 + components: + - type: Transform + pos: 32.5,-24.5 + parent: 2 + - uid: 1821 + components: + - type: Transform + pos: 35.5,-19.5 + parent: 2 + - uid: 1836 + components: + - type: Transform + pos: -19.5,-18.5 + parent: 2 + - uid: 1856 + components: + - type: Transform + pos: -17.5,-17.5 + parent: 2 + - uid: 1860 + components: + - type: Transform + pos: -5.5,-22.5 + parent: 2 + - uid: 2021 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 2 + - uid: 2059 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 2 + - uid: 2246 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 2248 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 + - uid: 2272 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + pos: 21.5,8.5 + parent: 2 +- proto: WallRockSalt + entities: + - uid: 1032 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 + - uid: 1670 + components: + - type: Transform + pos: 17.5,18.5 + parent: 2 + - uid: 1891 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 2 + - uid: 1893 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 2 + - uid: 1894 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 2 + - uid: 1897 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 2 + - uid: 1903 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 2 + - uid: 1904 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 2 + - uid: 2279 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 +- proto: WallRockSilver + entities: + - uid: 867 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 870 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 1900 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 2760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-2.5 + parent: 2 + - uid: 2768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 2 + - uid: 2875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 2 + - uid: 3534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-2.5 + parent: 2 + - uid: 4274 + components: + - type: Transform + pos: 20.5,5.5 + parent: 2 + - uid: 4484 + components: + - type: Transform + pos: 13.5,-20.5 + parent: 2 + - uid: 4485 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 2 + - uid: 4486 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 2 + - uid: 4487 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 2 + - uid: 4489 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 2 + - uid: 4491 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 2 + - uid: 4492 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 2 + - uid: 4495 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 2 + - uid: 4496 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 2 + - uid: 4497 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 + - uid: 4507 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 2 + - uid: 4508 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 2 + - uid: 4523 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 2 + - uid: 4525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-15.5 + parent: 2 + - uid: 4529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-17.5 + parent: 2 + - uid: 4539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-14.5 + parent: 2 + - uid: 4543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-15.5 + parent: 2 + - uid: 4544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 2 + - uid: 4545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 2 + - uid: 4548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-17.5 + parent: 2 + - uid: 4551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-14.5 + parent: 2 + - uid: 4553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-12.5 + parent: 2 + - uid: 4554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-11.5 + parent: 2 + - uid: 4557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-10.5 + parent: 2 + - uid: 4559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-10.5 + parent: 2 + - uid: 4560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-10.5 + parent: 2 + - uid: 4561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-9.5 + parent: 2 + - uid: 4562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-8.5 + parent: 2 + - uid: 4563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-18.5 + parent: 2 + - uid: 4565 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 2 + - uid: 4570 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - uid: 4571 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 4572 + components: + - type: Transform + pos: 32.5,3.5 + parent: 2 + - uid: 4573 + components: + - type: Transform + pos: 33.5,1.5 + parent: 2 + - uid: 4574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,1.5 + parent: 2 + - uid: 4575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,1.5 + parent: 2 + - uid: 4577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-12.5 + parent: 2 + - uid: 4578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-12.5 + parent: 2 + - uid: 4829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-2.5 + parent: 2 +- proto: WallSolidRust + entities: + - uid: 2429 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 2 + - uid: 4434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,5.5 + parent: 2 + - uid: 4483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-20.5 + parent: 2 + - uid: 4488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-20.5 + parent: 2 + - uid: 4490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-20.5 + parent: 2 + - uid: 4494 + components: + - type: Transform + pos: -15.5,-10.5 + parent: 2 + - uid: 4498 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 2 + - uid: 4499 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 + - uid: 4515 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 2 + - uid: 4516 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 2 + - uid: 4517 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 2 + - uid: 4524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-16.5 + parent: 2 + - uid: 4526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-17.5 + parent: 2 + - uid: 4528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-17.5 + parent: 2 + - uid: 4532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-17.5 + parent: 2 + - uid: 4542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-16.5 + parent: 2 + - uid: 4549 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 2 + - uid: 4550 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 + - uid: 4552 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 2 + - uid: 4555 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 2 + - uid: 4556 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 2 + - uid: 4558 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 2 +- proto: WardrobePrisonFilled + entities: + - uid: 4583 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 +- proto: WaterCooler + entities: + - uid: 453 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 2 + - uid: 1419 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 2 + - uid: 5128 + components: + - type: Transform + pos: -5.5,19.5 + parent: 2 +- proto: WeaponCapacitorRecharger + entities: + - uid: 1073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,22.5 + parent: 2 + - uid: 1557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,11.5 + parent: 2 +- proto: WeaponDisabler + entities: + - uid: 1074 + components: + - type: Transform + pos: -16.5,21.5 + parent: 2 + - uid: 5153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.107508,8.822502 + parent: 2 +- proto: WeaponRifleAk + entities: + - uid: 4841 + components: + - type: Transform + pos: -26.316637,-1.4715986 + parent: 2 +- proto: WeaponRifleLecter + entities: + - uid: 1336 + components: + - type: Transform + pos: -10.361088,18.126633 + parent: 2 +- proto: WeaponShotgunDoubleBarreledRubber + entities: + - uid: 4590 + components: + - type: Transform + pos: 24.532763,-12.045612 + parent: 2 +- proto: WeaponSubMachineGunDrozd + entities: + - uid: 1162 + components: + - type: Transform + pos: -8.736088,18.157883 + parent: 2 +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 4591 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 2 + - uid: 4592 + components: + - type: Transform + pos: 31.5,-21.5 + parent: 2 + - uid: 4594 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 2 +- proto: WebBed + entities: + - uid: 4595 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 2 +- proto: WebDoor + entities: + - uid: 4596 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 2 +- proto: WelderMini + entities: + - uid: 4597 + components: + - type: Transform + pos: -10.581263,-11.525421 + parent: 2 + - uid: 5005 + components: + - type: Transform + parent: 5004 + - type: Physics + canCollide: False +- proto: WheatBushel + entities: + - uid: 4600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.349625,-13.228182 + parent: 2 + - uid: 4601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.482443,-12.121987 + parent: 2 + - uid: 4602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.486307,-11.347651 + parent: 2 + - uid: 4603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.619125,-13.449421 + parent: 2 +- proto: Windoor + entities: + - uid: 481 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 +- proto: WindoorSecure + entities: + - uid: 4605 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 2 +- proto: WindoorSecureBrigLocked + entities: + - uid: 1627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,4.5 + parent: 2 +- proto: Window + entities: + - uid: 4620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-8.5 + parent: 2 + - uid: 4621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-9.5 + parent: 2 + - uid: 4627 + components: + - type: Transform + pos: -22.5,9.5 + parent: 2 + - uid: 4628 + components: + - type: Transform + pos: -22.5,8.5 + parent: 2 + - uid: 4632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-10.5 + parent: 2 + - uid: 4633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-10.5 + parent: 2 + - uid: 4635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-10.5 + parent: 2 + - uid: 4637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 2 +- proto: WindowDirectional + entities: + - uid: 477 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 1115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 2 + - uid: 1117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 2 + - uid: 2226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + - uid: 4638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,1.5 + parent: 2 + - uid: 4639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,1.5 + parent: 2 + - uid: 4640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,1.5 + parent: 2 + - uid: 4641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,1.5 + parent: 2 + - uid: 4642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,1.5 + parent: 2 + - uid: 4643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 2 + - uid: 4644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-1.5 + parent: 2 +- proto: WindowReinforcedDirectional + entities: + - uid: 4 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 + - uid: 17 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 2 + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 2 + - uid: 54 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 2 + - uid: 55 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 2 + - uid: 56 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-1.5 + parent: 2 + - uid: 64 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - uid: 72 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - uid: 73 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 2 + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 2 + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,15.5 + parent: 2 + - uid: 107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,19.5 + parent: 2 + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,3.5 + parent: 2 + - uid: 124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,3.5 + parent: 2 + - uid: 125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,3.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - uid: 193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,3.5 + parent: 2 + - uid: 280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 2 + - uid: 286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 2 + - uid: 288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 2 + - uid: 289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - uid: 291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 2 + - uid: 310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,4.5 + parent: 2 + - uid: 311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 2 + - uid: 312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 2 + - uid: 365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 2 + - uid: 445 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - uid: 446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,3.5 + parent: 2 + - uid: 448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,3.5 + parent: 2 + - uid: 449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,3.5 + parent: 2 + - uid: 474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 2 + - uid: 475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 2 + - uid: 508 + components: + - type: Transform + pos: -23.5,3.5 + parent: 2 + - uid: 512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,3.5 + parent: 2 + - uid: 513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,3.5 + parent: 2 + - uid: 549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,21.5 + parent: 2 + - uid: 550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,21.5 + parent: 2 + - uid: 649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,16.5 + parent: 2 + - uid: 683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,17.5 + parent: 2 + - uid: 695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,17.5 + parent: 2 + - uid: 703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 2 + - uid: 707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,18.5 + parent: 2 + - uid: 968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 2 + - uid: 986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,12.5 + parent: 2 + - uid: 994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 2 + - uid: 1009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 2 + - uid: 1010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 2 + - uid: 1019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 2 + - uid: 1022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 2 + - uid: 1026 + components: + - type: Transform + pos: -15.5,3.5 + parent: 2 + - uid: 1064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,3.5 + parent: 2 + - uid: 1080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,12.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 1119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 1123 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 1124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 2 + - uid: 1125 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 1126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 2 + - uid: 1135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,12.5 + parent: 2 + - uid: 1136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,12.5 + parent: 2 + - uid: 1155 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 1156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,4.5 + parent: 2 + - uid: 1158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,16.5 + parent: 2 + - uid: 1171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 2 + - uid: 1205 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 1218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,3.5 + parent: 2 + - uid: 1220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 2 + - uid: 1296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 2 + - uid: 1297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 2 + - uid: 1324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,15.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,13.5 + parent: 2 + - uid: 1465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 2 + - uid: 1491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,3.5 + parent: 2 + - uid: 1493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,3.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,3.5 + parent: 2 + - uid: 1498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,3.5 + parent: 2 + - uid: 1499 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - uid: 1533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,4.5 + parent: 2 + - uid: 1534 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 1535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 2 + - uid: 1536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 2 + - uid: 1538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 2 + - uid: 1574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,15.5 + parent: 2 + - uid: 1578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 2 + - uid: 1582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,7.5 + parent: 2 + - uid: 1589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,4.5 + parent: 2 + - uid: 1592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,3.5 + parent: 2 + - uid: 1597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 2 + - uid: 1608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,12.5 + parent: 2 + - uid: 1636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,12.5 + parent: 2 + - uid: 1639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,3.5 + parent: 2 + - uid: 1680 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 1736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,18.5 + parent: 2 + - uid: 1762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,13.5 + parent: 2 + - uid: 1830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,14.5 + parent: 2 + - uid: 1845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,13.5 + parent: 2 + - uid: 1846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,12.5 + parent: 2 + - uid: 2012 + components: + - type: Transform + pos: -6.5,7.5 + parent: 2 + - uid: 2013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 + - uid: 2055 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 2066 + components: + - type: Transform + pos: -1.5,16.5 + parent: 2 + - uid: 2083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,19.5 + parent: 2 + - uid: 2084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,19.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,16.5 + parent: 2 + - uid: 2093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,3.5 + parent: 2 + - uid: 2109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,7.5 + parent: 2 + - uid: 2110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,3.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 2 + - uid: 2119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 + - uid: 2150 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 + - uid: 2209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 2 + - uid: 2214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,3.5 + parent: 2 + - uid: 2216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 2 + - uid: 2228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 2 + - uid: 2233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + pos: -19.5,3.5 + parent: 2 + - uid: 2256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,3.5 + parent: 2 + - uid: 2257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 2 + - uid: 2282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 2 + - uid: 2283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 2 + - uid: 2284 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 2 + - uid: 2291 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 2293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,7.5 + parent: 2 + - uid: 2294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 + - uid: 2296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 2 + - uid: 2298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + - uid: 2300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 2 + - uid: 2311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,3.5 + parent: 2 + - uid: 2317 + components: + - type: Transform + pos: -17.5,3.5 + parent: 2 + - uid: 2326 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 2334 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 2337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-1.5 + parent: 2 + - uid: 2357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,3.5 + parent: 2 + - uid: 2358 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 2359 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 2360 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 2 + - uid: 2386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + - uid: 2405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 2 + - uid: 3113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,16.5 + parent: 2 + - uid: 4655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-16.5 + parent: 2 + - uid: 4664 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 2 + - uid: 4665 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 + - uid: 4666 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 2 + - uid: 4667 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 2 + - uid: 4668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-8.5 + parent: 2 + - uid: 4669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-9.5 + parent: 2 + - uid: 4670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-15.5 + parent: 2 + - uid: 4677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,21.5 + parent: 2 + - uid: 4678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,21.5 + parent: 2 + - uid: 4679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,21.5 + parent: 2 + - uid: 4680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,21.5 + parent: 2 + - uid: 4681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,21.5 + parent: 2 + - uid: 4682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,21.5 + parent: 2 + - uid: 4683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,21.5 + parent: 2 + - uid: 4684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,21.5 + parent: 2 + - uid: 4685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,21.5 + parent: 2 + - uid: 4687 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 2 +- proto: WoodDoor + entities: + - uid: 4692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-11.5 + parent: 2 +- proto: WoodenBench + entities: + - uid: 1085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 2 + - uid: 1168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-11.5 + parent: 2 + - uid: 1562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 2 + - uid: 4695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-9.5 + parent: 2 +... diff --git a/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml b/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml index 5c4d332954..8e154ba084 100644 --- a/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml +++ b/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml @@ -110,7 +110,7 @@ - EncryptionKeySecurity - EncryptionKeyCommand - EncryptionKeyCommon - - EncryptionKeyPrison # Stories-SpacePrison + - PRISONEncryptionKey # Stories-SpacePrison - type: Sprite sprite: Clothing/Ears/Headsets/security.rsi - type: Clothing diff --git a/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml b/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml index 0731e6219f..25b4ddca7c 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml @@ -80,7 +80,7 @@ - EncryptionKeySecurity - EncryptionKeyService - EncryptionKeyCommand - - EncryptionKeyPrison + - PRISONEncryptionKey - type: entity parent: TelecomServer diff --git a/Resources/Prototypes/Roles/Jobs/departments.yml b/Resources/Prototypes/Roles/Jobs/departments.yml index a7838a6adc..975b2fb023 100644 --- a/Resources/Prototypes/Roles/Jobs/departments.yml +++ b/Resources/Prototypes/Roles/Jobs/departments.yml @@ -40,7 +40,6 @@ - Captain - IAA # Stories-IAA - CentralCommandOfficial - - HeadOfSpacePrison # Stories-SpacePrison - ChiefEngineer - ChiefMedicalOfficer - HeadOfPersonnel diff --git a/Resources/Prototypes/Stories/Access/prison.yml b/Resources/Prototypes/Stories/Access/prison.yml new file mode 100644 index 0000000000..4ecd892a70 --- /dev/null +++ b/Resources/Prototypes/Stories/Access/prison.yml @@ -0,0 +1,23 @@ +- type: accessLevel + id: HeadOfPrison + name: Начальник тюрьмы + +- type: accessLevel + id: PrisonBrig + name: Бриг тюрьмы + +- type: accessLevel + id: Prison + name: Тюрьма + +- type: accessLevel + id: PrisonMed + name: Медицинский тюрьма + +- type: accessLevel + id: PrisonEng + name: Инженерный тюрьма + +- type: accessLevel + id: Prisoner + name: Заключенный diff --git a/Resources/Prototypes/Stories/Catalog/Fills/Backpacks/StarterGear/backpack.yml b/Resources/Prototypes/Stories/Catalog/Fills/Backpacks/StarterGear/backpack.yml index 67e84f7605..fdc9e9a4d3 100644 --- a/Resources/Prototypes/Stories/Catalog/Fills/Backpacks/StarterGear/backpack.yml +++ b/Resources/Prototypes/Stories/Catalog/Fills/Backpacks/StarterGear/backpack.yml @@ -1,13 +1,4 @@ -- type: entity - noSpawn: true - parent: ClothingBackpackSpacePrison - id: ClothingBackpackSpacePrisonFilled - components: - - type: StorageFill - contents: - - id: BoxSurvivalSecurity - - id: Flash - - id: MagazinePistol +# TODO: Устрарело. Удалить все что ниже. - type: entity noSpawn: true diff --git a/Resources/Prototypes/Stories/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml b/Resources/Prototypes/Stories/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml index 01a0ed41f8..eb6b6d8ea5 100644 --- a/Resources/Prototypes/Stories/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml +++ b/Resources/Prototypes/Stories/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml @@ -1,7 +1,7 @@ - type: entity noSpawn: true - parent: ClothingBackpackDuffelSpacePrison - id: ClothingBackpackDuffelSpacePrisonFilled + parent: PRISONClothingBackpackDuffel + id: PRISONClothingBackpackDuffelFilled components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Stories/Catalog/Fills/Backpacks/StarterGear/satchel.yml b/Resources/Prototypes/Stories/Catalog/Fills/Backpacks/StarterGear/satchel.yml index 47941f119c..e2233ba0be 100644 --- a/Resources/Prototypes/Stories/Catalog/Fills/Backpacks/StarterGear/satchel.yml +++ b/Resources/Prototypes/Stories/Catalog/Fills/Backpacks/StarterGear/satchel.yml @@ -1,7 +1,7 @@ - type: entity noSpawn: true - parent: ClothingBackpackSatchelSpacePrison - id: ClothingBackpackSatchelSpacePrisonFilled + parent: PRISONClothingBackpackSatchel + id: PRISONClothingBackpackSatchelFilled components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Stories/Catalog/Fills/Items/belt.yml b/Resources/Prototypes/Stories/Catalog/Fills/Items/belt.yml index aca5f03601..9baf6cb161 100644 --- a/Resources/Prototypes/Stories/Catalog/Fills/Items/belt.yml +++ b/Resources/Prototypes/Stories/Catalog/Fills/Items/belt.yml @@ -2,18 +2,8 @@ parent: ClothingBeltJedi id: ClothingBeltJediFilled components: - - type: StorageFill - contents: - - id: Handcuffs - amount: 3 - - id: Flash - -- type: entity - id: ClothingBeltHoSPSheathFilled - parent: ClothingBeltHoSPSheath - suffix: Filled - components: - - type: ContainerFill - containers: - item: - - HoSPSabre + - type: StorageFill + contents: + - id: Handcuffs + amount: 3 + - id: Flash diff --git a/Resources/Prototypes/Stories/Catalog/Fills/Items/prison.yml b/Resources/Prototypes/Stories/Catalog/Fills/Items/prison.yml new file mode 100644 index 0000000000..c2952debd6 --- /dev/null +++ b/Resources/Prototypes/Stories/Catalog/Fills/Items/prison.yml @@ -0,0 +1,9 @@ +- type: entity + id: PRISONClothingBeltSheathFilled + parent: PRISONClothingBeltSheath + suffix: Filled + components: + - type: ContainerFill + containers: + item: + - PRISONSabre diff --git a/Resources/Prototypes/Stories/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Stories/Catalog/Fills/Lockers/heads.yml deleted file mode 100644 index 081e4b9f7d..0000000000 --- a/Resources/Prototypes/Stories/Catalog/Fills/Lockers/heads.yml +++ /dev/null @@ -1,25 +0,0 @@ -- type: entity - id: LockerHeadOfSPFilled - suffix: Filled - parent: LockerWardenOfSP - components: - - type: StorageFill - contents: - - id: WeaponDisabler - prob: 0.5 - - id: DrinkVacuumFlask - prob: 0.8 - - id: ClothingBeltSecurityFilled - - id: ClothingHeadsetPrisonAlt - - id: ClothingEyesGlassesSpacePrison - - id: ClothingShoesBootsJackSP - - id: CigarGoldCase - prob: 0.50 - - id: PlushieSharkPink - prob: 0.1 - - id: DoorRemoteSecurity - - id: ClothingUniformJumpskirtHoSP - - id: ClothingUniformJumpsuitHoSP - - id: RubberStampHoSP - - id: ClothingNeckCloakHoSP - - id: HoloprojectorSecurity diff --git a/Resources/Prototypes/Stories/Catalog/Fills/Lockers/prison.yml b/Resources/Prototypes/Stories/Catalog/Fills/Lockers/prison.yml new file mode 100644 index 0000000000..42c168ff09 --- /dev/null +++ b/Resources/Prototypes/Stories/Catalog/Fills/Lockers/prison.yml @@ -0,0 +1,49 @@ +- type: entity + id: PRISONLockerHeadOfPrisonFilled + suffix: Filled + parent: PRISONLockerHeadOfPrison + components: + - type: StorageFill + contents: + # - id: PRISONHandheldShuttleConsole + - id: PRISONClothingHeadHatUshanka + - id: PRISONClothingHeadHatCapHeadOfPrison + - id: ClothingMaskGasSwat + - id: PRISONClothingOuterHardsuitHeadOfPrison + # - id: PRISONClothingBeltSheathFilled + - id: WeaponDisabler + - id: DrinkVacuumFlask + - id: ClothingBeltSecurityFilled + - id: PRISONClothingOuterCoatHeadOfPrison + - id: ClothingHandsGlovesCombat + - id: PRISONClothingHeadsetAlt + - id: PRISONClothingEyesGlasses + - id: PRISONClothingShoesBootsJack + - id: CigarGoldCase + prob: 0.50 + - id: PRISONDoorRemote + - id: PRISONClothingUniformJumpsuitHeadOfPrison + - id: PRISONRubberStamp + - id: HoloprojectorSecurity + +- type: entity + id: PRISONLockerFilled + suffix: Filled + parent: PRISONLocker + components: + - type: StorageFill + contents: + - id: WeaponDisabler + - id: ClothingBeltSecurityFilled + - id: Flash + prob: 0.5 + - id: FlashlightSeclite + prob: 0.8 + - id: ClothingHandsGlovesColorBlack + - id: PRISONClothingUniformJumpsuit + - id: PRISONClothingOuterVestArmor + - id: PRISONClothingEyesGlasses + - id: PRISONClothingHeadset + - id: PRISONClothingShoesBootsJack + - id: PRISONClothingHeadHatSoft + prob: 0.2 diff --git a/Resources/Prototypes/Stories/Catalog/Fills/Lockers/spaceprison.yml b/Resources/Prototypes/Stories/Catalog/Fills/Lockers/spaceprison.yml deleted file mode 100644 index e3f73644d4..0000000000 --- a/Resources/Prototypes/Stories/Catalog/Fills/Lockers/spaceprison.yml +++ /dev/null @@ -1,19 +0,0 @@ -- type: entity - id: LockerSpacePrisonFilled - suffix: Filled - parent: LockerSpacePrison - components: - - type: StorageFill - contents: - - id: FlashlightSeclite - prob: 0.8 - - id: ClothingOuterArmorBasic - - id: ClothingBeltSecurityFilled - - id: Flash - prob: 0.5 - - id: ClothingEyesGlassesSpacePrison - - id: ClothingHeadsetPrison - - id: ClothingHandsGlovesColorBlack - - id: ClothingShoesBootsJackSP - - id: ClothingOuterWinterSP - prob: 0.2 diff --git a/Resources/Prototypes/Stories/Catalog/Fills/Lockers/suit_storage.yml b/Resources/Prototypes/Stories/Catalog/Fills/Lockers/suit_storage.yml index 3f69d328f3..a3f5bfec78 100644 --- a/Resources/Prototypes/Stories/Catalog/Fills/Lockers/suit_storage.yml +++ b/Resources/Prototypes/Stories/Catalog/Fills/Lockers/suit_storage.yml @@ -1,36 +1,63 @@ - type: entity - id: SuitStorageOfficerSP + name: хранилище скафандра офицера тюрьмы + description: Необычное высокотехнологичное хранилище, предназначенное для хранения космических скафандров. + id: PRISONSuitStorageOfficer parent: SuitStorageBase - suffix: SP Officer + suffix: Officer components: - type: StorageFill contents: - - id: NitrogenTankFilled - id: OxygenTankFilled - - id: ClothingOuterHardsuitOfficerSP + - id: PRISONClothingOuterHardsuitOfficer - id: ClothingMaskBreath + - id: ClothingShoesBootsMag + - type: AccessReader + access: [["PrisonBrig"]] - type: entity - id: SuitStorageEngiSP + name: хранилище скафандра врача тюрьмы + description: Необычное высокотехнологичное хранилище, предназначенное для хранения космических скафандров. + id: PRISONSuitStorageMed parent: SuitStorageBase - suffix: SP Engineer + suffix: Med components: - type: StorageFill contents: - - id: NitrogenTankFilled - id: OxygenTankFilled + - id: PRISONClothingOuterHardsuitMedic + - id: ClothingMaskBreath - id: ClothingShoesBootsMag - - id: ClothingOuterHardsuitEngiSP + - type: AccessReader + access: [["PrisonMed"]] + +- type: entity + name: хранилище скафандра инженера тюрьмы + description: Необычное высокотехнологичное хранилище, предназначенное для хранения космических скафандров. + id: PRISONSuitStorageEngi + parent: SuitStorageBase + suffix: Engi + components: + - type: StorageFill + contents: + - id: OxygenTankFilled + - id: PRISONClothingOuterHardsuitEngi - id: ClothingMaskBreath + - id: ClothingShoesBootsMag + - type: AccessReader + access: [["PrisonEng"]] - type: entity - id: SuitStorageWardenOfSP + name: хранилище скафандра начальника тюрьмы + description: Необычное высокотехнологичное хранилище, предназначенное для хранения космических скафандров. + id: PRISONSuitStorageHeadOfPrison parent: SuitStorageBase - suffix: WardenOfSP + suffix: HeadOfPrison components: - type: StorageFill contents: - - id: NitrogenTankFilled - id: OxygenTankFilled - - id: ClothingOuterHardsuitWardenOfSP + - id: PRISONClothingOuterHardsuitHeadOfPrison - id: ClothingMaskBreath + - id: ClothingShoesBootsMag + - type: AccessReader + access: [["HeadOfPrison"]] diff --git a/Resources/Prototypes/Stories/Catalog/VendingMachines/Inventories/prison.yml b/Resources/Prototypes/Stories/Catalog/VendingMachines/Inventories/prison.yml new file mode 100644 index 0000000000..8d1af28830 --- /dev/null +++ b/Resources/Prototypes/Stories/Catalog/VendingMachines/Inventories/prison.yml @@ -0,0 +1,39 @@ +- type: vendingMachineInventory + id: PRISONTechInventory + startingInventory: + SecurityWhistle: 5 + Handcuffs: 8 + GrenadeFlashBang: 4 + TearGasGrenade: 4 + ClusterBangFull: 2 + GrenadeStinger: 4 + Flash: 5 + Tourniquet: 5 + FlashlightSeclite: 5 + PRISONClothingEyesGlasses: 2 + PRISONClothingBeltWebbing: 5 + CombatKnife: 3 + Zipties: 12 + RiotShield: 2 + RiotLaserShield: 2 + RiotBulletShield: 2 + contrabandInventory: + FoodDonutHomer: 12 + FoodBoxDonut: 2 + +- type: vendingMachineInventory + id: PRISONDrobeInventory + startingInventory: + PRISONClothingBackpack: 3 + PRISONClothingBackpackSatchel: 3 + PRISONClothingBackpackDuffel: 3 + PRISONClothingUniformJumpsuit: 3 + PRISONClothingHeadHatSoft: 3 + PRISONClothingHeadHatBeret: 3 + ClothingHeadBandBlue: 3 + PRISONClothingShoesBootsJack: 3 + ClothingHandsGlovesColorBlack: 3 + PRISONClothingHeadset: 3 + PRISONClothingOuterVestArmor: 2 + ClothingEyesBlindfold: 1 + ClothingShoesBootsCombat: 1 diff --git a/Resources/Prototypes/Stories/Catalog/VendingMachines/Inventories/spdrobe.yml b/Resources/Prototypes/Stories/Catalog/VendingMachines/Inventories/spdrobe.yml deleted file mode 100644 index 4ea0a197a6..0000000000 --- a/Resources/Prototypes/Stories/Catalog/VendingMachines/Inventories/spdrobe.yml +++ /dev/null @@ -1,20 +0,0 @@ -- type: vendingMachineInventory - id: SPDrobeInventory - startingInventory: - ClothingBackpackSpacePrison: 3 - ClothingBackpackSatchelSpacePrison: 3 - ClothingBackpackDuffelSpacePrison: 3 - ClothingUniformJumpsuitSP: 3 - ClothingUniformJumpskirtSP: 3 - ClothingHeadHatBeretSP: 3 - ClothingHeadHatSPsoft: 3 - ClothingHeadBandBlue: 3 - ClothingShoesBootsJackSP: 3 - ClothingHandsGlovesColorBlack: 3 - ClothingUniformJumpsuitSecBlue: 3 - ClothingHeadsetPrison: 3 - ClothingOuterWinterSP: 2 - ClothingOuterArmorBasic: 2 - ClothingOuterArmorBasicSlim: 2 - ClothingEyesBlindfold: 1 - ClothingShoesBootsCombat: 1 diff --git a/Resources/Prototypes/Stories/Entities/Clothing/Back/backpacks.yml b/Resources/Prototypes/Stories/Entities/Clothing/Back/backpacks.yml index 98080c4e8e..0ded0fb8fb 100644 --- a/Resources/Prototypes/Stories/Entities/Clothing/Back/backpacks.yml +++ b/Resources/Prototypes/Stories/Entities/Clothing/Back/backpacks.yml @@ -9,12 +9,3 @@ - ForceRecallEquipment - type: Sprite sprite: Stories/Clothing/Back/Backpacks/jedi_nt.rsi - -- type: entity - parent: ClothingBackpack - id: ClothingBackpackSpacePrison - name: space prison officer's backpack - description: It's a very robust backpack. - components: - - type: Sprite - sprite: Stories/Clothing/Back/Backpacks/sp.rsi \ No newline at end of file diff --git a/Resources/Prototypes/Stories/Entities/Clothing/Back/duffel.yml b/Resources/Prototypes/Stories/Entities/Clothing/Back/duffel.yml deleted file mode 100644 index 250400dc39..0000000000 --- a/Resources/Prototypes/Stories/Entities/Clothing/Back/duffel.yml +++ /dev/null @@ -1,8 +0,0 @@ -- type: entity - parent: ClothingBackpackDuffel - id: ClothingBackpackDuffelSpacePrison - name: space prison officer's duffel bag - description: A large duffel bag for holding extra security related goods. - components: - - type: Sprite - sprite: Stories/Clothing/Back/Duffels/sp.rsi diff --git a/Resources/Prototypes/Stories/Entities/Clothing/Back/prison.yml b/Resources/Prototypes/Stories/Entities/Clothing/Back/prison.yml new file mode 100644 index 0000000000..d46492934c --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Clothing/Back/prison.yml @@ -0,0 +1,26 @@ +- type: entity + parent: ClothingBackpackDuffel + id: PRISONClothingBackpackDuffel + name: вещмешок сотрудника тюрьмы + description: Большой вещмешок для хранения дополнительных предметов, связанных с обеспечением побегов. + components: + - type: Sprite + sprite: Stories/Clothing/Back/Duffels/sp.rsi + +- type: entity + parent: ClothingBackpackSatchel + id: PRISONClothingBackpackSatchel + name: сумка сотрудника тюрьмы + description: Прочная сумка для обеспечения побегов. + components: + - type: Sprite + sprite: Stories/Clothing/Back/Satchels/sp.rsi + +- type: entity + parent: ClothingBackpack + id: PRISONClothingBackpack + name: рюкзак сотрудника тюрьмы + description: Это очень прочный рюкзак. + components: + - type: Sprite + sprite: Stories/Clothing/Back/Backpacks/sp.rsi diff --git a/Resources/Prototypes/Stories/Entities/Clothing/Back/satchel.yml b/Resources/Prototypes/Stories/Entities/Clothing/Back/satchel.yml deleted file mode 100644 index 59ed374e3e..0000000000 --- a/Resources/Prototypes/Stories/Entities/Clothing/Back/satchel.yml +++ /dev/null @@ -1,8 +0,0 @@ -- type: entity - parent: ClothingBackpackSatchel - id: ClothingBackpackSatchelSpacePrison - name: space prison officer's satchel - description: A robust satchel for security related needs. - components: - - type: Sprite - sprite: Stories/Clothing/Back/Satchels/sp.rsi diff --git a/Resources/Prototypes/Stories/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/Stories/Entities/Clothing/Belt/belts.yml index dfafb1e9c4..aa7f35bb35 100644 --- a/Resources/Prototypes/Stories/Entities/Clothing/Belt/belts.yml +++ b/Resources/Prototypes/Stories/Entities/Clothing/Belt/belts.yml @@ -4,54 +4,27 @@ name: ремень джедая description: Повесьте на него свой меч. components: - - type: Tag - tags: - - ForceRecallEquipment - - type: ClothingSpeedModifier - walkModifier: 1 - sprintModifier: 1.02 - - type: Sprite - sprite: Stories/Clothing/Belt/jedi_belt.rsi - state: icon - - type: Clothing - sprite: Stories/Clothing/Belt/jedi_belt.rsi - - type: Storage - maxSlots: 5 - whitelist: + - type: Tag tags: - - CigPack - - Radio - components: - - FlashOnTrigger - - Flash - - Welder - - Flash - - Handcuff - - EnergySword - -- type: entity - parent: ClothingBeltSheath - id: ClothingBeltHoSPSheath - name: sabre sheath - description: An ornate sheath designed to hold an officer's blade. - components: - - type: Sprite - sprite: Stories/Clothing/Belt/hosp_sheath.rsi - state: sheath - - type: Clothing - sprite: Stories/Clothing/Belt/hosp_sheath.rsi - - type: ItemSlots - slots: - item: - name: Sabre - insertVerbText: sheath-insert-verb - ejectVerbText: sheath-eject-verb - whitelist: - tags: - - HoSPSabre - - type: ItemMapper - mapLayers: - sheath-sabre: - whitelist: - tags: - - HoSPSabre + - ForceRecallEquipment + - type: ClothingSpeedModifier + walkModifier: 1 + sprintModifier: 1.02 + - type: Sprite + sprite: Stories/Clothing/Belt/jedi_belt.rsi + state: icon + - type: Clothing + sprite: Stories/Clothing/Belt/jedi_belt.rsi + - type: Storage + maxSlots: 5 + whitelist: + tags: + - CigPack + - Radio + components: + - FlashOnTrigger + - Flash + - Welder + - Flash + - Handcuff + - EnergySword diff --git a/Resources/Prototypes/Stories/Entities/Clothing/Belt/prison.yml b/Resources/Prototypes/Stories/Entities/Clothing/Belt/prison.yml new file mode 100644 index 0000000000..126ad1edd8 --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Clothing/Belt/prison.yml @@ -0,0 +1,37 @@ +- type: entity + parent: ClothingBeltSheath + id: PRISONClothingBeltSheath + name: ножны для тюремной сабли + description: Богато украшенные ножны, предназначенные для хранения клинка. + components: + - type: Sprite + sprite: Stories/Clothing/Belt/hosp_sheath.rsi + state: sheath + - type: Clothing + sprite: Stories/Clothing/Belt/hosp_sheath.rsi + - type: ItemSlots + slots: + item: + name: Sabre + insertVerbText: sheath-insert-verb + ejectVerbText: sheath-eject-verb + whitelist: + tags: + - PRISONSabre + - type: ItemMapper + mapLayers: + sheath-sabre: + whitelist: + tags: + - PRISONSabre + +- type: entity + parent: ClothingBeltSecurity + id: PRISONClothingBeltWebbing + name: РПС сотрудника тюрьмы + description: Уникальный, универсальный разгрузочный жилет с ремнями и поясом, может вмещать снаряжение сотрудников тюрьмы. + components: + - type: Sprite + sprite: Stories/Clothing/Belt/sp_webbing.rsi + - type: Clothing + sprite: Stories/Clothing/Belt/sp_webbing.rsi diff --git a/Resources/Prototypes/Stories/Entities/Clothing/Ears/headsets.yml b/Resources/Prototypes/Stories/Entities/Clothing/Ears/headsets.yml index 422a57bc18..ae0c187675 100644 --- a/Resources/Prototypes/Stories/Entities/Clothing/Ears/headsets.yml +++ b/Resources/Prototypes/Stories/Entities/Clothing/Ears/headsets.yml @@ -1,20 +1,3 @@ -- type: entity - parent: ClothingHeadset - id: ClothingHeadsetPrison - name: Space prison headset - description: A headset used by space prison employees. - components: - - type: ContainerFill - containers: - key_slots: - - EncryptionKeyPrison - - EncryptionKeyCommon - - EncryptionKeySecurity - - type: Sprite - sprite: Stories/Clothing/Ears/Headsets/prison.rsi - - type: Clothing - sprite: Stories/Clothing/Ears/Headsets/prison.rsi - - type: entity parent: ClothingHeadset id: ClothingHeadsetIAA @@ -24,6 +7,6 @@ - type: ContainerFill containers: key_slots: - - EncryptionKeyIAA + - EncryptionKeyIAA - type: Sprite sprite: Clothing/Ears/Headsets/servicesecurity.rsi diff --git a/Resources/Prototypes/Stories/Entities/Clothing/Ears/headsets_alt.yml b/Resources/Prototypes/Stories/Entities/Clothing/Ears/headsets_alt.yml index 71134b58a3..b4bb7642ed 100644 --- a/Resources/Prototypes/Stories/Entities/Clothing/Ears/headsets_alt.yml +++ b/Resources/Prototypes/Stories/Entities/Clothing/Ears/headsets_alt.yml @@ -4,35 +4,18 @@ name: полноразмерная гарнитура стража клинка description: Почему тут нет командной частоты? components: - - type: Tag - tags: - - ForceRecallEquipment - - type: ContainerFill - containers: - key_slots: - - EncryptionKeyCommon - - EncryptionKeySecurity - - type: Sprite - sprite: Stories/Clothing/Ears/Headsets/jedi_nt.rsi - - type: Clothing - sprite: Stories/Clothing/Ears/Headsets/jedi_nt.rsi - -- type: entity - parent: ClothingHeadsetAlt - id: ClothingHeadsetPrisonAlt - name: Space prison over-ear headset - components: - - type: ContainerFill - containers: - key_slots: - - EncryptionKeyPrison - - EncryptionKeyCommon - - EncryptionKeySecurity - - EncryptionKeyCommand - - type: Sprite - sprite: Stories/Clothing/Ears/Headsets/prison.rsi - - type: Clothing - sprite: Stories/Clothing/Ears/Headsets/prison.rsi + - type: Tag + tags: + - ForceRecallEquipment + - type: ContainerFill + containers: + key_slots: + - EncryptionKeyCommon + - EncryptionKeySecurity + - type: Sprite + sprite: Stories/Clothing/Ears/Headsets/jedi_nt.rsi + - type: Clothing + sprite: Stories/Clothing/Ears/Headsets/jedi_nt.rsi - type: entity parent: ClothingHeadset @@ -40,18 +23,18 @@ name: полноразмерная гарнитура будущего description: Гарнитура из будушего, способная уловить большинство частот станции components: - - type: ContainerFill - containers: - key_slots: - - EncryptionKeyFuture - - type: Sprite - sprite: Stories/Clothing/Ears/Headsets/chronolegioneer.rsi - - type: Clothing - sprite: Stories/Clothing/Ears/Headsets/chronolegioneer.rsi - + - type: ContainerFill + containers: + key_slots: + - EncryptionKeyFuture + - type: Sprite + sprite: Stories/Clothing/Ears/Headsets/chronolegioneer.rsi + - type: Clothing + sprite: Stories/Clothing/Ears/Headsets/chronolegioneer.rsi + - type: entity parent: ClothingHeadsetChronolegioneer id: ClothingHeadsetChronolegioneerUnremoveable suffix: Неснимаемая components: - - type: Unremoveable \ No newline at end of file + - type: Unremoveable diff --git a/Resources/Prototypes/Stories/Entities/Clothing/Ears/prison.yml b/Resources/Prototypes/Stories/Entities/Clothing/Ears/prison.yml new file mode 100644 index 0000000000..4edeb6d447 --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Clothing/Ears/prison.yml @@ -0,0 +1,68 @@ +- type: entity + parent: ClothingHeadset + id: PRISONClothingHeadset + name: гарнитура тюрьмы + description: Гарнитура, используемая сотрудниками тюрьмы. + components: + - type: ContainerFill + containers: + key_slots: + - PRISONEncryptionKey + - EncryptionKeyCommon + - EncryptionKeySecurity + - type: Sprite + sprite: Stories/Clothing/Ears/Headsets/prison.rsi + - type: Clothing + sprite: Stories/Clothing/Ears/Headsets/prison.rsi + +- type: entity + parent: ClothingHeadset + id: PRISONClothingHeadsetMedic + name: гарнитура врача тюрьмы + description: Гарнитура, используемая сотрудниками тюрьмы. + components: + - type: ContainerFill + containers: + key_slots: + - PRISONEncryptionKey + - EncryptionKeyCommon + - EncryptionKeyMedical + - type: Sprite + sprite: Stories/Clothing/Ears/Headsets/prison.rsi + - type: Clothing + sprite: Stories/Clothing/Ears/Headsets/prison.rsi + +- type: entity + parent: ClothingHeadset + id: PRISONClothingHeadsetEngi + name: гарнитура инженера тюрьмы + description: Гарнитура, используемая сотрудниками тюрьмы. + components: + - type: ContainerFill + containers: + key_slots: + - PRISONEncryptionKey + - EncryptionKeyCommon + - EncryptionKeyEngineering + - type: Sprite + sprite: Stories/Clothing/Ears/Headsets/prison.rsi + - type: Clothing + sprite: Stories/Clothing/Ears/Headsets/prison.rsi + +- type: entity + parent: ClothingHeadsetAlt + id: PRISONClothingHeadsetAlt + name: полноразмерная гарнитура начальника тюрьмы + description: Нужна, чтобы сообщить капитану о побеге клоуна. + components: + - type: ContainerFill + containers: + key_slots: + - PRISONEncryptionKey + - EncryptionKeyCommon + - EncryptionKeySecurity + - EncryptionKeyCommand + - type: Sprite + sprite: Stories/Clothing/Ears/Headsets/prison.rsi + - type: Clothing + sprite: Stories/Clothing/Ears/Headsets/prison.rsi diff --git a/Resources/Prototypes/Stories/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/Stories/Entities/Clothing/Eyes/glasses.yml index c53784559e..8c94ce87eb 100644 --- a/Resources/Prototypes/Stories/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/Stories/Entities/Clothing/Eyes/glasses.yml @@ -1,14 +1,3 @@ -- type: entity - parent: ClothingEyesGlassesSecurity - id: ClothingEyesGlassesSpacePrison - name: space prison officer's sunglasses - description: Strangely ancient technology used to help provide rudimentary eye cover. Enhanced shielding blocks many flashes. Often worn by budget security officers. - components: - - type: Sprite - sprite: Stories/Clothing/Eyes/Glasses/secglassessp.rsi - - type: Clothing - sprite: Stories/Clothing/Eyes/Glasses/secglassessp.rsi - - type: entity parent: ClothingEyesBase id: ClothingEyesNightvision diff --git a/Resources/Prototypes/Stories/Entities/Clothing/Eyes/prison.yml b/Resources/Prototypes/Stories/Entities/Clothing/Eyes/prison.yml new file mode 100644 index 0000000000..a17677fdc0 --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Clothing/Eyes/prison.yml @@ -0,0 +1,11 @@ +- type: entity + parent: ClothingEyesGlassesSecurity + id: PRISONClothingEyesGlasses + name: солнцезащитные очки сотрудника тюрьмы + description: Странная древняя технология используется для обеспечения элементарной защиты глаз. Усиленная защита блокирует многие вспышки. + components: + - type: Sprite + sprite: Stories/Clothing/Eyes/Glasses/secglassessp.rsi + - type: Clothing + sprite: Stories/Clothing/Eyes/Glasses/secglassessp.rsi + diff --git a/Resources/Prototypes/Stories/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Stories/Entities/Clothing/Head/hardsuit-helmets.yml index a079bfc894..6a9d425005 100644 --- a/Resources/Prototypes/Stories/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Stories/Entities/Clothing/Head/hardsuit-helmets.yml @@ -1,67 +1,79 @@ +- type: entity + parent: ClothingHeadHelmetHardsuitMedical + id: PRISONClothingHeadHelmetHardsuitMedic + noSpawn: true + name: шлем скафандра врача тюрьмы + description: Шлем скафандра, обеспечивающий незначительную защиту от большинства источников повреждений. + components: + - type: Sprite + sprite: Stories/Clothing/Head/Hardsuits/medicsp.rsi + - type: Clothing + sprite: Stories/Clothing/Head/Hardsuits/medicsp.rsi + - type: entity parent: ClothingHeadHelmetHardsuitEngineering - id: ClothingHeadHelmetHardsuitEngiSP + id: PRISONClothingHeadHelmetHardsuitEngi noSpawn: true - name: engineering sp hardsuit helmet - description: An engineering hardsuit helmet designed for working in low-pressure, high radioactive environments. + name: шлем скафандра инженера тюрьмы + description: Шлем скафандра, обеспечивающий незначительную защиту от большинства источников повреждений. components: - - type: Sprite - sprite: Stories/Clothing/Head/Hardsuits/engisp.rsi - - type: Clothing - sprite: Stories/Clothing/Head/Hardsuits/engisp.rsi + - type: Sprite + sprite: Stories/Clothing/Head/Hardsuits/engisp.rsi + - type: Clothing + sprite: Stories/Clothing/Head/Hardsuits/engisp.rsi - type: entity parent: ClothingHeadHelmetHardsuitSecurity - id: ClothingHeadHelmetHardsuitOfficerSP + id: PRISONClothingHeadHelmetHardsuitOfficer noSpawn: true - name: officer sp hardsuit helmet - description: Armored hardsuit helmet for security needs. + name: шлем скафандра персонала тюрьмы + description: Шлем скафандра, обеспечивающий защиту от большинства источников повреждений. components: - - type: Sprite - sprite: Stories/Clothing/Head/Hardsuits/securitysp.rsi - - type: Clothing - sprite: Stories/Clothing/Head/Hardsuits/securitysp.rsi + - type: Sprite + sprite: Stories/Clothing/Head/Hardsuits/securitysp.rsi + - type: Clothing + sprite: Stories/Clothing/Head/Hardsuits/securitysp.rsi - type: entity - parent: ClothingHeadHelmetHardsuitWarden - id: ClothingHeadHelmetHardsuitWardenOfSP + parent: ClothingHeadHelmetHardsuitSecurityRed + id: PRISONClothingHeadHelmetHardsuitHeadOfPrison noSpawn: true - name: warden of sp hardsuit helmet - description: A modified riot helmet. Oddly comfortable. + name: шлем скафандра начальника тюрьмы + description: Шлем скафандра, обеспечивающий защиту от большинства источников повреждений. components: - - type: Sprite - sprite: Stories/Clothing/Head/Hardsuits/wardenofsp.rsi - - type: Clothing - sprite: Stories/Clothing/Head/Hardsuits/wardenofsp.rsi - + - type: Sprite + sprite: Stories/Clothing/Head/Hardsuits/hospsp.rsi + - type: Clothing + sprite: Stories/Clothing/Head/Hardsuits/hospsp.rsi + - type: entity parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitChronolegioneer name: шлем будущего description: Шлем бойцов будущего, предназначенный для специальных операций components: - - type: BreathMask - - type: Sprite - sprite: Stories/Clothing/Head/Hardsuits/chronolegioneer.rsi - - type: Clothing - sprite: Stories/Clothing/Head/Hardsuits/chronolegioneer.rsi - - type: PointLight - color: "#6BA9E6" - rotation: 30 - energy: 10 - radius: 5 - - type: PressureProtection - highPressureMultiplier: 0.08 - lowPressureMultiplier: 1000 - - type: SpeechSoundsReplacer - speechSounds: Chrono - - type: Armor - modifiers: - coefficients: - Blunt: 0.10 - Slash: 0.10 - Piercing: 0.10 - Heat: 0.10 - Cold: 0.10 - Radiation: 0.10 - Caustic: 0.10 + - type: BreathMask + - type: Sprite + sprite: Stories/Clothing/Head/Hardsuits/chronolegioneer.rsi + - type: Clothing + sprite: Stories/Clothing/Head/Hardsuits/chronolegioneer.rsi + - type: PointLight + color: "#6BA9E6" + rotation: 30 + energy: 10 + radius: 5 + - type: PressureProtection + highPressureMultiplier: 0.08 + lowPressureMultiplier: 1000 + - type: SpeechSoundsReplacer + speechSounds: Chrono + - type: Armor + modifiers: + coefficients: + Blunt: 0.10 + Slash: 0.10 + Piercing: 0.10 + Heat: 0.10 + Cold: 0.10 + Radiation: 0.10 + Caustic: 0.10 diff --git a/Resources/Prototypes/Stories/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Stories/Entities/Clothing/Head/hats.yml deleted file mode 100644 index 819c6451ac..0000000000 --- a/Resources/Prototypes/Stories/Entities/Clothing/Head/hats.yml +++ /dev/null @@ -1,14 +0,0 @@ -- type: entity - parent: ClothingHeadBase - id: ClothingHeadHatBeretSP - name: space prison beret - description: A beret, an artists favorite headwear. - components: - - type: Sprite - sprite: Stories/Clothing/Head/Hats/beret_sp.rsi - - type: Clothing - sprite: Stories/Clothing/Head/Hats/beret_sp.rsi - - type: Tag - tags: - - HamsterWearable - - WhitelistChameleon diff --git a/Resources/Prototypes/Stories/Entities/Clothing/Head/prison.yml b/Resources/Prototypes/Stories/Entities/Clothing/Head/prison.yml new file mode 100644 index 0000000000..7e11df1592 --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Clothing/Head/prison.yml @@ -0,0 +1,51 @@ +- type: entity + parent: ClothingHeadBaseButcherable + id: PRISONClothingHeadHatCapHeadOfPrison + name: фуражка начальника тюрьмы + description: Прочная форменная фуражка начальника тюрьмы. Напоминает рядовым офицерам, кто здесь главный. + components: + - type: Sprite + sprite: Stories/Clothing/Head/Soft/hosp_cap.rsi + - type: Clothing + sprite: Stories/Clothing/Head/Soft/hosp_cap.rsi + +- type: entity + parent: ClothingHeadBaseButcherable + id: PRISONClothingHeadHatSoft + name: кепка тюрьмы + description: Это надежная бейсболка со вкусом подобранного синего цвета. + components: + - type: Sprite + sprite: Stories/Clothing/Head/Soft/cap_sp.rsi + - type: Clothing + sprite: Stories/Clothing/Head/Soft/cap_sp.rsi + +- type: entity + parent: ClothingHeadBase + id: PRISONClothingHeadHatUshanka + name: ушанка + description: Идеально подходит для зимы в Сибири, da? + components: + - type: Sprite + sprite: Stories/Clothing/Head/Hats/hosp_ushanka.rsi + - type: Clothing + sprite: Stories/Clothing/Head/Hats/hosp_ushanka.rsi + - type: Tag + tags: + - HamsterWearable + - WhitelistChameleon + +- type: entity + parent: ClothingHeadBase + id: PRISONClothingHeadHatBeret + name: берет тюрьмы + description: Берет - любимый головной убор заключенного. Из него делаются бинты. + components: + - type: Sprite + sprite: Stories/Clothing/Head/Hats/beret_sp.rsi + - type: Clothing + sprite: Stories/Clothing/Head/Hats/beret_sp.rsi + - type: Tag + tags: + - HamsterWearable + - WhitelistChameleon diff --git a/Resources/Prototypes/Stories/Entities/Clothing/Head/soft.yml b/Resources/Prototypes/Stories/Entities/Clothing/Head/soft.yml deleted file mode 100644 index 84906a32da..0000000000 --- a/Resources/Prototypes/Stories/Entities/Clothing/Head/soft.yml +++ /dev/null @@ -1,10 +0,0 @@ -- type: entity - parent: ClothingHeadBaseButcherable - id: ClothingHeadHatSPsoft - name: space prison cap - description: It's a robust baseball hat in tasteful blue colour. - components: - - type: Sprite - sprite: Stories/Clothing/Head/Soft/spsoft.rsi - - type: Clothing - sprite: Stories/Clothing/Head/Soft/spsoft.rsi diff --git a/Resources/Prototypes/Stories/Entities/Clothing/Neck/cloaks.yml b/Resources/Prototypes/Stories/Entities/Clothing/Neck/cloaks.yml index b2d2f3f65e..8b36aa1ab4 100644 --- a/Resources/Prototypes/Stories/Entities/Clothing/Neck/cloaks.yml +++ b/Resources/Prototypes/Stories/Entities/Clothing/Neck/cloaks.yml @@ -1,12 +1,3 @@ -- type: entity - parent: ClothingNeckBase - id: ClothingNeckCloakHoSP - name: head of space prison cloak - description: An exquisite gray cloak fitting for those who can assert dominance over wrongdoers. Take a stab at being civil in prosecution! - components: - - type: Sprite - sprite: Stories/Clothing/Neck/Cloaks/hosp.rsi - - type: entity parent: ClothingNeckBase id: ClothingNeckCloakSith diff --git a/Resources/Prototypes/Stories/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/Stories/Entities/Clothing/OuterClothing/coats.yml index 74b6ecc0b1..25d1aaec95 100644 --- a/Resources/Prototypes/Stories/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/Stories/Entities/Clothing/OuterClothing/coats.yml @@ -31,9 +31,9 @@ - type: entity parent: ClothingOuterStorageBase - id: ClothingOuterCoatHoSP - name: head of space prison trenchcoat - description: A rugged canvas trenchcoat, designed and created by TX Fabrication Corp. Wearing it makes you feel for the plight of the Tibetans. + id: PRISONClothingOuterCoatHeadOfPrison + name: пальто начальника тюрьмы + description: Прочное холщовое пальто, разработанное и созданное компанией TX Fabrication Corp. Его ношение заставляет сочувствовать судьбе тибетцев. components: - type: Sprite sprite: Stories/Clothing/OuterClothing/Coats/hosp.rsi diff --git a/Resources/Prototypes/Stories/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Stories/Entities/Clothing/OuterClothing/hardsuits.yml index 55799c9a35..80e3b518f7 100644 --- a/Resources/Prototypes/Stories/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Stories/Entities/Clothing/OuterClothing/hardsuits.yml @@ -1,41 +1,54 @@ - type: entity - parent: ClothingOuterHardsuitBase - id: ClothingOuterHardsuitEngiSP - name: engineering sp hardsuit - description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. + parent: ClothingOuterHardsuitEngineering + id: PRISONClothingOuterHardsuitEngi + name: скафандр инженера тюрьмы + description: Специальный костюм, защищающий от опасной среды с низким давлением. Имеет радиационную защиту. components: - - type: Sprite - sprite: Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi - - type: Clothing - sprite: Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi - - type: ToggleableClothing - clothingPrototype: ClothingHeadHelmetHardsuitEngiSP + - type: Sprite + sprite: Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi + - type: Clothing + sprite: Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi + - type: ToggleableClothing + clothingPrototype: PRISONClothingHeadHelmetHardsuitEngi - type: entity - parent: ClothingOuterHardsuitBase - id: ClothingOuterHardsuitOfficerSP - name: officer sp hardsuit - description: A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor. + parent: ClothingOuterHardsuitSecurity + id: PRISONClothingOuterHardsuitOfficer + name: скафандр офицера тюрьмы + description: Специальный костюм, защищающий от опасной среды с низким давлением. Имеет дополнительный слой брони. components: - - type: Sprite - sprite: Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi - - type: Clothing - sprite: Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi - - type: ToggleableClothing - clothingPrototype: ClothingHeadHelmetHardsuitOfficerSP + - type: Sprite + sprite: Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi + - type: Clothing + sprite: Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi + - type: ToggleableClothing + clothingPrototype: PRISONClothingHeadHelmetHardsuitOfficer - type: entity - parent: ClothingOuterHardsuitBase - id: ClothingOuterHardsuitWardenOfSP - name: warden of sp hardsuit - description: A specialized riot suit geared to combat low pressure environments while maintaining agility. + parent: ClothingOuterHardsuitMedical + id: PRISONClothingOuterHardsuitMedic + name: скафандр врача тюрьмы + description: Специальный костюм, защищающий от опасной среды с низким давлением. Создан из облегчённых материалов для удобства передвижения. + components: + - type: Sprite + sprite: Stories/Clothing/OuterClothing/Hardsuits/medicsp.rsi + - type: Clothing + sprite: Stories/Clothing/OuterClothing/Hardsuits/medicsp.rsi + - type: ToggleableClothing + clothingPrototype: PRISONClothingHeadHelmetHardsuitMedic + +- type: entity + parent: ClothingOuterHardsuitSecurityRed + id: PRISONClothingOuterHardsuitHeadOfPrison + name: скафандр начальника тюрьмы + description: Специальный костюм, защищающий от опасной среды с низким давлением. Имеет дополнительный слой брони. components: - - type: Sprite - sprite: Stories/Clothing/OuterClothing/Hardsuits/wardenofsp.rsi - - type: Clothing - sprite: Stories/Clothing/OuterClothing/Hardsuits/wardenofsp.rsi - - type: ToggleableClothing - clothingPrototype: ClothingHeadHelmetHardsuitWardenOfSP + - type: Sprite + sprite: Stories/Clothing/OuterClothing/Hardsuits/hospsp.rsi + - type: Clothing + sprite: Stories/Clothing/OuterClothing/Hardsuits/hospsp.rsi + - type: ToggleableClothing + clothingPrototype: PRISONClothingHeadHelmetHardsuitHeadOfPrison #Chronolegioneer - type: entity @@ -44,39 +57,39 @@ name: скафандр будущего description: Скафандр, созданный благодаря технологиям будущего, защищающий владельца от большинства повреждений components: - - type: Sprite - sprite: Stories/Clothing/OuterClothing/Hardsuits/chronolegioneer.rsi - - type: Clothing - sprite: Stories/Clothing/OuterClothing/Hardsuits/chronolegioneer.rsi - - type: PressureProtection - highPressureMultiplier: 0.02 - lowPressureMultiplier: 1000 - - type: TemperatureProtection - coefficient: 0.001 - - type: ExplosionResistance - damageCoefficient: 0.05 - - type: Armor - modifiers: - coefficients: - Blunt: 0.05 - Slash: 0.05 - Piercing: 0.05 - Heat: 0.05 - Cold: 0.05 - Radiation: 0.05 - Caustic: 0.05 - - type: ClothingSpeedModifier - walkModifier: 0.70 - sprintModifier: 0.70 - - type: HeldSpeedModifier - - type: NoStasis - - type: BlinkActionGiver - - type: ToggleableClothing - clothingPrototype: ClothingHeadHelmetHardsuitChronolegioneer + - type: Sprite + sprite: Stories/Clothing/OuterClothing/Hardsuits/chronolegioneer.rsi + - type: Clothing + sprite: Stories/Clothing/OuterClothing/Hardsuits/chronolegioneer.rsi + - type: PressureProtection + highPressureMultiplier: 0.02 + lowPressureMultiplier: 1000 + - type: TemperatureProtection + coefficient: 0.001 + - type: ExplosionResistance + damageCoefficient: 0.05 + - type: Armor + modifiers: + coefficients: + Blunt: 0.05 + Slash: 0.05 + Piercing: 0.05 + Heat: 0.05 + Cold: 0.05 + Radiation: 0.05 + Caustic: 0.05 + - type: ClothingSpeedModifier + walkModifier: 0.70 + sprintModifier: 0.70 + - type: HeldSpeedModifier + - type: NoStasis + - type: BlinkActionGiver + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitChronolegioneer - type: entity parent: ClothingOuterHardsuitChronolegioneer id: ClothingOuterHardsuitChronolegioneerUnremoveable suffix: Неснимаемый components: - - type: Unremoveable \ No newline at end of file + - type: Unremoveable diff --git a/Resources/Prototypes/Stories/Entities/Clothing/OuterClothing/vests.yml b/Resources/Prototypes/Stories/Entities/Clothing/OuterClothing/vests.yml index a26d38328b..0e45b0f4ed 100644 --- a/Resources/Prototypes/Stories/Entities/Clothing/OuterClothing/vests.yml +++ b/Resources/Prototypes/Stories/Entities/Clothing/OuterClothing/vests.yml @@ -16,9 +16,9 @@ - type: entity parent: ClothingOuterArmorBasic - id: ClothingOuterVestArmorSP - name: armor vest - description: A slim Type I armored vest that provides decent protection against most types of damage. + id: PRISONClothingOuterVestArmor + name: бронежилет + description: Тонкий бронежилет типа I, обеспечивающий достойную защиту от большинства видов повреждений. components: - type: Sprite sprite: Stories/Clothing/OuterClothing/Vests/armor_sp.rsi diff --git a/Resources/Prototypes/Stories/Entities/Clothing/OuterClothing/wintercoats.yml b/Resources/Prototypes/Stories/Entities/Clothing/OuterClothing/wintercoats.yml deleted file mode 100644 index 2e5a8c31b5..0000000000 --- a/Resources/Prototypes/Stories/Entities/Clothing/OuterClothing/wintercoats.yml +++ /dev/null @@ -1,9 +0,0 @@ -- type: entity - parent: ClothingOuterWinterCoat - id: ClothingOuterWinterSP - name: space prison winter coat - components: - - type: Sprite - sprite: Stories/Clothing/OuterClothing/WinterCoats/coatsp.rsi - - type: Clothing - sprite: Stories/Clothing/OuterClothing/WinterCoats/coatsp.rsi diff --git a/Resources/Prototypes/Stories/Entities/Clothing/Shoes/boots.yml b/Resources/Prototypes/Stories/Entities/Clothing/Shoes/boots.yml index 407100c95b..33f1c6f331 100644 --- a/Resources/Prototypes/Stories/Entities/Clothing/Shoes/boots.yml +++ b/Resources/Prototypes/Stories/Entities/Clothing/Shoes/boots.yml @@ -46,15 +46,6 @@ - type: Clothing sprite: Stories/Clothing/Shoes/Boots/jedi_nt.rsi -- type: entity - parent: ClothingShoesBootsJack - id: ClothingShoesBootsJackSP - components: - - type: Sprite - sprite: Stories/Clothing/Shoes/Boots/jackboots_sp.rsi - - type: Clothing - sprite: Stories/Clothing/Shoes/Boots/jackboots_sp.rsi - - type: entity parent: ClothingShoesBootsMag id: ClothingShoesBootsChrono @@ -85,4 +76,4 @@ id: ClothingShoesBootsChronoUnremoveable suffix: Неснимаемые components: - - type: Unremoveable \ No newline at end of file + - type: Unremoveable diff --git a/Resources/Prototypes/Stories/Entities/Clothing/Shoes/prison.yml b/Resources/Prototypes/Stories/Entities/Clothing/Shoes/prison.yml new file mode 100644 index 0000000000..1466fecf9a --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Clothing/Shoes/prison.yml @@ -0,0 +1,10 @@ +- type: entity + parent: ClothingShoesBootsJack + id: PRISONClothingShoesBootsJack + name: подкованные сапоги + description: Обувь тюрьмы, для боевых операций или боевых действий. Борьба - всё, борьба - всегда. + components: + - type: Sprite + sprite: Stories/Clothing/Shoes/Boots/jackboots_sp.rsi + - type: Clothing + sprite: Stories/Clothing/Shoes/Boots/jackboots_sp.rsi diff --git a/Resources/Prototypes/Stories/Entities/Clothing/Uniforms/jumpskirts.yml b/Resources/Prototypes/Stories/Entities/Clothing/Uniforms/jumpskirts.yml deleted file mode 100644 index 7a2dc6025d..0000000000 --- a/Resources/Prototypes/Stories/Entities/Clothing/Uniforms/jumpskirts.yml +++ /dev/null @@ -1,21 +0,0 @@ -- type: entity - parent: ClothingUniformSkirtBase - id: ClothingUniformJumpskirtSP - name: space prison officer's jumpskirt - description: A jumpskirt made of strong material, providing robust protection. - components: - - type: Sprite - sprite: Stories/Clothing/Uniforms/Jumpskirt/officersp.rsi - - type: Clothing - sprite: Stories/Clothing/Uniforms/Jumpskirt/officersp.rsi - -- type: entity - parent: ClothingUniformSkirtBase - id: ClothingUniformJumpskirtHoSP - name: space prison warden jumpskirt - description: A jumpskirt made of strong material, providing robust protection. - components: - - type: Sprite - sprite: Stories/Clothing/Uniforms/Jumpskirt/hosp.rsi - - type: Clothing - sprite: Stories/Clothing/Uniforms/Jumpskirt/hosp.rsi diff --git a/Resources/Prototypes/Stories/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Stories/Entities/Clothing/Uniforms/jumpsuits.yml index 9e6916df3a..c8d2c35d82 100644 --- a/Resources/Prototypes/Stories/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Stories/Entities/Clothing/Uniforms/jumpsuits.yml @@ -4,16 +4,16 @@ name: роба джедая description: Свободная роба, носимая членами Ордена джедаев. components: - - type: Tag - tags: - - ForceRecallEquipment - - type: ClothingSpeedModifier - walkModifier: 1 - sprintModifier: 1.02 - - type: Sprite - sprite: Stories/Clothing/Uniforms/Jumpsuit/jedi.rsi - - type: Clothing - sprite: Stories/Clothing/Uniforms/Jumpsuit/jedi.rsi + - type: Tag + tags: + - ForceRecallEquipment + - type: ClothingSpeedModifier + walkModifier: 1 + sprintModifier: 1.02 + - type: Sprite + sprite: Stories/Clothing/Uniforms/Jumpsuit/jedi.rsi + - type: Clothing + sprite: Stories/Clothing/Uniforms/Jumpsuit/jedi.rsi - type: entity parent: ClothingUniformBase @@ -21,35 +21,13 @@ name: униформа стража клинка description: Специальная униформа никак не повышающая точность владения мечом. components: - - type: Tag - tags: - - ForceRecallEquipment - - type: Sprite - sprite: Stories/Clothing/Uniforms/Jumpsuit/jedi_nt.rsi - - type: Clothing - sprite: Stories/Clothing/Uniforms/Jumpsuit/jedi_nt.rsi - -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitSP - name: space prison officer's jumpsuit - description: A jumpsuit made of strong material, providing robust protection. - components: - - type: Sprite - sprite: Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi - - type: Clothing - sprite: Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi - -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitHoSP - name: space prison warden jumpsuit - description: A jumpsuit made of strong material, providing robust protection. - components: - - type: Sprite - sprite: Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi - - type: Clothing - sprite: Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi + - type: Tag + tags: + - ForceRecallEquipment + - type: Sprite + sprite: Stories/Clothing/Uniforms/Jumpsuit/jedi_nt.rsi + - type: Clothing + sprite: Stories/Clothing/Uniforms/Jumpsuit/jedi_nt.rsi - type: entity parent: ClothingUniformBase @@ -57,10 +35,10 @@ name: униформа инквизитора description: Однажды на одной станции Галактической Империи... components: - - type: Tag - tags: - - ForceRecallEquipment - - type: Sprite - sprite: Stories/Clothing/Uniforms/Jumpsuit/jumpsuit_sith.rsi - - type: Clothing - sprite: Stories/Clothing/Uniforms/Jumpsuit/jumpsuit_sith.rsi + - type: Tag + tags: + - ForceRecallEquipment + - type: Sprite + sprite: Stories/Clothing/Uniforms/Jumpsuit/jumpsuit_sith.rsi + - type: Clothing + sprite: Stories/Clothing/Uniforms/Jumpsuit/jumpsuit_sith.rsi diff --git a/Resources/Prototypes/Stories/Entities/Clothing/Uniforms/prison.yml b/Resources/Prototypes/Stories/Entities/Clothing/Uniforms/prison.yml new file mode 100644 index 0000000000..633f2f13ce --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Clothing/Uniforms/prison.yml @@ -0,0 +1,43 @@ +- type: entity + parent: ClothingUniformBase + id: PRISONClothingUniformJumpsuit + name: комбинезон сотрудника тюрьмы + description: Комбинезон из прочного материала, обеспечивающий надежную защиту. + components: + - type: Sprite + sprite: Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi + - type: Clothing + sprite: Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi + +- type: entity + parent: ClothingUniformBase + id: PRISONClothingUniformJumpsuitEngi + name: комбинезон инженера тюрьмы + description: Комбинезон из прочного материала, обеспечивающий надежную защиту. + components: + - type: Sprite + sprite: Stories/Clothing/Uniforms/Jumpsuit/eng_sp.rsi + - type: Clothing + sprite: Stories/Clothing/Uniforms/Jumpsuit/eng_sp.rsi + +- type: entity + parent: ClothingUniformBase + id: PRISONClothingUniformJumpsuitMedic + name: комбинезон врача тюрьмы + description: Комбинезон из прочного материала, обеспечивающий надежную защиту. + components: + - type: Sprite + sprite: Stories/Clothing/Uniforms/Jumpsuit/medic_sp.rsi + - type: Clothing + sprite: Stories/Clothing/Uniforms/Jumpsuit/medic_sp.rsi + +- type: entity + parent: ClothingUniformBase + id: PRISONClothingUniformJumpsuitHeadOfPrison + name: комбинезон начальника тюрьмы + description: Комбинезон из прочного материала, обеспечивающий надежную защиту. + components: + - type: Sprite + sprite: Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi + - type: Clothing + sprite: Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi diff --git a/Resources/Prototypes/Stories/Entities/Markers/Spawners/jobs.yml b/Resources/Prototypes/Stories/Entities/Markers/Spawners/jobs.yml index a16f8f01ca..3a9e9b6cc6 100644 --- a/Resources/Prototypes/Stories/Entities/Markers/Spawners/jobs.yml +++ b/Resources/Prototypes/Stories/Entities/Markers/Spawners/jobs.yml @@ -24,53 +24,3 @@ spawn_type: Job - type: Sprite sprite: Stories/Markers/jobs.rsi - -# Space Prison - -- type: entity - id: SpawnPointHeadOfSpacePrison - parent: SpawnPointJobBaseStories - name: headofsp - components: - - type: SpawnPoint - job_id: HeadOfSpacePrison - - type: Sprite - layers: - - state: green - - state: hos - -- type: entity - id: SpawnPointSpacePrisonOfficer - parent: SpawnPointJobBaseStories - name: spofficer - components: - - type: SpawnPoint - job_id: SpacePrisonOfficer - - type: Sprite - layers: - - state: green - - state: security_officer - -- type: entity - id: SpawnPointSpacePrisonEngineer - parent: SpawnPointJobBaseStories - name: spengineer - components: - - type: SpawnPoint - job_id: SpacePrisonEngineer - - type: Sprite - layers: - - state: green - - state: engineer - -- type: entity - id: SpawnPointSpacePrisonMedic - parent: SpawnPointJobBaseStories - name: spmedic - components: - - type: SpawnPoint - job_id: SpacePrisonMedic - - type: Sprite - layers: - - state: green - - state: doctor diff --git a/Resources/Prototypes/Stories/Entities/Markers/Spawners/prison.yml b/Resources/Prototypes/Stories/Entities/Markers/Spawners/prison.yml new file mode 100644 index 0000000000..0b4c0e1a57 --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Markers/Spawners/prison.yml @@ -0,0 +1,47 @@ +- type: entity + id: PRISONSpawnPointHeadOfPrison + parent: SpawnPointJobBaseStories + name: headofsp + components: + - type: SpawnPoint + job_id: PRISONHeadOfPrison + - type: Sprite + layers: + - state: green + - state: hos + +- type: entity + id: PRISONSpawnPointOfficer + parent: SpawnPointJobBaseStories + name: spofficer + components: + - type: SpawnPoint + job_id: PRISONOfficer + - type: Sprite + layers: + - state: green + - state: security_officer + +- type: entity + id: PRISONSpawnPointEngineer + parent: SpawnPointJobBaseStories + name: spengineer + components: + - type: SpawnPoint + job_id: PRISONEngineer + - type: Sprite + layers: + - state: green + - state: engineer + +- type: entity + id: PRISONSpawnPointMedic + parent: SpawnPointJobBaseStories + name: spmedic + components: + - type: SpawnPoint + job_id: PRISONMedic + - type: Sprite + layers: + - state: green + - state: doctor diff --git a/Resources/Prototypes/Stories/Entities/Objects/Devices/encryption_keys.yml b/Resources/Prototypes/Stories/Entities/Objects/Devices/encryption_keys.yml index e799b60b30..a4cc0cbaf8 100644 --- a/Resources/Prototypes/Stories/Entities/Objects/Devices/encryption_keys.yml +++ b/Resources/Prototypes/Stories/Entities/Objects/Devices/encryption_keys.yml @@ -6,58 +6,41 @@ components: - type: EncryptionKey channels: - - Common - - Command - - Security + - Common + - Command + - Security defaultChannel: Command - type: Sprite sprite: Stories/Objects/Devices/encryption_keys.rsi layers: - - state: crypt_silver - - state: nano_label + - state: crypt_silver + - state: nano_label -- type: entity - parent: EncryptionKey - id: EncryptionKeyPrison - name: space prison encryption key - description: An encryption key - components: - - type: EncryptionKey - channels: - - Prison - defaultChannel: Prison - - type: Sprite - sprite: Stories/Objects/Devices/encryption_keys.rsi - layers: - - state: crypt_prison - - state: prison_label - - type: entity parent: EncryptionKey id: EncryptionKeyFuture name: ключ шифрования будущего description: Ключ шифрования из будущего components: - - type: EncryptionKey - channels: - - Common - - Command - - Engineering - - Medical - - Science - - Security - - Service - - Supply - - Prison - - Freelance - - Binary - - Handheld - - CentCom - - Chitine - - Future - - - type: Sprite - sprite: Stories/Objects/Devices/encryption_keys.rsi - layers: - - state: crypt_prison - - state: nano_label \ No newline at end of file + - type: EncryptionKey + channels: + - Common + - Command + - Engineering + - Medical + - Science + - Security + - Service + - Supply + - Prison + - Freelance + - Binary + - Handheld + - CentCom + - Chitine + - Future + - type: Sprite + sprite: Stories/Objects/Devices/encryption_keys.rsi + layers: + - state: crypt_prison + - state: nano_label diff --git a/Resources/Prototypes/Stories/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Stories/Entities/Objects/Devices/pda.yml index 56edf4bda2..9472a5849f 100644 --- a/Resources/Prototypes/Stories/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Stories/Entities/Objects/Devices/pda.yml @@ -15,70 +15,6 @@ - type: Icon state: pda-bartender -- type: entity - parent: BasePDA - id: HeadOfSPPDA - name: head of space prison PDA - description: Blue to hide the stains of passenger blood. - components: - - type: Sprite - sprite: Stories/Objects/Devices/pda.rsi - - type: Pda - id: HeadOfSPIDCard - state: pda-hosp - - type: PdaBorderColor - borderColor: "#40408c" - accentVColor: "#b3b300" - - type: Icon - sprite: Stories/Objects/Devices/pda.rsi - state: pda-hosp - -- type: entity - parent: HeadOfSPPDA - id: SpacePrisonOfficerPDA - name: space prison officer PDA - description: Blue to hide the stains of passenger blood. - components: - - type: Pda - id: SpacePrisonOfficerIDCard - state: pda-spofficer - - type: PdaBorderColor - borderColor: "#40408c" - - type: Icon - state: pda-spofficer - -- type: entity - parent: HeadOfSPPDA - id: SpacePrisonEngineerPDA - name: space prison engineer PDA - description: Blue to hide the stains of passenger blood. - components: - - type: Pda - id: SpacePrisonEngineerIDCard - state: pda-spengineer - - type: PdaBorderColor - borderColor: "#6a6816" - accentVColor: "#40408c" - - type: Icon - state: pda-spengineer - -- type: entity - parent: - - HeadOfSPPDA - - BaseMedicalPDA - id: SpacePrisonMedicPDA - name: space prison medic PDA - description: Blue to hide the stains of passenger blood. - components: - - type: Pda - id: SpacePrisonMedicIDCard - state: pda-spmedic - - type: PdaBorderColor - borderColor: "#40408c" - accentVColor: "#5d99be" - - type: Icon - state: pda-spmedic - - type: entity parent: BasePDA id: IAAPDA @@ -114,4 +50,4 @@ accentVColor: "#59bcee" - type: Icon sprite: Stories/Objects/Devices/pda.rsi - state: pda-chrono \ No newline at end of file + state: pda-chrono diff --git a/Resources/Prototypes/Stories/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/Stories/Entities/Objects/Misc/identification_cards.yml index d0ab8b065e..718ac38e4c 100644 --- a/Resources/Prototypes/Stories/Entities/Objects/Misc/identification_cards.yml +++ b/Resources/Prototypes/Stories/Entities/Objects/Misc/identification_cards.yml @@ -1,67 +1,14 @@ - type: entity - parent: IDCardStandard - id: HeadOfSPIDCard - name: head of space prison ID card - components: - - type: Sprite - sprite: Stories/Objects/Misc/id_cards.rsi - layers: - - state: default - - state: idhosp - - type: PresetIdCard - job: HeadOfSpacePrison - - type: Clothing - slots: - - idcard - sprite: Stories/Objects/Misc/id_cards.rsi - -- type: entity - parent: HeadOfSPIDCard - id: SpacePrisonOfficerIDCard - name: space prison officer ID card - components: - - type: Sprite - layers: - - state: default - - state: idspofficer - - type: PresetIdCard - job: SpacePrisonOfficer - -- type: entity - parent: HeadOfSPIDCard - id: SpacePrisonEngineerIDCard - name: space prison engineer ID card - components: - - type: Sprite - layers: - - state: default - - state: idspengineer - - type: PresetIdCard - job: SpacePrisonEngineer - -- type: entity - parent: HeadOfSPIDCard - id: SpacePrisonMedicIDCard - name: space prison medic ID card - components: - - type: Sprite - layers: - - state: default - - state: idspmedic - - type: PresetIdCard - job: SpacePrisonMedic - -- type: entity - parent: HeadOfSPIDCard + parent: PRISONIDCardHeadOfPrison id: IAAIDCard name: internal affairs agent ID card components: - - type: Sprite - layers: - - state: silver - - state: idiaa - - type: PresetIdCard - job: IAA + - type: Sprite + layers: + - state: silver + - state: idiaa + - type: PresetIdCard + job: IAA - type: entity parent: IDCardStandard @@ -69,33 +16,33 @@ name: ID карта стража клинка description: Карта, необходимая для доступа в различные области станции. components: - - type: Sprite - layers: - - state: silver - - state: idjedint - sprite: Stories/Objects/Misc/id_cards.rsi - - type: Item - heldPrefix: blue - - type: PresetIdCard - job: JediNt - + - type: Sprite + layers: + - state: silver + - state: idjedint + sprite: Stories/Objects/Misc/id_cards.rsi + - type: Item + heldPrefix: blue + - type: PresetIdCard + job: JediNt + - type: entity parent: IDCardStandard id: ChronoIDCard name: ID карта будущего description: Карта, необходимая исключительно для конспирации components: - - type: Sprite - sprite: Stories/Objects/Misc/id_cards.rsi - layers: - - state: future - - state: idchrono - - type: Item - heldPrefix: blue - - type: IdCard - jobTitle: сотрудник будущего - jobIcon: JobIconFuture - - type: Access - tags: - - CentralCommand - - SyndicateAgent \ No newline at end of file + - type: Sprite + sprite: Stories/Objects/Misc/id_cards.rsi + layers: + - state: future + - state: idchrono + - type: Item + heldPrefix: blue + - type: IdCard + jobTitle: сотрудник будущего + jobIcon: JobIconFuture + - type: Access + tags: + - CentralCommand + - SyndicateAgent diff --git a/Resources/Prototypes/Stories/Entities/Objects/Misc/stamps.yml b/Resources/Prototypes/Stories/Entities/Objects/Misc/stamps.yml index cb617d464e..dc04f4c675 100644 --- a/Resources/Prototypes/Stories/Entities/Objects/Misc/stamps.yml +++ b/Resources/Prototypes/Stories/Entities/Objects/Misc/stamps.yml @@ -1,17 +1,3 @@ -- type: entity - name: head of space prison rubber stamp - parent: RubberStampBase - id: RubberStampHoSP - suffix: DO NOT MAP - components: - - type: Stamp - stampedName: stamp-component-stamped-name-hosp - stampedColor: "#0036A2" - stampState: "paper_stamp-hosp" - - type: Sprite - sprite: Objects/Misc/bureaucracy.rsi - state: stamp-hosp - - type: entity name: law office's rubber stamp parent: RubberStampBase diff --git a/Resources/Prototypes/Stories/Entities/Objects/Weapons/Melee/prison.yml b/Resources/Prototypes/Stories/Entities/Objects/Weapons/Melee/prison.yml new file mode 100644 index 0000000000..54c74d9024 --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Objects/Weapons/Melee/prison.yml @@ -0,0 +1,34 @@ +- type: entity + parent: CaptainSabre + id: PRISONSabre + name: тюремная сабля + description: Нет. Просто скажите, зачем в тюрьме кого-то резать? + components: + - type: Sharp + - type: Sprite + sprite: Stories/Objects/Weapons/Melee/hosp_sabre.rsi + state: icon + - type: MeleeWeapon + wideAnimationRotation: -135 + attackRate: 1.5 + damage: + types: + Slash: 15 + soundHit: + path: /Audio/Weapons/bladeslice.ogg + - type: Reflect + enabled: true + # Design intent: a robust captain or tot can sacrifice movement to make the most of this weapon, but they have to + # really restrict themselves to walking speed or less. + reflectProb: 0.5 + velocityBeforeNotMaxProb: 1.0 + velocityBeforeMinProb: 3.0 + minReflectProb: 0.1 + spread: 90 + - type: Item + size: Normal + sprite: Stories/Objects/Weapons/Melee/hosp_sabre.rsi + - type: Tag + tags: + - PRISONSabre + - type: DisarmMalus diff --git a/Resources/Prototypes/Stories/Entities/Objects/Weapons/Melee/sword.yml b/Resources/Prototypes/Stories/Entities/Objects/Weapons/Melee/sword.yml deleted file mode 100644 index bd105ac5d9..0000000000 --- a/Resources/Prototypes/Stories/Entities/Objects/Weapons/Melee/sword.yml +++ /dev/null @@ -1,28 +0,0 @@ -- type: entity - name: head of space prison sabre - parent: BaseItem - id: HoSPSabre - description: A ceremonial weapon belonging to the head of space prison of the station. - components: - - type: Sharp - - type: Sprite - sprite: Stories/Objects/Weapons/Melee/hosp_sabre.rsi - state: icon - - type: MeleeWeapon - attackRate: 1.5 - damage: - types: - Slash: 17 - soundHit: - path: /Audio/Weapons/bladeslice.ogg - - type: Reflect - enabled: true - reflectProb: .5 - spread: 90 - - type: Item - size: Normal - sprite: Stories/Objects/Weapons/Melee/hosp_sabre.rsi - - type: Tag - tags: - - HoSPSabre - - type: DisarmMalus diff --git a/Resources/Prototypes/Stories/Entities/Objects/door_access.yml b/Resources/Prototypes/Stories/Entities/Objects/door_access.yml new file mode 100644 index 0000000000..7906d99625 --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Objects/door_access.yml @@ -0,0 +1,47 @@ +- type: entity + parent: DoorElectronics + id: PRISONDoorElectronicsHeadOfPrison + suffix: HeadOfPrison, Locked + components: + - type: AccessReader + access: [["HeadOfPrison"]] + +- type: entity + parent: DoorElectronics + id: PRISONDoorElectronicsBrig + suffix: PrisonBrig, Locked + components: + - type: AccessReader + access: [["PrisonBrig"]] + +- type: entity + parent: DoorElectronics + id: PRISONDoorElectronics + suffix: Prison, Locked + components: + - type: AccessReader + access: [["Prison"]] + +- type: entity + parent: DoorElectronics + id: PRISONDoorElectronicsMed + suffix: PrisonMed, Locked + components: + - type: AccessReader + access: [["PrisonMed"]] + +- type: entity + parent: DoorElectronics + id: PRISONDoorElectronicsEng + suffix: PrisonEng, Locked + components: + - type: AccessReader + access: [["PrisonEng"]] + +- type: entity + parent: DoorElectronics + id: PRISONDoorElectronicsPrisoner + suffix: Prisoner, Locked + components: + - type: AccessReader + access: [["Prisoner"]] diff --git a/Resources/Prototypes/Stories/Entities/Objects/door_remote.yml b/Resources/Prototypes/Stories/Entities/Objects/door_remote.yml new file mode 100644 index 0000000000..ba33494e2c --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Objects/door_remote.yml @@ -0,0 +1,21 @@ +- type: entity + parent: DoorRemoteDefault + id: PRISONDoorRemote + name: пульт от шлюзов тюрьмы + description: Гаджет, который может открывать и закрывать шлюзы дистанционно. + components: + - type: Sprite + layers: + - state: door_remotebase + - state: door_remotelightscolour + color: "#5268cc" + - state: door_remotescreencolour + color: "#2f3d79" + - type: Access + tags: + - HeadOfPrison + - PrisonBrig + - Prison + - PrisonMed + - PrisonEng + - Prisoner diff --git a/Resources/Prototypes/Stories/Entities/Objects/encryption_keys.yml b/Resources/Prototypes/Stories/Entities/Objects/encryption_keys.yml new file mode 100644 index 0000000000..764e20debf --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Objects/encryption_keys.yml @@ -0,0 +1,15 @@ +- type: entity + parent: EncryptionKey + id: PRISONEncryptionKey + name: ключ шифрования тюрьмы + description: Небольшой шифрующий чип для гарнитуры. + components: + - type: EncryptionKey + channels: + - Prison + defaultChannel: Prison + - type: Sprite + sprite: Stories/Objects/Devices/encryption_keys.rsi + layers: + - state: crypt_prison + - state: prison_label diff --git a/Resources/Prototypes/Stories/Entities/Objects/handheld_consoles.yml b/Resources/Prototypes/Stories/Entities/Objects/handheld_consoles.yml new file mode 100644 index 0000000000..909b133ae5 --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Objects/handheld_consoles.yml @@ -0,0 +1,68 @@ +- type: entity + abstract: true + name: портативная консоль управления шаттлом + description: Используется, чтобы управлять шаттлом на расстоянии. + suffix: DO NOT MAP + parent: + - BaseItem + - PowerCellSlotSmallItem + id: BaseHandheldShuttleConsole + components: + - type: ApcPowerReceiver + powerLoad: 200 + - type: ExtensionCableReceiver + - type: Anchorable + - type: ShuttleConsole + - type: ActivatableUI + inHandsOnly: true + singleUser: true + key: enum.ShuttleConsoleUiKey.Key + - type: UserInterface + interfaces: + enum.ShuttleConsoleUiKey.Key: + type: ShuttleConsoleBoundUserInterface + - type: WorldLoader + radius: 256 + - type: RadarConsole + maxRange: 256 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot { } + disk_slot: !type:ContainerSlot {} + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellSmall + disk_slot: + name: Disk + insertSound: + path: /Audio/Machines/terminal_insert_disc.ogg + ejectSound: + path: /Audio/Machines/terminal_insert_disc.ogg + whitelist: + components: + - ShuttleDestinationCoordinates + - type: PowerCellDraw + drawRate: 0 + useRate: 20 + - type: ActivatableUIRequiresPowerCell + - type: StaticPrice + price: 500 + - type: Tag + tags: + - HighRiskItem + +- type: entity + name: портативная консоль управления шаттлом тюрьмы + description: Используется, чтобы управлять шаттлом на расстоянии. + suffix: НЕ МАППИТЬ + parent: BaseHandheldShuttleConsole + id: PRISONHandheldShuttleConsole + components: + - type: DroneConsole + components: + - type: PrisonShuttle + - type: Sprite + sprite: Stories/Objects/Devices/handheld_console.rsi + state: shuttle_sp diff --git a/Resources/Prototypes/Stories/Entities/Objects/identification_cards.yml b/Resources/Prototypes/Stories/Entities/Objects/identification_cards.yml new file mode 100644 index 0000000000..bb865b0636 --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Objects/identification_cards.yml @@ -0,0 +1,56 @@ +- type: entity + parent: IDCardStandard + id: PRISONIDCardHeadOfPrison + name: ID карта начальника тюрьмы + description: Карта, необходимая для доступа в различные области станции. + components: + - type: Sprite + sprite: Stories/Objects/Misc/id_cards.rsi + layers: + - state: silver_sp + - state: idhosp + - type: PresetIdCard + job: PRISONHeadOfPrison + - type: Clothing + slots: + - idcard + sprite: Stories/Objects/Misc/id_cards.rsi + +- type: entity + parent: PRISONIDCardHeadOfPrison + id: PRISONIDCardOfficer + name: ID карта офицера тюрьмы + description: Карта, необходимая для доступа в различные области станции. + components: + - type: Sprite + layers: + - state: default_sp + - state: idspofficer + - type: PresetIdCard + job: PRISONOfficer + +- type: entity + parent: PRISONIDCardHeadOfPrison + id: PRISONIDCardEngineer + name: ID карта инженера тюрьмы + description: Карта, необходимая для доступа в различные области станции. + components: + - type: Sprite + layers: + - state: default_sp + - state: idspengineer + - type: PresetIdCard + job: PRISONEngineer + +- type: entity + parent: PRISONIDCardHeadOfPrison + id: PRISONIDCardMedic + name: ID карта врача тюрьмы + description: Карта, необходимая для доступа в различные области станции. + components: + - type: Sprite + layers: + - state: default_sp + - state: idspmedic + - type: PresetIdCard + job: PRISONMedic diff --git a/Resources/Prototypes/Stories/Entities/Objects/pda.yml b/Resources/Prototypes/Stories/Entities/Objects/pda.yml new file mode 100644 index 0000000000..09def907e7 --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Objects/pda.yml @@ -0,0 +1,52 @@ +- type: entity + parent: BasePDA + id: PRISONPDAHeadOfPrison + name: КПК начальника тюрьмы + description: Этот КПК - ваш путь к свободе. + components: + - type: Sprite + sprite: Stories/Objects/Devices/pda.rsi + - type: Pda + id: PRISONIDCardHeadOfPrison + state: pda-hosp + - type: Icon + sprite: Stories/Objects/Devices/pda.rsi + state: pda-hosp + +- type: entity + parent: PRISONPDAHeadOfPrison + id: PRISONPDAOfficer + name: КПК офицера тюрьмы + description: Этот КПК - ваш путь к свободе. + components: + - type: Pda + id: PRISONIDCardOfficer + state: pda-spofficer + - type: Icon + state: pda-spofficer + +- type: entity + parent: PRISONPDAHeadOfPrison + id: PRISONPDAEngineer + name: КПК инженера тюрьмы + description: Этот КПК - ваш путь к свободе. + components: + - type: Pda + id: PRISONIDCardEngineer + state: pda-spengineer + - type: Icon + state: pda-spengineer + +- type: entity + parent: + - PRISONPDAHeadOfPrison + - BaseMedicalPDA + id: PRISONPDAMedic + name: КПК врача тюрьмы + description: Этот КПК - ваш путь к свободе. + components: + - type: Pda + id: PRISONIDCardMedic + state: pda-spmedic + - type: Icon + state: pda-spmedic diff --git a/Resources/Prototypes/Stories/Entities/Objects/stamps.yml b/Resources/Prototypes/Stories/Entities/Objects/stamps.yml new file mode 100644 index 0000000000..fdd9d1bcc9 --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Objects/stamps.yml @@ -0,0 +1,14 @@ +- type: entity + name: печать начальника тюрьмы + description: Печать из резины, для проставления печатей на важных документах. + parent: RubberStampBase + id: PRISONRubberStamp + suffix: DO NOT MAP + components: + - type: Stamp + stampedName: Начальник тюрьмы + stampedColor: "#0036A2" + stampState: "paper_stamp-hosp" + - type: Sprite + sprite: Objects/Misc/bureaucracy.rsi + state: stamp-hosp diff --git a/Resources/Prototypes/Stories/Entities/Stations/spaceprison.yml b/Resources/Prototypes/Stories/Entities/Stations/base.yml similarity index 64% rename from Resources/Prototypes/Stories/Entities/Stations/spaceprison.yml rename to Resources/Prototypes/Stories/Entities/Stations/base.yml index 1ecd522b6d..64136219f4 100644 --- a/Resources/Prototypes/Stories/Entities/Stations/spaceprison.yml +++ b/Resources/Prototypes/Stories/Entities/Stations/base.yml @@ -1,14 +1,17 @@ - type: entity - id: StandardSpacePrisonStation + id: PrisonStation parent: - BaseStation - BaseStationJobsSpawning - BaseStationRecords - - BaseStationCentcomm - - BaseStationAlertLevels - BaseStationSiliconLawCrewsimov - - BaseStationAllEventsEligible - BaseStationNanotrasen + - BaseStationAlertLevels noSpawn: true components: - type: Transform + - type: GridSpawn + groups: + prison: + paths: + - /Maps/Stories/Shuttles/prison.yml diff --git a/Resources/Prototypes/Stories/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Stories/Entities/Structures/Machines/vending_machines.yml deleted file mode 100644 index 487ed5c32f..0000000000 --- a/Resources/Prototypes/Stories/Entities/Structures/Machines/vending_machines.yml +++ /dev/null @@ -1,25 +0,0 @@ -- type: entity - parent: VendingMachine - id: VendingMachineSPDrobe - name: SPDrobe - description: A vending machine for security and security-related clothing! - components: - - type: VendingMachine - pack: SPDrobeInventory - offState: off - brokenState: broken - normalState: normal-unshaded - - type: Advertise - pack: SecDrobeAds - - type: Sprite - sprite: Stories/Structures/Machines/VendingMachines/spdrobe.rsi - layers: - - state: "off" - map: ["enum.VendingMachineVisualLayers.Base"] - - state: "off" - map: ["enum.VendingMachineVisualLayers.BaseUnshaded"] - shader: unshaded - - state: panel - map: ["enum.WiresVisualLayers.MaintenancePanel"] - - type: AccessReader - access: [["Security"]] diff --git a/Resources/Prototypes/Stories/Entities/Structures/Storage/Closets/Lockers/lockers.yml b/Resources/Prototypes/Stories/Entities/Structures/Storage/Closets/Lockers/lockers.yml index 4944c6feec..38e6fc7856 100644 --- a/Resources/Prototypes/Stories/Entities/Structures/Storage/Closets/Lockers/lockers.yml +++ b/Resources/Prototypes/Stories/Entities/Structures/Storage/Closets/Lockers/lockers.yml @@ -4,53 +4,12 @@ name: шкаф стража клинка description: Арсенал моды каждого стража клинка. components: - - type: Sprite - sprite: Stories/Structures/Storage/closet.rsi - - type: Appearance - - type: EntityStorageVisuals - stateBaseClosed: jedi - stateDoorOpen: jedi_open - stateDoorClosed: jedi_door - - type: AccessReader - access: [["Security"]] - -- type: entity - id: LockerSpacePrison - parent: LockerBaseSecure - name: space prison officer's locker - components: - - type: Sprite - sprite: Stories/Structures/Storage/closet.rsi - - type: Appearance - - type: EntityStorageVisuals - stateBaseClosed: sp - stateDoorOpen: sp_open - stateDoorClosed: sp_door - - type: AccessReader - access: [["Security"]] - -#- type: entity -# id: LockerArmorySP -# parent: LockerSpacePrison -# name: space prison armory locker -# components: -# - type: Appearance -# - type: EntityStorageVisuals -# stateBaseClosed: sparmory -# stateDoorOpen: sparmory_open -# stateDoorClosed: sparmory_door -# - type: AccessReader -# access: [["Armory"]] - -- type: entity - id: LockerWardenOfSP - parent: LockerSpacePrison - name: space prison warden locker - components: - - type: Appearance - - type: EntityStorageVisuals - stateBaseClosed: hosofsp - stateDoorOpen: hosofsp_open - stateDoorClosed: hosofsp_door - - type: AccessReader - access: [["HeadOfSecurity"]] + - type: Sprite + sprite: Stories/Structures/Storage/closet.rsi + - type: Appearance + - type: EntityStorageVisuals + stateBaseClosed: jedi + stateDoorOpen: jedi_open + stateDoorClosed: jedi_door + - type: AccessReader + access: [["Security"]] diff --git a/Resources/Prototypes/Stories/Entities/Structures/airlocks.yml b/Resources/Prototypes/Stories/Entities/Structures/airlocks.yml new file mode 100644 index 0000000000..fdb83535fe --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Structures/airlocks.yml @@ -0,0 +1,163 @@ +# HeadOfPrison + +- type: entity + parent: AirlockGlass + name: стеклянный шлюз начальника тюрьмы + description: Он открывается, он закрывается, и он может вас раздавить. + id: PRISONAirlockGlassLockedHeadOfPrison + suffix: HeadOfPrison, Locked + components: + - type: Sprite + sprite: Stories/Structures/Doors/Airlocks/Glass/security.rsi + - type: ContainerFill + containers: + board: [PRISONDoorElectronics] + +- type: entity + parent: Airlock + name: шлюз начальника тюрьмы + description: Он открывается, он закрывается, и он может вас раздавить. + id: PRISONAirlockLockedHeadOfPrison + suffix: HeadOfPrison, Locked + components: + - type: Sprite + sprite: Stories/Structures/Doors/Airlocks/Standard/security.rsi + - type: ContainerFill + containers: + board: [PRISONDoorElectronicsHeadOfPrison] + +# Prison Brig + +- type: entity + parent: AirlockGlass + name: стеклянный шлюз брига тюрьмы + description: Он открывается, он закрывается, и он может вас раздавить. + id: PRISONAirlockGlassLockedBrig + suffix: Prison, Glass, Locked + components: + - type: Sprite + sprite: Stories/Structures/Doors/Airlocks/Glass/security.rsi + - type: ContainerFill + containers: + board: [PRISONDoorElectronicsBrig] + +- type: entity + parent: Airlock + name: шлюз брига тюрьмы + description: Он открывается, он закрывается, и он может вас раздавить. + id: PRISONAirlockLockedBrig + suffix: Prison, Locked + components: + - type: Sprite + sprite: Stories/Structures/Doors/Airlocks/Standard/security.rsi + - type: ContainerFill + containers: + board: [PRISONDoorElectronicsBrig] + +# Prison + +- type: entity + parent: AirlockGlass + name: стеклянный шлюз тюрьмы + description: Он открывается, он закрывается, и он может вас раздавить. + id: PRISONAirlockGlassLocked + suffix: Prison, Glass, Locked + components: + - type: Sprite + sprite: Stories/Structures/Doors/Airlocks/Glass/security.rsi + - type: ContainerFill + containers: + board: [PRISONDoorElectronics] + +- type: entity + parent: Airlock + name: шлюз тюрьмы + description: Он открывается, он закрывается, и он может вас раздавить. + id: PRISONAirlockLocked + suffix: Prison, Locked + components: + - type: Sprite + sprite: Stories/Structures/Doors/Airlocks/Standard/security.rsi + - type: ContainerFill + containers: + board: [PRISONDoorElectronics] + +# Prison Med + +- type: entity + parent: AirlockGlass + name: стеклянный шлюз медицинского тюрьмы + description: Он открывается, он закрывается, и он может вас раздавить. + id: PRISONAirlockGlassLockedMed + suffix: PrisonMed, Glass, Locked + components: + - type: Sprite + sprite: Stories/Structures/Doors/Airlocks/Glass/security.rsi + - type: ContainerFill + containers: + board: [PRISONDoorElectronicsMed] + +- type: entity + parent: Airlock + name: шлюз медицинского тюрьмы + description: Он открывается, он закрывается, и он может вас раздавить. + id: PRISONAirlockLockedMed + suffix: PrisonMed, Locked + components: + - type: Sprite + sprite: Stories/Structures/Doors/Airlocks/Standard/security.rsi + - type: ContainerFill + containers: + board: [PRISONDoorElectronicsMed] + +# Prison Eng + +- type: entity + parent: AirlockGlass + name: стеклянный шлюз инженерного тюрьмы + description: Он открывается, он закрывается, и он может вас раздавить. + id: PRISONAirlockGlassLockedEng + suffix: PrisonEng, Glass, Locked + components: + - type: Sprite + sprite: Stories/Structures/Doors/Airlocks/Glass/security.rsi + - type: ContainerFill + containers: + board: [PRISONDoorElectronicsEng] + +- type: entity + parent: Airlock + name: шлюз инженерного тюрьмы + description: Он открывается, он закрывается, и он может вас раздавить. + id: PRISONAirlockLockedEng + suffix: PrisonEng, Locked + components: + - type: Sprite + sprite: Stories/Structures/Doors/Airlocks/Standard/security.rsi + - type: ContainerFill + containers: + board: [PRISONDoorElectronicsEng] + +# Prisoner + +- type: entity + parent: AirlockGlass + name: стеклянный шлюз заключенных + description: Он открывается, он закрывается, и он может вас раздавить. + id: PRISONAirlockGlassLockedPrisoner + suffix: Prisoner, Glass, Locked + components: + - type: ContainerFill + containers: + board: [PRISONDoorElectronics] + +- type: entity + parent: Airlock + name: шлюз заключенных + description: Он открывается, он закрывается, и он может вас раздавить. + id: PRISONAirlockLockedPrisoner + suffix: Prisoner, Locked + components: + - type: ContainerFill + containers: + board: [PRISONDoorElectronics] diff --git a/Resources/Prototypes/Stories/Entities/Structures/airlocks_shuttle.yml b/Resources/Prototypes/Stories/Entities/Structures/airlocks_shuttle.yml new file mode 100644 index 0000000000..296cf232d8 --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Structures/airlocks_shuttle.yml @@ -0,0 +1,27 @@ +# Prison + +- type: entity + parent: AirlockShuttle + name: стыковочный шлюз + description: Необходим для соединения двух космических кораблей вместе. + id: PRISONAirlockShuttleLocked + suffix: Prison, Docking, Locked + components: + - type: Sprite + sprite: Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi + - type: ContainerFill + containers: + board: [PRISONDoorElectronics] + +- type: entity + parent: AirlockGlassShuttle + name: стыковочный шлюз + description: Необходим для соединения двух космических кораблей вместе. + id: PRISONAirlockGlassShuttleLocked + suffix: Prison, Docking, Glass, Locked + components: + - type: ContainerFill + containers: + board: [PRISONDoorElectronics] + - type: Sprite + sprite: Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi diff --git a/Resources/Prototypes/Stories/Entities/Structures/computers.yml b/Resources/Prototypes/Stories/Entities/Structures/computers.yml new file mode 100644 index 0000000000..800ee3fe55 --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Structures/computers.yml @@ -0,0 +1,29 @@ +- type: entity + parent: BaseComputerShuttle + id: PRISONComputerShuttle + name: консоль управления шаттлом + description: Используется для пилотирования корабля или побега с тюрьмы. + components: + - type: Sprite + sprite: Stories/Structures/Machines/computers_sp.rsi + layers: + - map: ["computerLayerBody"] + state: computer_sp + - map: ["computerLayerKeyboard"] + state: generic_keyboard_sp + - map: ["computerLayerScreen"] + state: shuttle_sp + - map: ["computerLayerKeys"] + state: generic_keys_sp + - type: Computer + board: ShuttleConsoleCircuitboard # Пофиг. + +- type: entity + parent: PRISONComputerShuttle + id: PRISONComputerShuttlePrison + name: консоль управления шаттлом тюрьмы + description: Используется для пилотирования корабля или побега с тюрьмы. + components: + - type: DroneConsole + components: + - type: PrisonShuttle \ No newline at end of file diff --git a/Resources/Prototypes/Stories/Entities/Structures/flags.yml b/Resources/Prototypes/Stories/Entities/Structures/flags.yml new file mode 100644 index 0000000000..da8a156aea --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Structures/flags.yml @@ -0,0 +1,10 @@ +- type: entity + parent: BaseFlag + id: PRISONFlag + name: Флаг персонала тюрьмы + description: На защите галактики от опасных преступников. + components: + - type: Sprite + drawdepth: WallTops + sprite: Stories/Structures/flags.rsi + state: sp diff --git a/Resources/Prototypes/Stories/Entities/Structures/locks.yml b/Resources/Prototypes/Stories/Entities/Structures/locks.yml new file mode 100644 index 0000000000..780d727cf2 --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Structures/locks.yml @@ -0,0 +1,29 @@ +- type: entity + id: PRISONLocker + parent: LockerBaseSecure + name: шкаф персонала тюрьмы + description: Стандартное хранилище персонала тюрьмы. + components: + - type: Sprite + sprite: Stories/Structures/Storage/closet.rsi + - type: Appearance + - type: EntityStorageVisuals + stateBaseClosed: sp + stateDoorOpen: sp_open + stateDoorClosed: sp_door + - type: AccessReader + access: [["Prison"]] + +- type: entity + id: PRISONLockerHeadOfPrison + parent: PRISONLocker + name: шкаф главы персонала тюрьмы + description: Стандартное хранилище персонала тюрьмы. + components: + - type: Appearance + - type: EntityStorageVisuals + stateBaseClosed: hosofsp + stateDoorOpen: hosofsp_open + stateDoorClosed: hosofsp_door + - type: AccessReader + access: [["HeadOfPrison"]] diff --git a/Resources/Prototypes/Stories/Entities/Structures/vending_machines.yml b/Resources/Prototypes/Stories/Entities/Structures/vending_machines.yml new file mode 100644 index 0000000000..a5ef1cb4b8 --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Structures/vending_machines.yml @@ -0,0 +1,59 @@ +- type: entity + parent: VendingMachine + id: PRISONVendingMachineDrobe + name: Шкаф персонала тюрьмы + description: Торговый автомат для одежды, связанной с заключенными и побегами! + components: + - type: VendingMachine + pack: PRISONDrobeInventory + offState: off + brokenState: broken + normalState: normal-unshaded + - type: Advertise + pack: SecDrobeAds + - type: Sprite + sprite: Stories/Structures/Machines/VendingMachines/spdrobe.rsi + layers: + - state: "off" + map: ["enum.VendingMachineVisualLayers.Base"] + - state: "off" + map: ["enum.VendingMachineVisualLayers.BaseUnshaded"] + shader: unshaded + - state: panel + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: AccessReader + access: [["Prison"]] + +- type: entity + parent: VendingMachine + id: PRISONVendingMachine + name: Автомат персонала тюрьмы + description: Торговый автомат с экпипировкой персонала тюрьмы. На табличке написано "ТОЛЬКО ДЛЯ ПЕРСОНАЛА ТЮРЬМЫ". + components: + - type: VendingMachine + pack: PRISONTechInventory + offState: off + brokenState: broken + normalState: normal-unshaded + ejectState: eject-unshaded + denyState: deny-unshaded + - type: Advertise + pack: SecTechAds + - type: SpeakOnUIClosed + pack: SecTechGoodbyes + - type: Sprite + sprite: Stories/Structures/Machines/VendingMachines/secMachineSP.rsi + layers: + - state: "off" + map: ["enum.VendingMachineVisualLayers.Base"] + - state: "off" + map: ["enum.VendingMachineVisualLayers.BaseUnshaded"] + shader: unshaded + - state: panel + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: AccessReader + access: [["Prison"]] + - type: PointLight + radius: 1 + energy: 1.2 + color: "#78645c" diff --git a/Resources/Prototypes/Stories/Entities/Structures/walls.yml b/Resources/Prototypes/Stories/Entities/Structures/walls.yml new file mode 100644 index 0000000000..8e8a72c412 --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Structures/walls.yml @@ -0,0 +1,69 @@ +- type: entity + parent: WallShuttle + id: PRISONWallShuttle + name: стена шаттла + description: Удерживает заключенных внутри, а космос снаружи. + suffix: Reinforced, Exterior + components: + - type: Sprite + sprite: Stories/Structures/Walls/shuttle_sp.rsi + - type: Icon + sprite: Stories/Structures/Walls/shuttle_sp.rsi + state: full + - type: IconSmooth + key: walls + base: state + - type: Appearance + - type: GenericVisualizer + visuals: + enum.ShuttleWallVisuals.DeconstructionStage: + ShuttleWallVisualLayers.Deconstruction: + -1: { visible: false } + 0: { state: shuttle_construct-0, visible: true } + 1: { state: shuttle_construct-1, visible: true } + 2: { state: shuttle_construct-2, visible: true } + 3: { state: shuttle_construct-3, visible: true } + 4: { state: shuttle_construct-4, visible: true } + 5: { state: shuttle_construct-5, visible: true } + - type: Reflect + reflectProb: 1 + +- type: entity + parent: WallSolid + id: PRISONWallShuttleInterior + name: стена шаттла + description: Удерживает заключенных внутри, а космос снаружи. + suffix: Interior + components: + - type: Sprite + sprite: Stories/Structures/Walls/shuttleinterior_sp.rsi + - type: Icon + sprite: Stories/Structures/Walls/shuttleinterior_sp.rsi + - type: IconSmooth + key: walls + base: state + - type: Reflect + reflectProb: 1 + +- type: entity + parent: WallShuttleDiagonal + id: PRISONWallShuttleDiagonal + name: стена шаттла + description: Удерживает заключенных внутри, а космос снаружи. + suffix: diagonal + placement: + mode: SnapgridCenter + snap: + - Wall + components: + - type: Sprite + drawdepth: Walls + sprite: Stories/Structures/Walls/shuttle_diagonal_sp.rsi + state: state0 + - type: IconSmooth + mode: Diagonal + key: walls + base: state + - type: Icon + sprite: Stories/Structures/Walls/shuttle_diagonal_sp.rsi + state: state0 diff --git a/Resources/Prototypes/Stories/Entities/Structures/windows.yml b/Resources/Prototypes/Stories/Entities/Structures/windows.yml new file mode 100644 index 0000000000..1a94295d70 --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Structures/windows.yml @@ -0,0 +1,97 @@ +- type: entity + id: PRISONShuttleWindow + name: окно + description: Смотри не заляпай. + parent: WindowRCDResistant + components: + - type: Sprite + drawdepth: WallTops + sprite: Stories/Structures/Windows/shuttle_window_sp.rsi + - type: Icon + sprite: Stories/Structures/Windows/shuttle_window_sp.rsi + - type: Repairable + fuelCost: 15 + doAfterDelay: 3 + - type: Damageable + damageContainer: StructuralInorganic + damageModifierSet: RGlass + - type: Destructible + thresholds: + - trigger: !type:DamageTrigger + damage: 1000 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - trigger: !type:DamageTrigger + damage: 500 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WindowShatter + - !type:SpawnEntitiesBehavior + spawn: + ShardGlassReinforced: + min: 1 + max: 2 + PartRodMetal: + min: 1 + max: 2 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: IconSmooth + base: swindow + - type: Construction + graph: Window + node: shuttleWindow + - type: Appearance + - type: DamageVisuals + thresholds: [4, 8, 12] + damageDivisor: 28 + trackAllDamage: true + damageOverlay: + sprite: Structures/Windows/cracks.rsi + - type: StaticPrice + price: 100 + +- type: entity + parent: PRISONShuttleWindow + id: PRISONShuttleWindowDiagonal + name: окно + description: Смотри не заляпай. + suffix: diagonal + placement: + mode: SnapgridCenter + snap: + - Window + components: + - type: Sprite + drawdepth: WallTops + sprite: Stories/Structures/Windows/shuttle_window_diagonal_sp.rsi + state: state0 + - type: IconSmooth + mode: Diagonal + key: walls + base: state + - type: Icon + sprite: Stories/Structures/Windows/shuttle_window_diagonal_sp.rsi + state: state0 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + vertices: + - "-0.5,-0.5" + - "0.5,0.5" + - "0.5,-0.5" + mask: + - FullTileMask + layer: + - GlassLayer + - type: Airtight + noAirWhenFullyAirBlocked: false + airBlockedDirection: + - South + - East + - type: DamageVisuals + damageOverlay: + sprite: Structures/Windows/cracks_diagonal.rsi diff --git a/Resources/Prototypes/Stories/Loadouts/prison_loadouts.yml b/Resources/Prototypes/Stories/Loadouts/prison_loadouts.yml new file mode 100644 index 0000000000..e0114a1b25 --- /dev/null +++ b/Resources/Prototypes/Stories/Loadouts/prison_loadouts.yml @@ -0,0 +1,232 @@ +- type: roleLoadout + id: JobPRISONOfficer + groups: + - PRISONGloves + - PRISONOuterClothing + - PRISONBackpack + - PRISONHead + - PRISONBelt + - PRISONShoes + - SurvivalSecurity + - Trinkets + +- type: roleLoadout + id: JobPRISONHeadOfPrison + groups: + - PRISONGloves + - PRISONBackpack + - PRISONHeadOfPrisonHead + - PRISONShoes + - SurvivalSecurity + - Trinkets + +- type: roleLoadout + id: JobPRISONMedic + groups: + - MedicalDoctorHead + - MedicalMask + - MedicalGloves + - MedicalBackpack + - MedicalDoctorOuterClothing + - MedicalShoes + - Glasses + - SurvivalMedical + - Trinkets + +- type: roleLoadout + id: JobPRISONEngineer + groups: + - StationEngineerHead + - StationEngineerBackpack + - StationEngineerOuterClothing + - StationEngineerShoes + - SurvivalExtended + - Trinkets + +- type: loadoutEffectGroup + id: Prison + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:DepartmentTimeRequirement + department: Prison + time: 36000 # 10 hour + +# ГОЛОВА - начальник + +- type: loadoutGroup + id: PRISONHeadOfPrisonHead + name: Начальник тюрьмы, голова + minLimit: 0 + loadouts: + - PRISONCapHeadOfPrison + - PRISONUshankaHeadOfPrison + +- type: loadout + id: PRISONUshankaHeadOfPrison + equipment: PRISONUshankaHeadOfPrison + +- type: startingGear + id: PRISONUshankaHeadOfPrison + equipment: + head: PRISONClothingHeadHatUshanka + +- type: loadout + id: PRISONCapHeadOfPrison + equipment: PRISONCapHeadOfPrison + +- type: startingGear + id: PRISONCapHeadOfPrison + equipment: + head: PRISONClothingHeadHatCapHeadOfPrison + +# ПЕРЧАТКИ + +- type: loadoutGroup + id: PRISONGloves + name: Тюрьма, перчатки + minLimit: 0 + loadouts: + - PRISONGloves + - PRISONCombatGloves + +- type: loadout + id: PRISONGloves + equipment: BlackGloves + +- type: startingGear + id: BlackGloves + equipment: + gloves: ClothingHandsGlovesColorBlack + +- type: loadout + id: PRISONCombatGloves + equipment: CombatBlackGloves + effects: + - !type:GroupLoadoutEffect + proto: Prison + +- type: startingGear + id: CombatBlackGloves + equipment: + gloves: ClothingHandsGlovesCombat + +# БРОНЕЖИЛЕТ + +- type: loadoutGroup + id: PRISONOuterClothing + name: Тюрьма, верхняя одежда + loadouts: + - PRISONArmorVest + +- type: loadout + id: PRISONArmorVest + equipment: PRISONArmorVest + +- type: startingGear + id: PRISONArmorVest + equipment: + outerClothing: PRISONClothingOuterVestArmor + +# РЮКЗАК + +- type: loadoutGroup + id: PRISONBackpack + name: Тюрьма, рюкзак + loadouts: + - PRISONBackpack + - PRISONSatchel + - PRISONDuffel + +- type: loadout + id: PRISONDuffel + equipment: PRISONDuffel + +- type: startingGear + id: PRISONDuffel + equipment: + back: PRISONClothingBackpackDuffel + +- type: loadout + id: PRISONSatchel + equipment: PRISONSatchel + +- type: startingGear + id: PRISONSatchel + equipment: + back: PRISONClothingBackpackSatchel + +- type: loadout + id: PRISONBackpack + equipment: PRISONBackpack + +- type: startingGear + id: PRISONBackpack + equipment: + back: PRISONClothingBackpack + +# ГОЛОВА + +- type: loadoutGroup + id: PRISONHead + name: Тюрьма, голова + minLimit: 0 + loadouts: + - PRISONCap + - PRISONBeret + +- type: loadout + id: PRISONBeret + equipment: PRISONBeret + +- type: startingGear + id: PRISONBeret + equipment: + head: PRISONClothingHeadHatBeret + +- type: loadout + id: PRISONCap + equipment: PRISONCap + +- type: startingGear + id: PRISONCap + equipment: + head: PRISONClothingHeadHatSoft + +# ОБУВЬ + +- type: loadoutGroup + id: PRISONShoes + name: Тюрьма, обувь + loadouts: + - CombatBoots + - JackBoots + - SecurityWinterBoots + - PRISONJackBoots + +- type: loadout + id: PRISONJackBoots + equipment: PRISONJackBoots + +- type: startingGear + id: PRISONJackBoots + equipment: + shoes: PRISONClothingShoesBootsJack + +# ПОЯС + +- type: loadoutGroup + id: PRISONBelt + name: Тюрьма, пояс + loadouts: + - SecurityBelt + - PRISONWebbing + +- type: loadout + id: PRISONWebbing + equipment: PRISONWebbing + +- type: startingGear + id: PRISONWebbing + equipment: + belt: PRISONClothingBeltWebbing diff --git a/Resources/Prototypes/Stories/Maps/bagel.yml b/Resources/Prototypes/Stories/Maps/bagel.yml index a98d1fb9b7..77d22245a1 100644 --- a/Resources/Prototypes/Stories/Maps/bagel.yml +++ b/Resources/Prototypes/Stories/Maps/bagel.yml @@ -1,6 +1,6 @@ - type: gameMap id: StoriesBagel - mapName: 'Bagel Station' + mapName: '[КТ] Bagel Station' mapPath: /Maps/Stories/bagel.yml minPlayers: 40 maxPlayers: 76 @@ -8,6 +8,11 @@ Bagel: stationProto: StandardNanotrasenStation components: + - type: StationPrison + gameMap: StoriesPrison + whitelist: + components: + - PrisonShuttle - type: StationNameSetup mapNameTemplate: '{0} Bagel Station {1}' nameGenerator: diff --git a/Resources/Prototypes/Stories/Maps/box.yml b/Resources/Prototypes/Stories/Maps/box.yml index b29c0bfb56..85fc1df4cf 100644 --- a/Resources/Prototypes/Stories/Maps/box.yml +++ b/Resources/Prototypes/Stories/Maps/box.yml @@ -1,6 +1,6 @@ - type: gameMap id: StoriesBox - mapName: 'Box Station' + mapName: '[КТ] Box Station' mapPath: /Maps/Stories/box.yml minPlayers: 50 maxPlayers: 70 @@ -8,6 +8,11 @@ Boxstation: stationProto: StandardNanotrasenStation components: + - type: StationPrison + gameMap: StoriesPrison + whitelist: + components: + - PrisonShuttle - type: StationNameSetup mapNameTemplate: '{0} Box Station {1}' nameGenerator: @@ -64,4 +69,8 @@ Musician: [ 1, 1 ] #stories content JediNt: [ 1, 1 ] + PRISONHeadOfPrison: [ 1, 1 ] + PRISONOfficer: [ 4, 4 ] + PRISONMedic: [ 1, 1 ] + PRISONEngineer: [ 1, 1 ] diff --git a/Resources/Prototypes/Stories/Maps/fland.yml b/Resources/Prototypes/Stories/Maps/fland.yml index 2459bda563..7de6cc644d 100644 --- a/Resources/Prototypes/Stories/Maps/fland.yml +++ b/Resources/Prototypes/Stories/Maps/fland.yml @@ -1,12 +1,17 @@ - type: gameMap id: StoriesFland - mapName: 'Fland Installation' + mapName: '[КТ] Fland Installation' mapPath: /Maps/Stories/fland.yml minPlayers: 70 stations: Fland: stationProto: StandardNanotrasenStation components: + - type: StationPrison + gameMap: StoriesPrison + whitelist: + components: + - PrisonShuttle - type: StationNameSetup mapNameTemplate: '{0} Fland Installation {1}' nameGenerator: diff --git a/Resources/Prototypes/Stories/Maps/marathon.yml b/Resources/Prototypes/Stories/Maps/marathon.yml index 13c88effe8..391b2fe13f 100644 --- a/Resources/Prototypes/Stories/Maps/marathon.yml +++ b/Resources/Prototypes/Stories/Maps/marathon.yml @@ -1,6 +1,6 @@ - type: gameMap id: StoriesMarathon - mapName: 'Marathon Station' + mapName: '[КТ] Marathon Station' mapPath: /Maps/Stories/marathon.yml minPlayers: 35 maxPlayers: 70 @@ -8,6 +8,11 @@ Marathon: stationProto: StandardNanotrasenStation components: + - type: StationPrison + gameMap: StoriesPrison + whitelist: + components: + - PrisonShuttle - type: StationNameSetup mapNameTemplate: '{0} Marathon Station {1}' nameGenerator: diff --git a/Resources/Prototypes/Stories/Maps/meta.yml b/Resources/Prototypes/Stories/Maps/meta.yml index 8bc0ad1b99..b6a7cf64b7 100644 --- a/Resources/Prototypes/Stories/Maps/meta.yml +++ b/Resources/Prototypes/Stories/Maps/meta.yml @@ -1,12 +1,17 @@ - type: gameMap id: StoriesMeta - mapName: 'Meta Station' + mapName: '[КТ] Meta Station' mapPath: /Maps/Stories/meta.yml minPlayers: 50 stations: Meta: stationProto: StandardNanotrasenStation components: + - type: StationPrison + gameMap: StoriesPrison + whitelist: + components: + - PrisonShuttle - type: StationNameSetup mapNameTemplate: '{0} Meta Station {1}' nameGenerator: diff --git a/Resources/Prototypes/Stories/Maps/origin.yml b/Resources/Prototypes/Stories/Maps/origin.yml index 004e195cbc..c73e555d7d 100644 --- a/Resources/Prototypes/Stories/Maps/origin.yml +++ b/Resources/Prototypes/Stories/Maps/origin.yml @@ -1,12 +1,17 @@ - type: gameMap id: StoriesOrigin - mapName: 'Origin' + mapName: '[КТ] Origin' mapPath: /Maps/Stories/origin.yml minPlayers: 50 stations: Origin: stationProto: StandardNanotrasenStation components: + - type: StationPrison + gameMap: StoriesPrison + whitelist: + components: + - PrisonShuttle - type: StationNameSetup mapNameTemplate: '{0} Origin {1}' nameGenerator: diff --git a/Resources/Prototypes/Stories/Maps/prison.yml b/Resources/Prototypes/Stories/Maps/prison.yml new file mode 100644 index 0000000000..8d51c72ad6 --- /dev/null +++ b/Resources/Prototypes/Stories/Maps/prison.yml @@ -0,0 +1,22 @@ +- type: gameMap + id: StoriesPrison + mapName: 'Prison' + mapPath: /Maps/Stories/prison.yml + minPlayers: 1 + maxPlayers: 1000 + stations: + Prison: + stationProto: PrisonStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Prison {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'TG' + - type: StationJobs + availableJobs: + PRISONHeadOfPrison: [ 1, 1 ] + PRISONOfficer: [ 4, 4 ] + PRISONMedic: [ 1, 1 ] + PRISONEngineer: [ 1, 1 ] + diff --git a/Resources/Prototypes/Stories/Roles/Jobs/Prison/head_of_prison.yml b/Resources/Prototypes/Stories/Roles/Jobs/Prison/head_of_prison.yml new file mode 100644 index 0000000000..f5e2c72f88 --- /dev/null +++ b/Resources/Prototypes/Stories/Roles/Jobs/Prison/head_of_prison.yml @@ -0,0 +1,49 @@ +- type: job + id: PRISONHeadOfPrison + name: начальник космической тюрьмы + description: Охраняйте это место используя все возможное и невозможно, иначе на свободу вырвутся самые опасные обитатели вселенной. + playTimeTracker: JobHeadOfSpacePrison + requirements: + - !type:RoleTimeRequirement + role: JobWarden + time: 18000 # 5 hours + - !type:DepartmentTimeRequirement + department: Prison + time: 18000 # 5 hours + weight: 10 + startingGear: PRISONHeadOfPrisonGear + icon: "JobIconHeadOfSpacePrison" + requireAdminNotify: true + supervisors: job-supervisors-centcom + canBeAntag: false + access: + - HeadOfPrison + - PrisonBrig + - Prison + - PrisonMed + - PrisonEng + - Prisoner + - Command + - Brig + - Security + - Maintenance + - External + special: + - !type:AddImplantSpecial + implants: [ MindShieldImplant ] + +- type: startingGear + id: PRISONHeadOfPrisonGear + storage: + back: + - WeaponPistolMk58 + - Flash + - MagazinePistol + equipment: + jumpsuit: PRISONClothingUniformJumpsuitHeadOfPrison + id: PRISONPDAHeadOfPrison + ears: PRISONClothingHeadsetAlt + outerClothing: PRISONClothingOuterCoatHeadOfPrison + eyes: PRISONClothingEyesGlasses + belt: PRISONClothingBeltSheathFilled + diff --git a/Resources/Prototypes/Stories/Roles/Jobs/Prison/prison_engineer.yml b/Resources/Prototypes/Stories/Roles/Jobs/Prison/prison_engineer.yml new file mode 100644 index 0000000000..a2f9412d90 --- /dev/null +++ b/Resources/Prototypes/Stories/Roles/Jobs/Prison/prison_engineer.yml @@ -0,0 +1,35 @@ +- type: job + id: PRISONEngineer + name: инженер космической тюрьмы + description: Обслуживайте тюрьму, ибо сбежавшие зеки придут за вами в первую очередь. + playTimeTracker: JobSpacePrisonEngineer + requirements: + - !type:DepartmentTimeRequirement + department: Security + time: 18000 # 5 hours + - !type:DepartmentTimeRequirement + department: Engineering + time: 18000 # 5 hours + startingGear: PRISONEngineerGear + icon: "JobIconSpacePrisonEngineer" + supervisors: начальник тюрьмы + canBeAntag: false + access: + - Prison + - PrisonEng + # - Security + - Brig + - Maintenance + - External + - Engineering + # special: + # - !type:AddImplantSpecial + # implants: [ MindShieldImplant ] + +- type: startingGear + id: PRISONEngineerGear + equipment: + jumpsuit: PRISONClothingUniformJumpsuitEngi + id: PRISONPDAEngineer + ears: PRISONClothingHeadsetEngi + belt: ClothingBeltUtilityEngineering diff --git a/Resources/Prototypes/Stories/Roles/Jobs/Prison/prison_medic.yml b/Resources/Prototypes/Stories/Roles/Jobs/Prison/prison_medic.yml new file mode 100644 index 0000000000..343dcb04d1 --- /dev/null +++ b/Resources/Prototypes/Stories/Roles/Jobs/Prison/prison_medic.yml @@ -0,0 +1,31 @@ +- type: job + id: PRISONMedic + name: медик космической тюрьмы + description: Лечите самых опасных преступников космических просторов. + playTimeTracker: JobSpacePrisonMedic + requirements: + - !type:DepartmentTimeRequirement + department: Security + time: 18000 # 5 hours + - !type:DepartmentTimeRequirement + department: Medical + time: 18000 # 5 hours + startingGear: PRISONMedicGear + icon: "JobIconSpacePrisonMedic" + supervisors: начальник тюрьмы + canBeAntag: false + access: + - Prison + - PrisonMed + - Maintenance + - Medical + special: + - !type:AddImplantSpecial + implants: [ MindShieldImplant ] + +- type: startingGear + id: PRISONMedicGear + equipment: + jumpsuit: PRISONClothingUniformJumpsuitMedic + id: PRISONPDAMedic + ears: PRISONClothingHeadsetMedic diff --git a/Resources/Prototypes/Stories/Roles/Jobs/Prison/prison_officer.yml b/Resources/Prototypes/Stories/Roles/Jobs/Prison/prison_officer.yml new file mode 100644 index 0000000000..43b666fac3 --- /dev/null +++ b/Resources/Prototypes/Stories/Roles/Jobs/Prison/prison_officer.yml @@ -0,0 +1,37 @@ +- type: job + id: PRISONOfficer + name: офицер космической тюрьмы + description: Ограждать станцию от преступного элемента - это ваша наивысшая миссия на смену, не подведите. + playTimeTracker: JobSpacePrisonOfficer + requirements: + - !type:DepartmentTimeRequirement + department: Security + time: 18000 # 5 hours + startingGear: PRISONOfficerGear + icon: "JobIconSpacePrisonOfficer" + supervisors: начальник тюрьмы + canBeAntag: false + access: + - Prisoner + - Prison + - PrisonBrig + - Security + - Brig + - Maintenance + - External + special: + - !type:AddImplantSpecial + implants: [ MindShieldImplant ] + +- type: startingGear + id: PRISONOfficerGear + storage: + back: + - WeaponPistolMk58 + - MagazinePistol + - Flash + equipment: + jumpsuit: PRISONClothingUniformJumpsuit + id: PRISONPDAOfficer + ears: PRISONClothingHeadset + eyes: PRISONClothingEyesGlasses diff --git a/Resources/Prototypes/Stories/Roles/Jobs/Security/jedi_nt.yml b/Resources/Prototypes/Stories/Roles/Jobs/Security/jedi_nt.yml index 49efca493f..803ad1b26b 100644 --- a/Resources/Prototypes/Stories/Roles/Jobs/Security/jedi_nt.yml +++ b/Resources/Prototypes/Stories/Roles/Jobs/Security/jedi_nt.yml @@ -50,8 +50,8 @@ gloves: ClothingHandsGlovesCombat neck: ClothingNeckMantleJediNt # innerclothingskirt: ClothingUniformJumpskirtSP - # satchel: ClothingBackpackSatchelSpacePrisonFilled - # duffelbag: ClothingBackpackDuffelSpacePrisonFilled + # satchel: PRISONClothingBackpackSatchelFilled + # duffelbag: PRISONClothingBackpackDuffelFilled - type: startingGear id: JediGear @@ -68,5 +68,5 @@ # gloves: ClothingHandsGlovesCombat # neck: ClothingNeckMantleJediNt # innerclothingskirt: ClothingUniformJumpskirtSP - # satchel: ClothingBackpackSatchelSpacePrisonFilled - # duffelbag: ClothingBackpackDuffelSpacePrisonFilled + # satchel: PRISONClothingBackpackSatchelFilled + # duffelbag: PRISONClothingBackpackDuffelFilled diff --git a/Resources/Prototypes/Stories/Roles/Jobs/SpacePrison/head_of_space_prison.yml b/Resources/Prototypes/Stories/Roles/Jobs/SpacePrison/head_of_space_prison.yml deleted file mode 100644 index 0708c92742..0000000000 --- a/Resources/Prototypes/Stories/Roles/Jobs/SpacePrison/head_of_space_prison.yml +++ /dev/null @@ -1,53 +0,0 @@ -- type: job - id: HeadOfSpacePrison - name: job-name-hosp - description: job-description-hosp - playTimeTracker: JobHeadOfSpacePrison - requirements: - - !type:RoleTimeRequirement - role: JobWarden - time: 18000 # 5 hours - - !type:DepartmentTimeRequirement - department: SpacePrison - time: 36000 # 10 hours - weight: 10 - startingGear: HeadOfSpacePrisonGear - icon: "JobIconHeadOfSpacePrison" - requireAdminNotify: true - supervisors: job-supervisors-centcom - canBeAntag: false - access: - - HeadOfSecurity - - Command - - Brig - - Security - - Armory - - Maintenance - - Service - - External - - Detective - - Engineering - - Atmospherics - special: - - !type:AddImplantSpecial - implants: [ MindShieldImplant ] - - !type:AddComponentSpecial - components: - - type: CommandStaff - -- type: startingGear - id: HeadOfSpacePrisonGear - equipment: - jumpsuit: ClothingUniformJumpsuitHoSP - back: ClothingBackpackSpacePrisonFilled - shoes: ClothingShoesBootsJackSP - outerClothing: ClothingOuterCoatHoSP - eyes: ClothingEyesGlassesSpacePrison - id: HeadOfSPPDA - gloves: ClothingHandsGlovesCombat - ears: ClothingHeadsetPrisonAlt - belt: ClothingBeltHoSPSheathFilled - pocket1: WeaponPistolMk58 - innerclothingskirt: ClothingUniformJumpskirtHoSP - satchel: ClothingBackpackSatchelSpacePrisonFilled - duffelbag: ClothingBackpackDuffelSpacePrisonFilled diff --git a/Resources/Prototypes/Stories/Roles/Jobs/SpacePrison/space_prison_engineer.yml b/Resources/Prototypes/Stories/Roles/Jobs/SpacePrison/space_prison_engineer.yml deleted file mode 100644 index 76e0f24f91..0000000000 --- a/Resources/Prototypes/Stories/Roles/Jobs/SpacePrison/space_prison_engineer.yml +++ /dev/null @@ -1,44 +0,0 @@ -- type: job - id: SpacePrisonEngineer - name: job-name-space-prison-engineer - description: job-description-space-prison-engineer - playTimeTracker: JobSpacePrisonEngineer - requirements: - - !type:DepartmentTimeRequirement - department: Security - time: 18000 # 5 hours - - !type:DepartmentTimeRequirement - department: Engineering - time: 18000 # 5 hours - startingGear: SpacePrisonEngineerGear - icon: "JobIconSpacePrisonEngineer" - supervisors: job-supervisors-hosp - canBeAntag: false - access: - - Security - - Brig - - Maintenance - - Service - - External - - Maintenance - - Engineering - - External - - Atmospherics - special: - - !type:AddImplantSpecial - implants: [ MindShieldImplant ] - -- type: startingGear - id: SpacePrisonEngineerGear - equipment: - jumpsuit: ClothingUniformJumpsuitSP - back: ClothingBackpackEngineeringFilled - shoes: ClothingShoesBootsJackSP - id: SpacePrisonEngineerPDA - eyes: ClothingEyesGlassesMeson - belt: ClothingBeltUtilityEngineering - ears: ClothingHeadsetPrison - gloves: ClothingHandsGlovesColorYellow - innerclothingskirt: ClothingUniformJumpskirtSP - satchel: ClothingBackpackSatchelEngineeringFilled - duffelbag: ClothingBackpackDuffelEngineeringFilled diff --git a/Resources/Prototypes/Stories/Roles/Jobs/SpacePrison/space_prison_medic.yml b/Resources/Prototypes/Stories/Roles/Jobs/SpacePrison/space_prison_medic.yml deleted file mode 100644 index 483216d1dd..0000000000 --- a/Resources/Prototypes/Stories/Roles/Jobs/SpacePrison/space_prison_medic.yml +++ /dev/null @@ -1,45 +0,0 @@ -- type: job - id: SpacePrisonMedic - name: job-name-space-prison-medic - description: job-description-space-prison-medic - playTimeTracker: JobSpacePrisonMedic - requirements: - - !type:DepartmentTimeRequirement - department: Security - time: 18000 # 5 hours - - !type:DepartmentTimeRequirement - department: Medical - time: 18000 # 5 hours - - !type:RoleTimeRequirement - role: JobChemist - time: 10800 # 3 hours - startingGear: SpacePrisonMedicGear - icon: "JobIconSpacePrisonMedic" - supervisors: job-supervisors-hosp - canBeAntag: false - access: - - Security - - Brig - - Maintenance - - Service - - External - - Maintenance - - Medical - - External - - Chemistry - special: - - !type:AddImplantSpecial - implants: [ MindShieldImplant ] - -- type: startingGear - id: SpacePrisonMedicGear - equipment: - jumpsuit: ClothingUniformJumpsuitSP - back: ClothingBackpackMedicalFilled - shoes: ClothingShoesBootsJackSP - id: SpacePrisonMedicPDA - belt: ClothingBeltMedicalFilled - ears: ClothingHeadsetPrison - innerclothingskirt: ClothingUniformJumpskirtSP - satchel: ClothingBackpackSatchelMedicalFilled - duffelbag: ClothingBackpackDuffelMedicalFilled diff --git a/Resources/Prototypes/Stories/Roles/Jobs/SpacePrison/space_prison_officer.yml b/Resources/Prototypes/Stories/Roles/Jobs/SpacePrison/space_prison_officer.yml deleted file mode 100644 index 4c34250b8a..0000000000 --- a/Resources/Prototypes/Stories/Roles/Jobs/SpacePrison/space_prison_officer.yml +++ /dev/null @@ -1,42 +0,0 @@ -- type: job - id: SpacePrisonOfficer - name: job-name-space-prison-officer - description: job-description-space-prison-officer - playTimeTracker: JobSpacePrisonOfficer - requirements: - - !type:DepartmentTimeRequirement - department: Security - time: 36000 # 10 hours - startingGear: SpacePrisonOfficerGear - icon: "JobIconSpacePrisonOfficer" - supervisors: job-supervisors-hosp - canBeAntag: false - access: - - Security - - Brig - - Maintenance - - Service - - External - - Engineering - - Atmospherics - special: - - !type:AddImplantSpecial - implants: [ MindShieldImplant ] - -- type: startingGear - id: SpacePrisonOfficerGear - equipment: - jumpsuit: ClothingUniformJumpsuitSP - back: ClothingBackpackSpacePrisonFilled - shoes: ClothingShoesBootsJackSP - eyes: ClothingEyesGlassesSpacePrison - head: ClothingHeadHatBeretSP - outerClothing: ClothingOuterVestArmorSP - id: SpacePrisonOfficerPDA - gloves: ClothingHandsGlovesCombat - ears: ClothingHeadsetPrison - belt: ClothingBeltSecurityFilled - pocket1: WeaponPistolMk58 - innerclothingskirt: ClothingUniformJumpskirtSP - satchel: ClothingBackpackSatchelSpacePrisonFilled - duffelbag: ClothingBackpackDuffelSpacePrisonFilled diff --git a/Resources/Prototypes/Stories/Roles/Jobs/departments.yml b/Resources/Prototypes/Stories/Roles/Jobs/departments.yml index 2fe367a69d..a704fc5c2c 100644 --- a/Resources/Prototypes/Stories/Roles/Jobs/departments.yml +++ b/Resources/Prototypes/Stories/Roles/Jobs/departments.yml @@ -1,9 +1,9 @@ - type: department - id: SpacePrison - description: department-SpacePrison-description - color: "#0036a2" + id: Prison + description: Содержите заключенных и охраняйте тюрьму. + color: "#e99844" roles: - - HeadOfSpacePrison - - SpacePrisonOfficer - - SpacePrisonEngineer - - SpacePrisonMedic + - PRISONHeadOfPrison + - PRISONEngineer + - PRISONMedic + - PRISONOfficer diff --git a/Resources/Prototypes/Stories/radio_channels.yml b/Resources/Prototypes/Stories/radio_channels.yml index 102601de21..0488d1e56b 100644 --- a/Resources/Prototypes/Stories/radio_channels.yml +++ b/Resources/Prototypes/Stories/radio_channels.yml @@ -3,8 +3,7 @@ name: chat-radio-prison keycode: 'з' # Stories-Localization frequency: 1102 - color: "#0036a2" - # long range since otherwise it'd defeat the point of a handheld radio independent of telecomms + color: "#e99844" - type: radioChannel id: Future diff --git a/Resources/Prototypes/Stories/tags.yml b/Resources/Prototypes/Stories/tags.yml index 15b6d93f72..18dc644807 100644 --- a/Resources/Prototypes/Stories/tags.yml +++ b/Resources/Prototypes/Stories/tags.yml @@ -3,10 +3,15 @@ - type: Tag id: StasisBattery - + - type: Tag id: StasisCage - + - type: Tag id: ForceRecallEquipment +- type: Tag + id: PRISONSabre + +- type: Tag + id: Prison diff --git a/Resources/Textures/Stories/Clothing/Belt/hosp_sheath.rsi/equipped-BELT.png b/Resources/Textures/Stories/Clothing/Belt/hosp_sheath.rsi/equipped-BELT.png index d1a88855cc..a2e788b171 100644 Binary files a/Resources/Textures/Stories/Clothing/Belt/hosp_sheath.rsi/equipped-BELT.png and b/Resources/Textures/Stories/Clothing/Belt/hosp_sheath.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Stories/Clothing/Belt/hosp_sheath.rsi/meta.json b/Resources/Textures/Stories/Clothing/Belt/hosp_sheath.rsi/meta.json index 17c10f2f7f..045389287c 100644 --- a/Resources/Textures/Stories/Clothing/Belt/hosp_sheath.rsi/meta.json +++ b/Resources/Textures/Stories/Clothing/Belt/hosp_sheath.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/555fa0ed9f380509156d94131bd8a3f1c1fee1cf , edited by Skarletto (github)", + "copyright": "created by RustedTim(Discord)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Stories/Clothing/Belt/hosp_sheath.rsi/sheath-sabre-equipped-BELT.png b/Resources/Textures/Stories/Clothing/Belt/hosp_sheath.rsi/sheath-sabre-equipped-BELT.png index 539530195c..0256c2fbb8 100644 Binary files a/Resources/Textures/Stories/Clothing/Belt/hosp_sheath.rsi/sheath-sabre-equipped-BELT.png and b/Resources/Textures/Stories/Clothing/Belt/hosp_sheath.rsi/sheath-sabre-equipped-BELT.png differ diff --git a/Resources/Textures/Stories/Clothing/Belt/hosp_sheath.rsi/sheath-sabre.png b/Resources/Textures/Stories/Clothing/Belt/hosp_sheath.rsi/sheath-sabre.png index 6e24de6cc7..c6f80f5c33 100644 Binary files a/Resources/Textures/Stories/Clothing/Belt/hosp_sheath.rsi/sheath-sabre.png and b/Resources/Textures/Stories/Clothing/Belt/hosp_sheath.rsi/sheath-sabre.png differ diff --git a/Resources/Textures/Stories/Clothing/Belt/hosp_sheath.rsi/sheath.png b/Resources/Textures/Stories/Clothing/Belt/hosp_sheath.rsi/sheath.png index 6e24de6cc7..fcea4d28c2 100644 Binary files a/Resources/Textures/Stories/Clothing/Belt/hosp_sheath.rsi/sheath.png and b/Resources/Textures/Stories/Clothing/Belt/hosp_sheath.rsi/sheath.png differ diff --git a/Resources/Textures/Stories/Clothing/Belt/sp_webbing.rsi/equipped-BELT.png b/Resources/Textures/Stories/Clothing/Belt/sp_webbing.rsi/equipped-BELT.png new file mode 100644 index 0000000000..8d95c44157 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Belt/sp_webbing.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Stories/Clothing/Belt/sp_webbing.rsi/icon.png b/Resources/Textures/Stories/Clothing/Belt/sp_webbing.rsi/icon.png new file mode 100644 index 0000000000..0220d458db Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Belt/sp_webbing.rsi/icon.png differ diff --git a/Resources/Textures/Stories/Clothing/Belt/sp_webbing.rsi/inhand-left.png b/Resources/Textures/Stories/Clothing/Belt/sp_webbing.rsi/inhand-left.png new file mode 100644 index 0000000000..f823e3815e Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Belt/sp_webbing.rsi/inhand-left.png differ diff --git a/Resources/Textures/Stories/Clothing/Belt/sp_webbing.rsi/inhand-right.png b/Resources/Textures/Stories/Clothing/Belt/sp_webbing.rsi/inhand-right.png new file mode 100644 index 0000000000..d6fe154ec0 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Belt/sp_webbing.rsi/inhand-right.png differ diff --git a/Resources/Textures/Stories/Clothing/Belt/sp_webbing.rsi/meta.json b/Resources/Textures/Stories/Clothing/Belt/sp_webbing.rsi/meta.json new file mode 100644 index 0000000000..107ed3fb69 --- /dev/null +++ b/Resources/Textures/Stories/Clothing/Belt/sp_webbing.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Redone by RustedTim. Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, tweak by @mureixlol", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/icon-flash.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/icon-flash.png index 964bb05c44..2fdd0c85d5 100644 Binary files a/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/icon-flash.png and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/icon-flash.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/icon.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/icon.png index 5fec710a9e..87ab305cea 100644 Binary files a/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/icon.png and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/icon.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/meta.json b/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/meta.json index 7bea2d1a86..13a3abba33 100644 --- a/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/meta.json +++ b/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Created by RustedTim(discord)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/off-equipped-HELMET.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/off-equipped-HELMET.png index ef8f8a1586..36fcb9b199 100644 Binary files a/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/off-equipped-HELMET.png and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/off-inhand-left.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/off-inhand-left.png index 8862129b03..02ef4ba4e8 100644 Binary files a/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/off-inhand-left.png and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/off-inhand-left.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/off-inhand-right.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/off-inhand-right.png index e4c0861490..a9ebd75921 100644 Binary files a/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/off-inhand-right.png and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/off-inhand-right.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/on-equipped-HELMET.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/on-equipped-HELMET.png index 70637ddf83..6a26a7e561 100644 Binary files a/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/on-equipped-HELMET.png and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/on-inhand-left.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/on-inhand-left.png index 27625904e8..02ef4ba4e8 100644 Binary files a/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/on-inhand-left.png and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/on-inhand-right.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/on-inhand-right.png index 0ff11d1d39..a9ebd75921 100644 Binary files a/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/on-inhand-right.png and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/engisp.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/icon-flash.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/icon-flash.png new file mode 100644 index 0000000000..62149c7a7d Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/icon-flash.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/icon.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/icon.png new file mode 100644 index 0000000000..5efaca095a Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/icon.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/meta.json b/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/meta.json new file mode 100644 index 0000000000..13a3abba33 --- /dev/null +++ b/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by RustedTim(discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "off-equipped-HELMET", + "directions": 4 + }, + { + "name": "off-inhand-left", + "directions": 4 + }, + { + "name": "off-inhand-right", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/off-equipped-HELMET.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/off-equipped-HELMET.png new file mode 100644 index 0000000000..660ae519e8 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/off-inhand-left.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/off-inhand-left.png new file mode 100644 index 0000000000..02ef4ba4e8 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/off-inhand-left.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/off-inhand-right.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/off-inhand-right.png new file mode 100644 index 0000000000..a9ebd75921 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/off-inhand-right.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/on-equipped-HELMET.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..4ed2a3ad71 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/on-inhand-left.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/on-inhand-left.png new file mode 100644 index 0000000000..02ef4ba4e8 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/on-inhand-right.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/on-inhand-right.png new file mode 100644 index 0000000000..a9ebd75921 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/hospsp.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/icon-flash.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/icon-flash.png new file mode 100644 index 0000000000..a66968962d Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/icon-flash.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/icon.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/icon.png new file mode 100644 index 0000000000..0633aa5289 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/icon.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/meta.json b/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/meta.json new file mode 100644 index 0000000000..13a3abba33 --- /dev/null +++ b/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by RustedTim(discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "off-equipped-HELMET", + "directions": 4 + }, + { + "name": "off-inhand-left", + "directions": 4 + }, + { + "name": "off-inhand-right", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/off-equipped-HELMET.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/off-equipped-HELMET.png new file mode 100644 index 0000000000..b9d187a748 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/off-inhand-left.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/off-inhand-left.png new file mode 100644 index 0000000000..02ef4ba4e8 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/off-inhand-left.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/off-inhand-right.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/off-inhand-right.png new file mode 100644 index 0000000000..a9ebd75921 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/off-inhand-right.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/on-equipped-HELMET.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..561656533f Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/on-inhand-left.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/on-inhand-left.png new file mode 100644 index 0000000000..02ef4ba4e8 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/on-inhand-right.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/on-inhand-right.png new file mode 100644 index 0000000000..a9ebd75921 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/medicsp.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/icon-flash.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/icon-flash.png index 01aa88c9cc..a46abbeb22 100644 Binary files a/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/icon-flash.png and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/icon-flash.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/icon.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/icon.png index b1d12d771b..066b9cacea 100644 Binary files a/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/icon.png and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/icon.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/meta.json b/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/meta.json index 7bea2d1a86..13a3abba33 100644 --- a/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/meta.json +++ b/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Created by RustedTim(discord)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/off-equipped-HELMET.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/off-equipped-HELMET.png index 4abb1d3c74..819185661f 100644 Binary files a/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/off-equipped-HELMET.png and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/off-inhand-left.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/off-inhand-left.png index 68329b89c1..02ef4ba4e8 100644 Binary files a/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/off-inhand-left.png and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/off-inhand-left.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/off-inhand-right.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/off-inhand-right.png index 38cc8ca8a6..a9ebd75921 100644 Binary files a/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/off-inhand-right.png and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/off-inhand-right.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/on-equipped-HELMET.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/on-equipped-HELMET.png index bb9318f95f..8982de6592 100644 Binary files a/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/on-equipped-HELMET.png and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/on-inhand-left.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/on-inhand-left.png index 742af4cd00..02ef4ba4e8 100644 Binary files a/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/on-inhand-left.png and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/on-inhand-right.png b/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/on-inhand-right.png index 79f70ac121..a9ebd75921 100644 Binary files a/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/on-inhand-right.png and b/Resources/Textures/Stories/Clothing/Head/Hardsuits/securitysp.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hats/hosp_ushanka.rsi/equipped-HELMET.png b/Resources/Textures/Stories/Clothing/Head/Hats/hosp_ushanka.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..a87b919cc2 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Hats/hosp_ushanka.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hats/hosp_ushanka.rsi/icon.png b/Resources/Textures/Stories/Clothing/Head/Hats/hosp_ushanka.rsi/icon.png new file mode 100644 index 0000000000..855a1a9bae Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Hats/hosp_ushanka.rsi/icon.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Hats/hosp_ushanka.rsi/meta.json b/Resources/Textures/Stories/Clothing/Head/Hats/hosp_ushanka.rsi/meta.json new file mode 100644 index 0000000000..d37dbe295a --- /dev/null +++ b/Resources/Textures/Stories/Clothing/Head/Hats/hosp_ushanka.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Redone by RustedTim. Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Stories/Clothing/Head/Soft/cap_sp.rsi/equipped-HELMET.png b/Resources/Textures/Stories/Clothing/Head/Soft/cap_sp.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..a2137349e6 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Soft/cap_sp.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Soft/cap_sp.rsi/icon.png b/Resources/Textures/Stories/Clothing/Head/Soft/cap_sp.rsi/icon.png new file mode 100644 index 0000000000..27a037efbb Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Soft/cap_sp.rsi/icon.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Soft/cap_sp.rsi/inhand-left.png b/Resources/Textures/Stories/Clothing/Head/Soft/cap_sp.rsi/inhand-left.png new file mode 100644 index 0000000000..2377ed2363 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Soft/cap_sp.rsi/inhand-left.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Soft/cap_sp.rsi/inhand-right.png b/Resources/Textures/Stories/Clothing/Head/Soft/cap_sp.rsi/inhand-right.png new file mode 100644 index 0000000000..246ae903c8 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Soft/cap_sp.rsi/inhand-right.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Soft/cap_sp.rsi/meta.json b/Resources/Textures/Stories/Clothing/Head/Soft/cap_sp.rsi/meta.json new file mode 100644 index 0000000000..103eb4bc2f --- /dev/null +++ b/Resources/Textures/Stories/Clothing/Head/Soft/cap_sp.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Redone by RustedTim. Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Stories/Clothing/Head/Soft/hosp_cap.rsi/equipped-HELMET.png b/Resources/Textures/Stories/Clothing/Head/Soft/hosp_cap.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..4874c1648e Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Soft/hosp_cap.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Soft/hosp_cap.rsi/icon.png b/Resources/Textures/Stories/Clothing/Head/Soft/hosp_cap.rsi/icon.png new file mode 100644 index 0000000000..4c6a4c692f Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Soft/hosp_cap.rsi/icon.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Soft/hosp_cap.rsi/inhand-left.png b/Resources/Textures/Stories/Clothing/Head/Soft/hosp_cap.rsi/inhand-left.png new file mode 100644 index 0000000000..2a26731c2a Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Soft/hosp_cap.rsi/inhand-left.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Soft/hosp_cap.rsi/inhand-right.png b/Resources/Textures/Stories/Clothing/Head/Soft/hosp_cap.rsi/inhand-right.png new file mode 100644 index 0000000000..d226402494 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Head/Soft/hosp_cap.rsi/inhand-right.png differ diff --git a/Resources/Textures/Stories/Clothing/Head/Soft/hosp_cap.rsi/meta.json b/Resources/Textures/Stories/Clothing/Head/Soft/hosp_cap.rsi/meta.json new file mode 100644 index 0000000000..103eb4bc2f --- /dev/null +++ b/Resources/Textures/Stories/Clothing/Head/Soft/hosp_cap.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Redone by RustedTim. Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Coats/hosp.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Stories/Clothing/OuterClothing/Coats/hosp.rsi/equipped-OUTERCLOTHING.png index 79526069e3..b2dd868395 100644 Binary files a/Resources/Textures/Stories/Clothing/OuterClothing/Coats/hosp.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Stories/Clothing/OuterClothing/Coats/hosp.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Coats/hosp.rsi/icon.png b/Resources/Textures/Stories/Clothing/OuterClothing/Coats/hosp.rsi/icon.png index 41991e9c6d..68a5a315f8 100644 Binary files a/Resources/Textures/Stories/Clothing/OuterClothing/Coats/hosp.rsi/icon.png and b/Resources/Textures/Stories/Clothing/OuterClothing/Coats/hosp.rsi/icon.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Coats/hosp.rsi/inhand-left.png b/Resources/Textures/Stories/Clothing/OuterClothing/Coats/hosp.rsi/inhand-left.png index 38ce716b03..948933c17a 100644 Binary files a/Resources/Textures/Stories/Clothing/OuterClothing/Coats/hosp.rsi/inhand-left.png and b/Resources/Textures/Stories/Clothing/OuterClothing/Coats/hosp.rsi/inhand-left.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Coats/hosp.rsi/inhand-right.png b/Resources/Textures/Stories/Clothing/OuterClothing/Coats/hosp.rsi/inhand-right.png index 87c8bf10b0..4676da773e 100644 Binary files a/Resources/Textures/Stories/Clothing/OuterClothing/Coats/hosp.rsi/inhand-right.png and b/Resources/Textures/Stories/Clothing/OuterClothing/Coats/hosp.rsi/inhand-right.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Coats/hosp.rsi/meta.json b/Resources/Textures/Stories/Clothing/OuterClothing/Coats/hosp.rsi/meta.json index ffd6c2a5d4..86852243ee 100644 --- a/Resources/Textures/Stories/Clothing/OuterClothing/Coats/hosp.rsi/meta.json +++ b/Resources/Textures/Stories/Clothing/OuterClothing/Coats/hosp.rsi/meta.json @@ -1,19 +1,19 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5ea6d8b4422027d0c22cb415d1f05a08bf39aaa0", + "copyright": "Redone by RustedTim. Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8 & inhabd updated by github:Morb0", "size": { "x": 32, "y": 32 }, "states": [ - { - "name": "icon" - }, { "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "icon" + }, { "name": "inhand-left", "directions": 4 @@ -23,4 +23,4 @@ "directions": 4 } ] -} +} \ No newline at end of file diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi/equipped-OUTERCLOTHING.png index 9bb27ba54b..9dbdbb2b69 100644 Binary files a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi/icon.png b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi/icon.png index 7e94f0d3fb..f6c30c86ff 100644 Binary files a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi/icon.png and b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi/icon.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi/inhand-left.png b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi/inhand-left.png index 261baad383..72995bfa14 100644 Binary files a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi/inhand-left.png and b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi/inhand-left.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi/inhand-right.png b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi/inhand-right.png index f9f12b812f..1141563ded 100644 Binary files a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi/inhand-right.png and b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi/inhand-right.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi/meta.json b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi/meta.json index e482264df5..c694201f9b 100644 --- a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi/meta.json +++ b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/engisp.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Created by RustedTim(discord)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/hospsp.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/hospsp.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..7d9d8c2bfd Binary files /dev/null and b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/hospsp.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/hospsp.rsi/icon.png b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/hospsp.rsi/icon.png new file mode 100644 index 0000000000..03af16374d Binary files /dev/null and b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/hospsp.rsi/icon.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/hospsp.rsi/inhand-left.png b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/hospsp.rsi/inhand-left.png new file mode 100644 index 0000000000..318ac82193 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/hospsp.rsi/inhand-left.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/hospsp.rsi/inhand-right.png b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/hospsp.rsi/inhand-right.png new file mode 100644 index 0000000000..30b05b3be9 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/hospsp.rsi/inhand-right.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/hospsp.rsi/meta.json b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/hospsp.rsi/meta.json new file mode 100644 index 0000000000..c694201f9b --- /dev/null +++ b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/hospsp.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by RustedTim(discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/medicsp.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/medicsp.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..a015681bb7 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/medicsp.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/medicsp.rsi/icon.png b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/medicsp.rsi/icon.png new file mode 100644 index 0000000000..d12e063bc9 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/medicsp.rsi/icon.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/medicsp.rsi/inhand-left.png b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/medicsp.rsi/inhand-left.png new file mode 100644 index 0000000000..52bde66667 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/medicsp.rsi/inhand-left.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/medicsp.rsi/inhand-right.png b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/medicsp.rsi/inhand-right.png new file mode 100644 index 0000000000..9c57c50c48 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/medicsp.rsi/inhand-right.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/medicsp.rsi/meta.json b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/medicsp.rsi/meta.json new file mode 100644 index 0000000000..c694201f9b --- /dev/null +++ b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/medicsp.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by RustedTim(discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi/equipped-OUTERCLOTHING.png index c1f1230a18..12c2aa3366 100644 Binary files a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi/icon.png b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi/icon.png index 1dfb95b8a3..06d2f539c0 100644 Binary files a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi/icon.png and b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi/icon.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi/inhand-left.png b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi/inhand-left.png index 9cceb6888d..a00a48cf69 100644 Binary files a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi/inhand-left.png and b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi/inhand-left.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi/inhand-right.png b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi/inhand-right.png index ce821a61ff..7fbc3323dd 100644 Binary files a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi/inhand-right.png and b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi/inhand-right.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi/meta.json b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi/meta.json index e482264df5..c694201f9b 100644 --- a/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi/meta.json +++ b/Resources/Textures/Stories/Clothing/OuterClothing/Hardsuits/securitysp.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Created by RustedTim(discord)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Vests/armor_sp.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Stories/Clothing/OuterClothing/Vests/armor_sp.rsi/equipped-OUTERCLOTHING.png index 6907577cdc..3c6e4b7336 100644 Binary files a/Resources/Textures/Stories/Clothing/OuterClothing/Vests/armor_sp.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Stories/Clothing/OuterClothing/Vests/armor_sp.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Vests/armor_sp.rsi/icon.png b/Resources/Textures/Stories/Clothing/OuterClothing/Vests/armor_sp.rsi/icon.png index 9acdf5b172..63dcd60aa5 100644 Binary files a/Resources/Textures/Stories/Clothing/OuterClothing/Vests/armor_sp.rsi/icon.png and b/Resources/Textures/Stories/Clothing/OuterClothing/Vests/armor_sp.rsi/icon.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Vests/armor_sp.rsi/inhand-left.png b/Resources/Textures/Stories/Clothing/OuterClothing/Vests/armor_sp.rsi/inhand-left.png index aea0f39676..377f35b9fd 100644 Binary files a/Resources/Textures/Stories/Clothing/OuterClothing/Vests/armor_sp.rsi/inhand-left.png and b/Resources/Textures/Stories/Clothing/OuterClothing/Vests/armor_sp.rsi/inhand-left.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Vests/armor_sp.rsi/inhand-right.png b/Resources/Textures/Stories/Clothing/OuterClothing/Vests/armor_sp.rsi/inhand-right.png index cef6f162c7..0abd30e9bb 100644 Binary files a/Resources/Textures/Stories/Clothing/OuterClothing/Vests/armor_sp.rsi/inhand-right.png and b/Resources/Textures/Stories/Clothing/OuterClothing/Vests/armor_sp.rsi/inhand-right.png differ diff --git a/Resources/Textures/Stories/Clothing/OuterClothing/Vests/armor_sp.rsi/meta.json b/Resources/Textures/Stories/Clothing/OuterClothing/Vests/armor_sp.rsi/meta.json index 59e16da428..76080a5898 100644 --- a/Resources/Textures/Stories/Clothing/OuterClothing/Vests/armor_sp.rsi/meta.json +++ b/Resources/Textures/Stories/Clothing/OuterClothing/Vests/armor_sp.rsi/meta.json @@ -1,19 +1,19 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8", + "copyright": "Created by RustedTim(discord)", "size": { "x": 32, "y": 32 }, "states": [ - { - "name": "icon" - }, { "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "icon" + }, { "name": "inhand-left", "directions": 4 @@ -23,4 +23,4 @@ "directions": 4 } ] -} +} \ No newline at end of file diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/eng_sp.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/eng_sp.rsi/equipped-INNERCLOTHING-monkey.png new file mode 100644 index 0000000000..d76917b973 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/eng_sp.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/eng_sp.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/eng_sp.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..de73e8b570 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/eng_sp.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/eng_sp.rsi/icon.png b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/eng_sp.rsi/icon.png new file mode 100644 index 0000000000..a091929961 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/eng_sp.rsi/icon.png differ diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/eng_sp.rsi/inhand-left.png b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/eng_sp.rsi/inhand-left.png new file mode 100644 index 0000000000..5853285293 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/eng_sp.rsi/inhand-left.png differ diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/eng_sp.rsi/inhand-right.png b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/eng_sp.rsi/inhand-right.png new file mode 100644 index 0000000000..74a0dfcfe1 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/eng_sp.rsi/inhand-right.png differ diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/eng_sp.rsi/meta.json b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/eng_sp.rsi/meta.json new file mode 100644 index 0000000000..182e606f82 --- /dev/null +++ b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/eng_sp.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Redone by RustedTim. Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14, digi made by kuro(388673708753027083)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING-monkey", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/equipped-INNERCLOTHING-digi.png b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/equipped-INNERCLOTHING-digi.png new file mode 100644 index 0000000000..15fb6f815f Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/equipped-INNERCLOTHING-digi.png differ diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/equipped-INNERCLOTHING.png index a84fab329e..cc97c92883 100644 Binary files a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/icon.png b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/icon.png index 71cf443d43..6660ae2096 100644 Binary files a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/icon.png and b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/icon.png differ diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/inhand-left.png b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/inhand-left.png index 5c323708d4..87760bcd5d 100644 Binary files a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/inhand-left.png and b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/inhand-left.png differ diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/inhand-right.png b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/inhand-right.png index 6bec896702..02f446087d 100644 Binary files a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/inhand-right.png and b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/inhand-right.png differ diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/meta.json b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/meta.json index 3f72fb4460..5962302a21 100644 --- a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/meta.json +++ b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/hosp.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "copyright": "Created by RustedTim(discord)", "size": { "x": 32, "y": 32 @@ -15,7 +15,7 @@ "directions": 4 }, { - "name": "equipped-INNERCLOTHING-monkey", + "name": "equipped-INNERCLOTHING-digi", "directions": 4 }, { diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/medic_sp.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/medic_sp.rsi/equipped-INNERCLOTHING-monkey.png new file mode 100644 index 0000000000..17b24a3c8a Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/medic_sp.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/medic_sp.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/medic_sp.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..29e3b8c82b Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/medic_sp.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/medic_sp.rsi/icon.png b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/medic_sp.rsi/icon.png new file mode 100644 index 0000000000..e0c0bfe988 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/medic_sp.rsi/icon.png differ diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/medic_sp.rsi/inhand-left.png b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/medic_sp.rsi/inhand-left.png new file mode 100644 index 0000000000..f5b3e93aa7 Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/medic_sp.rsi/inhand-left.png differ diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/medic_sp.rsi/inhand-right.png b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/medic_sp.rsi/inhand-right.png new file mode 100644 index 0000000000..fd6f7d6bad Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/medic_sp.rsi/inhand-right.png differ diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/medic_sp.rsi/meta.json b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/medic_sp.rsi/meta.json new file mode 100644 index 0000000000..f404f7c820 --- /dev/null +++ b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/medic_sp.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Redone by RustedTim. Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING-monkey", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/equipped-INNERCLOTHING-digi.png b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/equipped-INNERCLOTHING-digi.png new file mode 100644 index 0000000000..4d71b1f7ed Binary files /dev/null and b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/equipped-INNERCLOTHING-digi.png differ diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/equipped-INNERCLOTHING.png index 4073bb7d03..6668fd55e5 100644 Binary files a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/icon.png b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/icon.png index f9c24081bd..7894fcdcd7 100644 Binary files a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/icon.png and b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/icon.png differ diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/inhand-left.png b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/inhand-left.png index 8756ce9823..64fa3b9ed6 100644 Binary files a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/inhand-left.png and b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/inhand-left.png differ diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/inhand-right.png b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/inhand-right.png index 4ae2292c6b..b823413b78 100644 Binary files a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/inhand-right.png and b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/inhand-right.png differ diff --git a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/meta.json b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/meta.json index 3f72fb4460..d501e9db56 100644 --- a/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/meta.json +++ b/Resources/Textures/Stories/Clothing/Uniforms/Jumpsuit/officersp.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "copyright": "Redone by RustedTim. Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/28d0be60aa8bbe1ca87a5d129487bb6f60839ac4. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for , digi made by kuro(388673708753027083)", "size": { "x": 32, "y": 32 @@ -15,7 +15,7 @@ "directions": 4 }, { - "name": "equipped-INNERCLOTHING-monkey", + "name": "equipped-INNERCLOTHING-digi", "directions": 4 }, { diff --git a/Resources/Textures/Stories/Interface/Misc/job_icons.rsi/HeadOfSpacePrison.png b/Resources/Textures/Stories/Interface/Misc/job_icons.rsi/HeadOfSpacePrison.png index 293a01023b..b1e4cb356d 100644 Binary files a/Resources/Textures/Stories/Interface/Misc/job_icons.rsi/HeadOfSpacePrison.png and b/Resources/Textures/Stories/Interface/Misc/job_icons.rsi/HeadOfSpacePrison.png differ diff --git a/Resources/Textures/Stories/Interface/Misc/job_icons.rsi/SpacePrisonEngineer.png b/Resources/Textures/Stories/Interface/Misc/job_icons.rsi/SpacePrisonEngineer.png index b2f39e6fea..da3595e517 100644 Binary files a/Resources/Textures/Stories/Interface/Misc/job_icons.rsi/SpacePrisonEngineer.png and b/Resources/Textures/Stories/Interface/Misc/job_icons.rsi/SpacePrisonEngineer.png differ diff --git a/Resources/Textures/Stories/Interface/Misc/job_icons.rsi/SpacePrisonMedic.png b/Resources/Textures/Stories/Interface/Misc/job_icons.rsi/SpacePrisonMedic.png index 5ca807ad89..15bf489180 100644 Binary files a/Resources/Textures/Stories/Interface/Misc/job_icons.rsi/SpacePrisonMedic.png and b/Resources/Textures/Stories/Interface/Misc/job_icons.rsi/SpacePrisonMedic.png differ diff --git a/Resources/Textures/Stories/Interface/Misc/job_icons.rsi/SpacePrisonSecurityOfficer.png b/Resources/Textures/Stories/Interface/Misc/job_icons.rsi/SpacePrisonSecurityOfficer.png index a8722323f3..cb99e1f4a8 100644 Binary files a/Resources/Textures/Stories/Interface/Misc/job_icons.rsi/SpacePrisonSecurityOfficer.png and b/Resources/Textures/Stories/Interface/Misc/job_icons.rsi/SpacePrisonSecurityOfficer.png differ diff --git a/Resources/Textures/Stories/Objects/Devices/handheld_console.rsi/meta.json b/Resources/Textures/Stories/Objects/Devices/handheld_console.rsi/meta.json new file mode 100644 index 0000000000..3a671c1d81 --- /dev/null +++ b/Resources/Textures/Stories/Objects/Devices/handheld_console.rsi/meta.json @@ -0,0 +1,21 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "doublechest (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "shuttle_sp", + "directions": 1, + "delays": [ + [ + 0.4, + 0.4 + ] + ] + } + ] +} diff --git a/Resources/Textures/Stories/Objects/Devices/handheld_console.rsi/shuttle_sp.png b/Resources/Textures/Stories/Objects/Devices/handheld_console.rsi/shuttle_sp.png new file mode 100644 index 0000000000..ab2e40bfa3 Binary files /dev/null and b/Resources/Textures/Stories/Objects/Devices/handheld_console.rsi/shuttle_sp.png differ diff --git a/Resources/Textures/Stories/Objects/Devices/pda.rsi/pda-engi.png b/Resources/Textures/Stories/Objects/Devices/pda.rsi/pda-engi.png new file mode 100644 index 0000000000..fc44242878 Binary files /dev/null and b/Resources/Textures/Stories/Objects/Devices/pda.rsi/pda-engi.png differ diff --git a/Resources/Textures/Stories/Objects/Devices/pda.rsi/pda-hosp.png b/Resources/Textures/Stories/Objects/Devices/pda.rsi/pda-hosp.png index 8d24b5e65d..40d8f53818 100644 Binary files a/Resources/Textures/Stories/Objects/Devices/pda.rsi/pda-hosp.png and b/Resources/Textures/Stories/Objects/Devices/pda.rsi/pda-hosp.png differ diff --git a/Resources/Textures/Stories/Objects/Devices/pda.rsi/pda-spengineer.png b/Resources/Textures/Stories/Objects/Devices/pda.rsi/pda-spengineer.png index 0ea418bc89..b6f9d12a03 100644 Binary files a/Resources/Textures/Stories/Objects/Devices/pda.rsi/pda-spengineer.png and b/Resources/Textures/Stories/Objects/Devices/pda.rsi/pda-spengineer.png differ diff --git a/Resources/Textures/Stories/Objects/Devices/pda.rsi/pda-spmedic.png b/Resources/Textures/Stories/Objects/Devices/pda.rsi/pda-spmedic.png index 555656a7bd..c78f871499 100644 Binary files a/Resources/Textures/Stories/Objects/Devices/pda.rsi/pda-spmedic.png and b/Resources/Textures/Stories/Objects/Devices/pda.rsi/pda-spmedic.png differ diff --git a/Resources/Textures/Stories/Objects/Devices/pda.rsi/pda-spofficer.png b/Resources/Textures/Stories/Objects/Devices/pda.rsi/pda-spofficer.png index 13b4170b2c..8d94ad9c65 100644 Binary files a/Resources/Textures/Stories/Objects/Devices/pda.rsi/pda-spofficer.png and b/Resources/Textures/Stories/Objects/Devices/pda.rsi/pda-spofficer.png differ diff --git a/Resources/Textures/Stories/Objects/Misc/id_cards.rsi/default_sp.png b/Resources/Textures/Stories/Objects/Misc/id_cards.rsi/default_sp.png new file mode 100644 index 0000000000..f63d835939 Binary files /dev/null and b/Resources/Textures/Stories/Objects/Misc/id_cards.rsi/default_sp.png differ diff --git a/Resources/Textures/Stories/Objects/Misc/id_cards.rsi/meta.json b/Resources/Textures/Stories/Objects/Misc/id_cards.rsi/meta.json index 225196fdbd..aecab2b36b 100644 --- a/Resources/Textures/Stories/Objects/Misc/id_cards.rsi/meta.json +++ b/Resources/Textures/Stories/Objects/Misc/id_cards.rsi/meta.json @@ -1,49 +1,55 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d917f4c2a088419d5c3aec7656b7ff8cebd1822e idcluwne made by brainfood1183 (github) for ss14, idbrigmedic made by PuroSlavKing (Github)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "default" - }, - { - "name": "idjedint" - }, - { - "name": "silver" - }, - { - "name": "future" - }, - { - "name": "idspofficer" - }, - { - "name": "idspengineer" - }, - { - "name": "idchrono" - }, - { - "name": "idspmedic" - }, - { - "name": "idhosp" - }, - { - "name": "idiaa" - }, - { - "name": "default-inhand-left", - "directions": 4 - }, - { - "name": "default-inhand-right", - "directions": 4 - } - ] + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d917f4c2a088419d5c3aec7656b7ff8cebd1822e idcluwne made by brainfood1183 (github) for ss14, idbrigmedic made by PuroSlavKing (Github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "default" + }, + { + "name": "default_sp" + }, + { + "name": "idjedint" + }, + { + "name": "silver" + }, + { + "name": "silver_sp" + }, + { + "name": "future" + }, + { + "name": "idspofficer" + }, + { + "name": "idspengineer" + }, + { + "name": "idchrono" + }, + { + "name": "idspmedic" + }, + { + "name": "idhosp" + }, + { + "name": "idiaa" + }, + { + "name": "default-inhand-left", + "directions": 4 + }, + { + "name": "default-inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Stories/Objects/Misc/id_cards.rsi/silver_sp.png b/Resources/Textures/Stories/Objects/Misc/id_cards.rsi/silver_sp.png new file mode 100644 index 0000000000..036eee9578 Binary files /dev/null and b/Resources/Textures/Stories/Objects/Misc/id_cards.rsi/silver_sp.png differ diff --git a/Resources/Textures/Stories/Objects/Weapons/Melee/hosp_sabre.rsi/icon.png b/Resources/Textures/Stories/Objects/Weapons/Melee/hosp_sabre.rsi/icon.png index 58a8a1e320..252e788552 100644 Binary files a/Resources/Textures/Stories/Objects/Weapons/Melee/hosp_sabre.rsi/icon.png and b/Resources/Textures/Stories/Objects/Weapons/Melee/hosp_sabre.rsi/icon.png differ diff --git a/Resources/Textures/Stories/Objects/Weapons/Melee/hosp_sabre.rsi/inhand-left.png b/Resources/Textures/Stories/Objects/Weapons/Melee/hosp_sabre.rsi/inhand-left.png index eac42f2859..30c6e7baa8 100644 Binary files a/Resources/Textures/Stories/Objects/Weapons/Melee/hosp_sabre.rsi/inhand-left.png and b/Resources/Textures/Stories/Objects/Weapons/Melee/hosp_sabre.rsi/inhand-left.png differ diff --git a/Resources/Textures/Stories/Objects/Weapons/Melee/hosp_sabre.rsi/inhand-right.png b/Resources/Textures/Stories/Objects/Weapons/Melee/hosp_sabre.rsi/inhand-right.png index c59a32b0a8..095d31663f 100644 Binary files a/Resources/Textures/Stories/Objects/Weapons/Melee/hosp_sabre.rsi/inhand-right.png and b/Resources/Textures/Stories/Objects/Weapons/Melee/hosp_sabre.rsi/inhand-right.png differ diff --git a/Resources/Textures/Stories/Objects/Weapons/Melee/hosp_sabre.rsi/meta.json b/Resources/Textures/Stories/Objects/Weapons/Melee/hosp_sabre.rsi/meta.json index da97197ae2..8a37f7d2d5 100644 --- a/Resources/Textures/Stories/Objects/Weapons/Melee/hosp_sabre.rsi/meta.json +++ b/Resources/Textures/Stories/Objects/Weapons/Melee/hosp_sabre.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by discord:𝘽𝙚𝙡𝙖𝙮#7441", + "copyright": "Created by RustedTim(discord)", "size": { "x": 32, "y": 32 @@ -11,12 +11,12 @@ "name": "icon" }, { - "name": "inhand-left", + "name": "inhand-right", "directions": 4 }, { - "name": "inhand-right", + "name": "inhand-left", "directions": 4 } ] -} +} \ No newline at end of file diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/assembly.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/assembly.png new file mode 100644 index 0000000000..fab7c2212e Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/assembly.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/bolted_open_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/bolted_open_unlit.png new file mode 100644 index 0000000000..f69f2a124e Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/bolted_open_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/bolted_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/bolted_unlit.png new file mode 100644 index 0000000000..9a57e2c1b2 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/closed.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/closed.png new file mode 100644 index 0000000000..ef78385d58 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/closed.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/closed_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/closed_unlit.png new file mode 100644 index 0000000000..a1168e1965 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/closing.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/closing.png new file mode 100644 index 0000000000..9fa8b0ceef Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/closing.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/closing_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/closing_unlit.png new file mode 100644 index 0000000000..4c6edcfdbe Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/deny_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/deny_unlit.png new file mode 100644 index 0000000000..741589c696 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/emergency_open_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/emergency_open_unlit.png new file mode 100644 index 0000000000..0b3ace1410 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/emergency_open_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/emergency_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/emergency_unlit.png new file mode 100644 index 0000000000..36daac76c4 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/meta.json b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/meta.json new file mode 100644 index 0000000000..885d0ea166 --- /dev/null +++ b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/meta.json @@ -0,0 +1,197 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TauCetiClassic at commit https://github.com/TauCetiStation/TauCetiClassic/commit/fd5cfd76acdf5bda9e46413c11006a6e825d51a9", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit" + }, + { + "name": "open_unlit" + }, + { + "name": "closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "panel_closed" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + + { + "name": "panel_open" + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded" + }, + { + "name": "emergency_unlit", + "delays": [ + [ + 1.2, + 1.2 + ] + ] + }, + { + "name": "emergency_open_unlit" + } + ] +} diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/open.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/open.png new file mode 100644 index 0000000000..240950bac3 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/open.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/open_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/open_unlit.png new file mode 100644 index 0000000000..810a46ad20 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/open_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/opening.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/opening.png new file mode 100644 index 0000000000..228d8bb003 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/opening.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/opening_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/opening_unlit.png new file mode 100644 index 0000000000..787e869bda Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/panel_closed.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/panel_closed.png new file mode 100644 index 0000000000..4c59d3a28c Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/panel_closed.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/panel_closing.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/panel_closing.png new file mode 100644 index 0000000000..140be67d32 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/panel_closing.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/panel_open.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/panel_open.png new file mode 100644 index 0000000000..c41e1484ee Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/panel_open.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/panel_opening.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/panel_opening.png new file mode 100644 index 0000000000..c25bc776c6 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/panel_opening.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/sparks.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/sparks.png new file mode 100644 index 0000000000..186d38f0d1 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/sparks.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/sparks_broken.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/sparks_broken.png new file mode 100644 index 0000000000..4b58c64673 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/sparks_broken.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/sparks_damaged.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/sparks_damaged.png new file mode 100644 index 0000000000..9b919ed404 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/sparks_damaged.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/sparks_open.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/sparks_open.png new file mode 100644 index 0000000000..deabe407f1 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/sparks_open.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/welded.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/welded.png new file mode 100644 index 0000000000..85f179f2e0 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/security.rsi/welded.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/assembly.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/assembly.png new file mode 100644 index 0000000000..98befad031 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/assembly.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/bolted_open_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/bolted_open_unlit.png new file mode 100644 index 0000000000..4c59d3a28c Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/bolted_open_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/bolted_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/bolted_unlit.png new file mode 100644 index 0000000000..844bd201f1 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/closed.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/closed.png new file mode 100644 index 0000000000..2bf17baa14 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/closed.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/closed_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/closed_unlit.png new file mode 100644 index 0000000000..7c80bc210c Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/closing.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/closing.png new file mode 100644 index 0000000000..eeb69554e4 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/closing.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/closing_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/closing_unlit.png new file mode 100644 index 0000000000..51ae8ad362 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/deny_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/deny_unlit.png new file mode 100644 index 0000000000..dfe4d406ed Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/emergency_open_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/emergency_open_unlit.png new file mode 100644 index 0000000000..4c59d3a28c Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/emergency_open_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/emergency_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/emergency_unlit.png new file mode 100644 index 0000000000..31f7a5f9f0 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/meta.json b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/meta.json new file mode 100644 index 0000000000..126434bce5 --- /dev/null +++ b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/meta.json @@ -0,0 +1,158 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from CEV-Eris at commit https://github.com/discordia-space/CEV-Eris/commit/14517938186858388656a6aee14bf47af9e9649f - then modified by 20kdc & AJCM-git, glass by Peptide90", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit" + }, + { + "name": "open_unlit" + }, + { + "name": "closing", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "panel_closed" + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "welded" + }, + { + "name": "emergency_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + }, + { + "name": "emergency_open_unlit" + } + ] +} diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/open.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/open.png new file mode 100644 index 0000000000..a393612260 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/open.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/open_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/open_unlit.png new file mode 100644 index 0000000000..4c59d3a28c Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/open_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/opening.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/opening.png new file mode 100644 index 0000000000..13eacacd89 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/opening.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/opening_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/opening_unlit.png new file mode 100644 index 0000000000..51ae8ad362 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/panel_closed.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/panel_closed.png new file mode 100644 index 0000000000..4c59d3a28c Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/panel_closed.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/panel_closing.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/panel_closing.png new file mode 100644 index 0000000000..6afe206992 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/panel_closing.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/panel_open.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/panel_open.png new file mode 100644 index 0000000000..d7d4122c08 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/panel_open.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/panel_opening.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/panel_opening.png new file mode 100644 index 0000000000..e6c87d740e Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/panel_opening.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/welded.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/welded.png new file mode 100644 index 0000000000..eed2758c79 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Glass/shuttle_sp.rsi/welded.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/assembly.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/assembly.png new file mode 100644 index 0000000000..4088afdbc1 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/assembly.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/bolted_open_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/bolted_open_unlit.png new file mode 100644 index 0000000000..f69f2a124e Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/bolted_open_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/bolted_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/bolted_unlit.png new file mode 100644 index 0000000000..9a57e2c1b2 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/closed.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/closed.png new file mode 100644 index 0000000000..50d9147a04 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/closed.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/closed_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/closed_unlit.png new file mode 100644 index 0000000000..a1168e1965 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/closing.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/closing.png new file mode 100644 index 0000000000..1a18da86d2 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/closing.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/closing_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/closing_unlit.png new file mode 100644 index 0000000000..4c6edcfdbe Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/deny_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/deny_unlit.png new file mode 100644 index 0000000000..741589c696 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/emergency_open_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/emergency_open_unlit.png new file mode 100644 index 0000000000..0b3ace1410 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/emergency_open_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/emergency_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/emergency_unlit.png new file mode 100644 index 0000000000..36daac76c4 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/meta.json b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/meta.json new file mode 100644 index 0000000000..885d0ea166 --- /dev/null +++ b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/meta.json @@ -0,0 +1,197 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TauCetiClassic at commit https://github.com/TauCetiStation/TauCetiClassic/commit/fd5cfd76acdf5bda9e46413c11006a6e825d51a9", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit" + }, + { + "name": "open_unlit" + }, + { + "name": "closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "panel_closed" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + + { + "name": "panel_open" + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded" + }, + { + "name": "emergency_unlit", + "delays": [ + [ + 1.2, + 1.2 + ] + ] + }, + { + "name": "emergency_open_unlit" + } + ] +} diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/open.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/open.png new file mode 100644 index 0000000000..a966b37124 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/open.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/open_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/open_unlit.png new file mode 100644 index 0000000000..810a46ad20 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/open_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/opening.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/opening.png new file mode 100644 index 0000000000..fe2c07b4f5 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/opening.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/opening_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/opening_unlit.png new file mode 100644 index 0000000000..787e869bda Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/panel_closed.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/panel_closed.png new file mode 100644 index 0000000000..4c59d3a28c Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/panel_closed.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/panel_closing.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/panel_closing.png new file mode 100644 index 0000000000..140be67d32 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/panel_closing.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/panel_open.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/panel_open.png new file mode 100644 index 0000000000..c41e1484ee Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/panel_open.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/panel_opening.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/panel_opening.png new file mode 100644 index 0000000000..c25bc776c6 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/panel_opening.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/sparks.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/sparks.png new file mode 100644 index 0000000000..186d38f0d1 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/sparks.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/sparks_broken.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/sparks_broken.png new file mode 100644 index 0000000000..4b58c64673 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/sparks_broken.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/sparks_damaged.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/sparks_damaged.png new file mode 100644 index 0000000000..9b919ed404 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/sparks_damaged.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/sparks_open.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/sparks_open.png new file mode 100644 index 0000000000..deabe407f1 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/sparks_open.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/welded.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/welded.png new file mode 100644 index 0000000000..85f179f2e0 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/security.rsi/welded.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/assembly.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/assembly.png new file mode 100644 index 0000000000..76b1ca7fa8 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/assembly.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/bolted_open_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/bolted_open_unlit.png new file mode 100644 index 0000000000..4c59d3a28c Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/bolted_open_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/bolted_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/bolted_unlit.png new file mode 100644 index 0000000000..844bd201f1 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/closed.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/closed.png new file mode 100644 index 0000000000..ab6f1fd5ea Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/closed.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/closed_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/closed_unlit.png new file mode 100644 index 0000000000..7c80bc210c Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/closing.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/closing.png new file mode 100644 index 0000000000..5c75062cf0 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/closing.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/closing_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/closing_unlit.png new file mode 100644 index 0000000000..51ae8ad362 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/deny_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/deny_unlit.png new file mode 100644 index 0000000000..dfe4d406ed Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/emergency_open_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/emergency_open_unlit.png new file mode 100644 index 0000000000..4c59d3a28c Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/emergency_open_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/emergency_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/emergency_unlit.png new file mode 100644 index 0000000000..31f7a5f9f0 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/meta.json b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/meta.json new file mode 100644 index 0000000000..c1da03d63c --- /dev/null +++ b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/meta.json @@ -0,0 +1,158 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from CEV-Eris at commit https://github.com/discordia-space/CEV-Eris/commit/14517938186858388656a6aee14bf47af9e9649f - then modified by 20kdc & AJCM-git", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit" + }, + { + "name": "open_unlit" + }, + { + "name": "closing", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "panel_closed" + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "welded" + }, + { + "name": "emergency_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + }, + { + "name": "emergency_open_unlit" + } + ] +} diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/open.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/open.png new file mode 100644 index 0000000000..5e9e0b30bf Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/open.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/open_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/open_unlit.png new file mode 100644 index 0000000000..4c59d3a28c Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/open_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/opening.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/opening.png new file mode 100644 index 0000000000..a42a273935 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/opening.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/opening_unlit.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/opening_unlit.png new file mode 100644 index 0000000000..51ae8ad362 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/panel_closed.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/panel_closed.png new file mode 100644 index 0000000000..4c59d3a28c Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/panel_closed.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/panel_closing.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/panel_closing.png new file mode 100644 index 0000000000..6afe206992 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/panel_closing.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/panel_open.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/panel_open.png new file mode 100644 index 0000000000..d7d4122c08 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/panel_open.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/panel_opening.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/panel_opening.png new file mode 100644 index 0000000000..e6c87d740e Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/panel_opening.png differ diff --git a/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/welded.png b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/welded.png new file mode 100644 index 0000000000..eed2758c79 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Doors/Airlocks/Standard/shuttle_sp.rsi/welded.png differ diff --git a/Resources/Textures/Stories/Structures/Machines/VendingMachines/secMachineSP.rsi/broken.png b/Resources/Textures/Stories/Structures/Machines/VendingMachines/secMachineSP.rsi/broken.png new file mode 100644 index 0000000000..146d6a349e Binary files /dev/null and b/Resources/Textures/Stories/Structures/Machines/VendingMachines/secMachineSP.rsi/broken.png differ diff --git a/Resources/Textures/Stories/Structures/Machines/VendingMachines/secMachineSP.rsi/deny-unshaded.png b/Resources/Textures/Stories/Structures/Machines/VendingMachines/secMachineSP.rsi/deny-unshaded.png new file mode 100644 index 0000000000..0e7b9b0c2b Binary files /dev/null and b/Resources/Textures/Stories/Structures/Machines/VendingMachines/secMachineSP.rsi/deny-unshaded.png differ diff --git a/Resources/Textures/Stories/Structures/Machines/VendingMachines/secMachineSP.rsi/eject-unshaded.png b/Resources/Textures/Stories/Structures/Machines/VendingMachines/secMachineSP.rsi/eject-unshaded.png new file mode 100644 index 0000000000..018af16ab2 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Machines/VendingMachines/secMachineSP.rsi/eject-unshaded.png differ diff --git a/Resources/Textures/Stories/Structures/Machines/VendingMachines/secMachineSP.rsi/meta.json b/Resources/Textures/Stories/Structures/Machines/VendingMachines/secMachineSP.rsi/meta.json new file mode 100644 index 0000000000..8bf1a8af5d --- /dev/null +++ b/Resources/Textures/Stories/Structures/Machines/VendingMachines/secMachineSP.rsi/meta.json @@ -0,0 +1,52 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/1516a728931b4985c1e86f0c5995a5aa1554a1ad and modified by Swept", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "normal-unshaded", + "delays": [ + [ + 2.5, + 0.05, + 3.4, + 0.05 + ] + ] + }, + { + "name": "eject-unshaded", + "delays": [ + [ + 0.1, + 0.4, + 0.2, + 0.4, + 0.1 + ] + ] + }, + { + "name": "deny-unshaded", + "delays": [ + [ + 0.5, + 0.1 + ] + ] + }, + { + "name": "broken" + }, + { + "name": "off" + }, + { + "name": "panel" + } + ] +} diff --git a/Resources/Textures/Stories/Structures/Machines/VendingMachines/secMachineSP.rsi/normal-unshaded.png b/Resources/Textures/Stories/Structures/Machines/VendingMachines/secMachineSP.rsi/normal-unshaded.png new file mode 100644 index 0000000000..9225854c7a Binary files /dev/null and b/Resources/Textures/Stories/Structures/Machines/VendingMachines/secMachineSP.rsi/normal-unshaded.png differ diff --git a/Resources/Textures/Stories/Structures/Machines/VendingMachines/secMachineSP.rsi/off.png b/Resources/Textures/Stories/Structures/Machines/VendingMachines/secMachineSP.rsi/off.png new file mode 100644 index 0000000000..358661076c Binary files /dev/null and b/Resources/Textures/Stories/Structures/Machines/VendingMachines/secMachineSP.rsi/off.png differ diff --git a/Resources/Textures/Stories/Structures/Machines/VendingMachines/secMachineSP.rsi/panel.png b/Resources/Textures/Stories/Structures/Machines/VendingMachines/secMachineSP.rsi/panel.png new file mode 100644 index 0000000000..a797b42b18 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Machines/VendingMachines/secMachineSP.rsi/panel.png differ diff --git a/Resources/Textures/Stories/Structures/Machines/VendingMachines/spdrobe.rsi/broken.png b/Resources/Textures/Stories/Structures/Machines/VendingMachines/spdrobe.rsi/broken.png index 601d7951d2..50f8db4820 100644 Binary files a/Resources/Textures/Stories/Structures/Machines/VendingMachines/spdrobe.rsi/broken.png and b/Resources/Textures/Stories/Structures/Machines/VendingMachines/spdrobe.rsi/broken.png differ diff --git a/Resources/Textures/Stories/Structures/Machines/VendingMachines/spdrobe.rsi/meta.json b/Resources/Textures/Stories/Structures/Machines/VendingMachines/spdrobe.rsi/meta.json index a004430795..ab73c23410 100644 --- a/Resources/Textures/Stories/Structures/Machines/VendingMachines/spdrobe.rsi/meta.json +++ b/Resources/Textures/Stories/Structures/Machines/VendingMachines/spdrobe.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062 modified by Potato1234x (Github) for SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Stories/Structures/Machines/VendingMachines/spdrobe.rsi/normal-unshaded.png b/Resources/Textures/Stories/Structures/Machines/VendingMachines/spdrobe.rsi/normal-unshaded.png index cfc63bd8cf..61107ed42c 100644 Binary files a/Resources/Textures/Stories/Structures/Machines/VendingMachines/spdrobe.rsi/normal-unshaded.png and b/Resources/Textures/Stories/Structures/Machines/VendingMachines/spdrobe.rsi/normal-unshaded.png differ diff --git a/Resources/Textures/Stories/Structures/Machines/VendingMachines/spdrobe.rsi/off.png b/Resources/Textures/Stories/Structures/Machines/VendingMachines/spdrobe.rsi/off.png index d839a844bb..e433304fbe 100644 Binary files a/Resources/Textures/Stories/Structures/Machines/VendingMachines/spdrobe.rsi/off.png and b/Resources/Textures/Stories/Structures/Machines/VendingMachines/spdrobe.rsi/off.png differ diff --git a/Resources/Textures/Stories/Structures/Machines/computers_sp.rsi/computer_sp.png b/Resources/Textures/Stories/Structures/Machines/computers_sp.rsi/computer_sp.png new file mode 100644 index 0000000000..ef133280ba Binary files /dev/null and b/Resources/Textures/Stories/Structures/Machines/computers_sp.rsi/computer_sp.png differ diff --git a/Resources/Textures/Stories/Structures/Machines/computers_sp.rsi/generic_keyboard_sp.png b/Resources/Textures/Stories/Structures/Machines/computers_sp.rsi/generic_keyboard_sp.png new file mode 100644 index 0000000000..a2daf3aec0 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Machines/computers_sp.rsi/generic_keyboard_sp.png differ diff --git a/Resources/Textures/Stories/Structures/Machines/computers_sp.rsi/generic_keys_sp.png b/Resources/Textures/Stories/Structures/Machines/computers_sp.rsi/generic_keys_sp.png new file mode 100644 index 0000000000..bc5f7fc293 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Machines/computers_sp.rsi/generic_keys_sp.png differ diff --git a/Resources/Textures/Stories/Structures/Machines/computers_sp.rsi/meta.json b/Resources/Textures/Stories/Structures/Machines/computers_sp.rsi/meta.json new file mode 100644 index 0000000000..fa9e9c77eb --- /dev/null +++ b/Resources/Textures/Stories/Structures/Machines/computers_sp.rsi/meta.json @@ -0,0 +1,49 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bd6873fd4dd6a61d7e46f1d75cd4d90f64c40894. comm_syndie made by Veritius, based on comm.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "computer_sp", + "directions": 4 + }, + { + "name": "generic_keyboard_sp", + "directions": 4 + }, + { + "name": "generic_keys_sp", + "directions": 4 + }, + { + "name": "shuttle_sp", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Stories/Structures/Machines/computers_sp.rsi/shuttle_sp.png b/Resources/Textures/Stories/Structures/Machines/computers_sp.rsi/shuttle_sp.png new file mode 100644 index 0000000000..2c2baca006 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Machines/computers_sp.rsi/shuttle_sp.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttle_diagonal_sp.rsi/meta.json b/Resources/Textures/Stories/Structures/Walls/shuttle_diagonal_sp.rsi/meta.json new file mode 100644 index 0000000000..bfe6cd74ef --- /dev/null +++ b/Resources/Textures/Stories/Structures/Walls/shuttle_diagonal_sp.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/tgstation/tgstation/blob/9ddb8cf084e292571d4e9c79745db25befbd82fe/icons/turf/walls/shuttle_wall.dmi", + "states": [ + { + "name": "state0" + }, + { + "name": "state1" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Stories/Structures/Walls/shuttle_diagonal_sp.rsi/state0.png b/Resources/Textures/Stories/Structures/Walls/shuttle_diagonal_sp.rsi/state0.png new file mode 100644 index 0000000000..8b1db9354c Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttle_diagonal_sp.rsi/state0.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttle_diagonal_sp.rsi/state1.png b/Resources/Textures/Stories/Structures/Walls/shuttle_diagonal_sp.rsi/state1.png new file mode 100644 index 0000000000..58492694c6 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttle_diagonal_sp.rsi/state1.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/full.png b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/full.png new file mode 100644 index 0000000000..dcb424044b Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/full.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/meta.json b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/meta.json new file mode 100644 index 0000000000..9aff20a66c --- /dev/null +++ b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/meta.json @@ -0,0 +1,64 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/tgstation/tgstation/blob/9ddb8cf084e292571d4e9c79745db25befbd82fe/icons/turf/walls/shuttle_wall.dmi", + "states": [ + { + "name": "full" + }, + { + "name": "state0", + "directions": 4 + }, + { + "name": "state1", + "directions": 4 + }, + { + "name": "state2", + "directions": 4 + }, + { + "name": "state3", + "directions": 4 + }, + { + "name": "state4", + "directions": 4 + }, + { + "name": "state5", + "directions": 4 + }, + { + "name": "state6", + "directions": 4 + }, + { + "name": "state7", + "directions": 4 + }, + { + "name": "shuttle_construct-0" + }, + { + "name": "shuttle_construct-1" + }, + { + "name": "shuttle_construct-2" + }, + { + "name": "shuttle_construct-3" + }, + { + "name": "shuttle_construct-4" + }, + { + "name": "shuttle_construct-5" + } + ] +} diff --git a/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/shuttle_construct-0.png b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/shuttle_construct-0.png new file mode 100644 index 0000000000..8cfb05cbae Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/shuttle_construct-0.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/shuttle_construct-1.png b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/shuttle_construct-1.png new file mode 100644 index 0000000000..fb27264a58 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/shuttle_construct-1.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/shuttle_construct-2.png b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/shuttle_construct-2.png new file mode 100644 index 0000000000..d6655cdad6 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/shuttle_construct-2.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/shuttle_construct-3.png b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/shuttle_construct-3.png new file mode 100644 index 0000000000..44fa736495 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/shuttle_construct-3.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/shuttle_construct-4.png b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/shuttle_construct-4.png new file mode 100644 index 0000000000..e301dc2bcc Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/shuttle_construct-4.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/shuttle_construct-5.png b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/shuttle_construct-5.png new file mode 100644 index 0000000000..26e3ace338 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/shuttle_construct-5.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state0.png b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state0.png new file mode 100644 index 0000000000..7542b24b5f Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state0.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state1.png b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state1.png new file mode 100644 index 0000000000..1822988202 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state1.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state2.png b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state2.png new file mode 100644 index 0000000000..7542b24b5f Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state2.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state3.png b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state3.png new file mode 100644 index 0000000000..1822988202 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state3.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state4.png b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state4.png new file mode 100644 index 0000000000..8cbb05dfe8 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state4.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state5.png b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state5.png new file mode 100644 index 0000000000..7a1019e4f4 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state5.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state6.png b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state6.png new file mode 100644 index 0000000000..8cbb05dfe8 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state6.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state7.png b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state7.png new file mode 100644 index 0000000000..7a0cceae85 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttle_sp.rsi/state7.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/full.png b/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/full.png new file mode 100644 index 0000000000..f34f7d3ca7 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/full.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/meta.json b/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/meta.json new file mode 100644 index 0000000000..97ca2aa3b0 --- /dev/null +++ b/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/meta.json @@ -0,0 +1,46 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/tgstation/tgstation/blob/9ddb8cf084e292571d4e9c79745db25befbd82fe/icons/turf/walls/shuttle_wall.dmi", + "states": [ + { + "name": "full" + }, + { + "name": "state0", + "directions": 4 + }, + { + "name": "state1", + "directions": 4 + }, + { + "name": "state2", + "directions": 4 + }, + { + "name": "state3", + "directions": 4 + }, + { + "name": "state4", + "directions": 4 + }, + { + "name": "state5", + "directions": 4 + }, + { + "name": "state6", + "directions": 4 + }, + { + "name": "state7", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state0.png b/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state0.png new file mode 100644 index 0000000000..1f9e179caa Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state0.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state1.png b/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state1.png new file mode 100644 index 0000000000..583cbaeedf Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state1.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state2.png b/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state2.png new file mode 100644 index 0000000000..1f9e179caa Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state2.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state3.png b/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state3.png new file mode 100644 index 0000000000..583cbaeedf Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state3.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state4.png b/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state4.png new file mode 100644 index 0000000000..f93ca455c1 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state4.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state5.png b/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state5.png new file mode 100644 index 0000000000..1736721bb3 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state5.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state6.png b/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state6.png new file mode 100644 index 0000000000..f93ca455c1 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state6.png differ diff --git a/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state7.png b/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state7.png new file mode 100644 index 0000000000..629e4e3154 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Walls/shuttleinterior_sp.rsi/state7.png differ diff --git a/Resources/Textures/Stories/Structures/Windows/shuttle_window_diagonal_sp.rsi/meta.json b/Resources/Textures/Stories/Structures/Windows/shuttle_window_diagonal_sp.rsi/meta.json new file mode 100644 index 0000000000..453a379722 --- /dev/null +++ b/Resources/Textures/Stories/Structures/Windows/shuttle_window_diagonal_sp.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github)", + "states": [ + { + "name": "state0" + }, + { + "name": "state1" + } + ] +} diff --git a/Resources/Textures/Stories/Structures/Windows/shuttle_window_diagonal_sp.rsi/state0.png b/Resources/Textures/Stories/Structures/Windows/shuttle_window_diagonal_sp.rsi/state0.png new file mode 100644 index 0000000000..fef2b679d4 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Windows/shuttle_window_diagonal_sp.rsi/state0.png differ diff --git a/Resources/Textures/Stories/Structures/Windows/shuttle_window_diagonal_sp.rsi/state1.png b/Resources/Textures/Stories/Structures/Windows/shuttle_window_diagonal_sp.rsi/state1.png new file mode 100644 index 0000000000..a8d5b05e7a Binary files /dev/null and b/Resources/Textures/Stories/Structures/Windows/shuttle_window_diagonal_sp.rsi/state1.png differ diff --git a/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/full.png b/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/full.png new file mode 100644 index 0000000000..c725f7fe5f Binary files /dev/null and b/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/full.png differ diff --git a/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/meta.json b/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/meta.json new file mode 100644 index 0000000000..825c4ae113 --- /dev/null +++ b/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/meta.json @@ -0,0 +1,46 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/0b906c6916ce3803473fa6caa65f5b8661118c46", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "swindow0", + "directions": 4 + }, + { + "name": "swindow1", + "directions": 4 + }, + { + "name": "swindow2", + "directions": 4 + }, + { + "name": "swindow3", + "directions": 4 + }, + { + "name": "swindow4", + "directions": 4 + }, + { + "name": "swindow5", + "directions": 4 + }, + { + "name": "swindow6", + "directions": 4 + }, + { + "name": "swindow7", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow0.png b/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow0.png new file mode 100644 index 0000000000..96cf42db92 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow0.png differ diff --git a/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow1.png b/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow1.png new file mode 100644 index 0000000000..969c1ca8a3 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow1.png differ diff --git a/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow2.png b/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow2.png new file mode 100644 index 0000000000..96cf42db92 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow2.png differ diff --git a/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow3.png b/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow3.png new file mode 100644 index 0000000000..969c1ca8a3 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow3.png differ diff --git a/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow4.png b/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow4.png new file mode 100644 index 0000000000..75006ef998 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow4.png differ diff --git a/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow5.png b/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow5.png new file mode 100644 index 0000000000..6fb706bbfe Binary files /dev/null and b/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow5.png differ diff --git a/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow6.png b/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow6.png new file mode 100644 index 0000000000..75006ef998 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow6.png differ diff --git a/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow7.png b/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow7.png new file mode 100644 index 0000000000..e0c99e0f54 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Windows/shuttle_window_sp.rsi/swindow7.png differ diff --git a/Resources/Textures/Stories/Structures/flags.rsi/meta.json b/Resources/Textures/Stories/Structures/flags.rsi/meta.json new file mode 100644 index 0000000000..08c275ced2 --- /dev/null +++ b/Resources/Textures/Stories/Structures/flags.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Space Stories", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "sp" + } + ] +} diff --git a/Resources/Textures/Stories/Structures/flags.rsi/sp.png b/Resources/Textures/Stories/Structures/flags.rsi/sp.png new file mode 100644 index 0000000000..4363ce3d70 Binary files /dev/null and b/Resources/Textures/Stories/Structures/flags.rsi/sp.png differ