diff --git a/Content.Server/Chemistry/ReagentEffects/DisintegrateArtifact.cs b/Content.Server/Chemistry/ReagentEffects/DisintegrateArtifact.cs new file mode 100644 index 00000000000..fc9b18e2e49 --- /dev/null +++ b/Content.Server/Chemistry/ReagentEffects/DisintegrateArtifact.cs @@ -0,0 +1,36 @@ +using Content.Server.Xenoarchaeology.XenoArtifacts; +using Content.Shared.Chemistry.Reagent; +using Robust.Shared.Prototypes; + +namespace Content.Server.Chemistry.ReagentEffects; + +public sealed partial class DisintegrateArtifact : ReagentEffect +{ + + /// + /// Disintegrate chance + /// + [DataField("probabilityMin"), ViewVariables(VVAccess.ReadWrite)] + public float ProbabilityMax = 0.05f; + + /// + /// Disintegrate chance + /// + [DataField("probabilityMax"), ViewVariables(VVAccess.ReadWrite)] + public float ProbabilityMin = 0.15f; + + /// + /// The range around the artifact that it will spawn the entity + /// + [DataField("range")] + public float Range = 0.5f; + + public override void Effect(ReagentEffectArgs args) + { + var artifact = args.EntityManager.EntitySysManager.GetEntitySystem(); + artifact.DisintegrateArtifact(args.SolutionEntity, ProbabilityMin, ProbabilityMax, Range); + } + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => + null; +} diff --git a/Content.Server/GameTicking/GameTicker.Spawning.cs b/Content.Server/GameTicking/GameTicker.Spawning.cs index 01630000a6c..4fb0a868d08 100644 --- a/Content.Server/GameTicking/GameTicker.Spawning.cs +++ b/Content.Server/GameTicking/GameTicker.Spawning.cs @@ -209,7 +209,15 @@ private void SpawnPlayer(ICommonSession player, HumanoidCharacterProfile charact _playTimeTrackings.PlayerRolesChanged(player); - var mobMaybe = _stationSpawning.SpawnPlayerCharacterOnStation(station, job, character); + // Delta-V: Add AlwaysUseSpawner. + var spawnPointType = SpawnPointType.Unset; + if (jobPrototype.AlwaysUseSpawner) + { + lateJoin = false; + spawnPointType = SpawnPointType.Job; + } + + var mobMaybe = _stationSpawning.SpawnPlayerCharacterOnStation(station, job, character, spawnPointType: spawnPointType); DebugTools.AssertNotNull(mobMaybe); var mob = mobMaybe!.Value; diff --git a/Content.Server/Spawners/EntitySystems/ContainerSpawnPointSystem.cs b/Content.Server/Spawners/EntitySystems/ContainerSpawnPointSystem.cs index e213f29d07b..463e9dad125 100644 --- a/Content.Server/Spawners/EntitySystems/ContainerSpawnPointSystem.cs +++ b/Content.Server/Spawners/EntitySystems/ContainerSpawnPointSystem.cs @@ -1,4 +1,4 @@ -using Content.Server.GameTicking; +using Content.Server.GameTicking; using Content.Server.Spawners.Components; using Content.Server.Station.Systems; using Robust.Server.Containers; @@ -20,6 +20,10 @@ public void HandlePlayerSpawning(PlayerSpawningEvent args) if (args.SpawnResult != null) return; + // DeltaV - Ignore these two desired spawn types + if (args.DesiredSpawnPointType is SpawnPointType.Observer or SpawnPointType.LateJoin) + return; + var query = EntityQueryEnumerator(); var possibleContainers = new List>(); diff --git a/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs b/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs index b98e04844b9..65877d4e5de 100644 --- a/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs +++ b/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs @@ -1,4 +1,4 @@ -using Content.Server.GameTicking; +using Content.Server.GameTicking; using Content.Server.Spawners.Components; using Content.Server.Station.Systems; using Robust.Shared.Map; @@ -32,6 +32,24 @@ private void OnPlayerSpawning(PlayerSpawningEvent args) if (args.Station != null && _stationSystem.GetOwningStation(uid, xform) != args.Station) continue; + // Delta-V: Allow setting a desired SpawnPointType + if (args.DesiredSpawnPointType != SpawnPointType.Unset) + { + var isMatchingJob = spawnPoint.SpawnType == SpawnPointType.Job && + (args.Job == null || spawnPoint.Job?.ID == args.Job.Prototype); + + switch (args.DesiredSpawnPointType) + { + case SpawnPointType.Job when isMatchingJob: + case SpawnPointType.LateJoin when spawnPoint.SpawnType == SpawnPointType.LateJoin: + case SpawnPointType.Observer when spawnPoint.SpawnType == SpawnPointType.Observer: + possiblePositions.Add(xform.Coordinates); + break; + default: + continue; + } + } + if (_gameTicker.RunLevel == GameRunLevel.InRound && spawnPoint.SpawnType == SpawnPointType.LateJoin) { possiblePositions.Add(xform.Coordinates); diff --git a/Content.Server/Station/Systems/StationSpawningSystem.cs b/Content.Server/Station/Systems/StationSpawningSystem.cs index d0ebae9a0e6..5970dbbb58d 100644 --- a/Content.Server/Station/Systems/StationSpawningSystem.cs +++ b/Content.Server/Station/Systems/StationSpawningSystem.cs @@ -26,6 +26,7 @@ using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Utility; +using Content.Server.Spawners.Components; // DeltaV namespace Content.Server.Station.Systems; @@ -72,17 +73,19 @@ public override void Initialize() /// The job to assign, if any. /// The character profile to use, if any. /// Resolve pattern, the station spawning component for the station. + /// Delta-V: Set desired spawn point type. /// The resulting player character, if any. /// Thrown when the given station is not a station. /// /// This only spawns the character, and does none of the mind-related setup you'd need for it to be playable. /// - public EntityUid? SpawnPlayerCharacterOnStation(EntityUid? station, JobComponent? job, HumanoidCharacterProfile? profile, StationSpawningComponent? stationSpawning = null) + public EntityUid? SpawnPlayerCharacterOnStation(EntityUid? station, JobComponent? job, HumanoidCharacterProfile? profile, StationSpawningComponent? stationSpawning = null, SpawnPointType spawnPointType = SpawnPointType.Unset) { if (station != null && !Resolve(station.Value, ref stationSpawning)) throw new ArgumentException("Tried to use a non-station entity as a station!", nameof(station)); - var ev = new PlayerSpawningEvent(job, profile, station); + // Delta-V: Set desired spawn point type. + var ev = new PlayerSpawningEvent(job, profile, station, spawnPointType); if (station != null && profile != null) { @@ -276,11 +279,16 @@ public sealed class PlayerSpawningEvent : EntityEventArgs /// The target station, if any. /// public readonly EntityUid? Station; + /// + /// Delta-V: Desired SpawnPointType, if any. + /// + public readonly SpawnPointType DesiredSpawnPointType; - public PlayerSpawningEvent(JobComponent? job, HumanoidCharacterProfile? humanoidCharacterProfile, EntityUid? station) + public PlayerSpawningEvent(JobComponent? job, HumanoidCharacterProfile? humanoidCharacterProfile, EntityUid? station, SpawnPointType spawnPointType = SpawnPointType.Unset) { Job = job; HumanoidCharacterProfile = humanoidCharacterProfile; Station = station; + DesiredSpawnPointType = spawnPointType; } } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs index 9628244b708..b0d12318524 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs @@ -1,18 +1,15 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; +using System.Numerics; using Content.Server.Cargo.Systems; -using Content.Server.GameTicking; using Content.Server.Power.EntitySystems; using Content.Server.Xenoarchaeology.Equipment.Components; using Content.Server.Xenoarchaeology.XenoArtifacts.Events; -using Content.Server.Xenoarchaeology.XenoArtifacts.Triggers.Components; -using Content.Shared.CCVar; using Content.Shared.Tiles; using Content.Shared.Xenoarchaeology.XenoArtifacts; using JetBrains.Annotations; -using Robust.Shared.Audio; +using Robust.Server.GameObjects; using Robust.Shared.Audio.Systems; -using Robust.Shared.Configuration; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Serialization.Manager; @@ -28,6 +25,9 @@ public sealed partial class ArtifactSystem : EntitySystem [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ISerializationManager _serialization = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly TransformSystem _transform = default!; + [Dependency] private readonly IEntityManager _entityManager = default!; + public override void Initialize() { @@ -135,6 +135,28 @@ public void RandomizeArtifact(EntityUid uid, ArtifactComponent component) EnterNode(uid, ref firstNode, component); } + public void DisintegrateArtifact(EntityUid uid, float probabilityMin, float probabilityMax, float range) + { + // Make a chance between probabilityMin and probabilityMax + var randomChanceForDisintegration = _random.NextFloat(probabilityMin, probabilityMax); + var willDisintegrate = _random.Prob(randomChanceForDisintegration); + + if (willDisintegrate) + { + var artifactCoord = _transform.GetMapCoordinates(uid); + var flashEntity = Spawn("EffectFlashBluespace", artifactCoord); + _transform.AttachToGridOrMap(flashEntity); + + var dx = _random.NextFloat(-range, range); + var dy = _random.NextFloat(-range, range); + var spawnCord = artifactCoord.Offset(new Vector2(dx, dy)); + var mobEntity = Spawn("MobGrimForged", spawnCord); + _transform.AttachToGridOrMap(mobEntity); + + _entityManager.DeleteEntity(uid); + } + } + /// /// Tries to activate the artifact /// diff --git a/Content.Shared/Atmos/Rotting/PerishableComponent.cs b/Content.Shared/Atmos/Rotting/PerishableComponent.cs index 47dca8964ac..ed619e98c49 100644 --- a/Content.Shared/Atmos/Rotting/PerishableComponent.cs +++ b/Content.Shared/Atmos/Rotting/PerishableComponent.cs @@ -15,7 +15,7 @@ public sealed partial class PerishableComponent : Component /// How long it takes after death to start rotting. /// [DataField("rotAfter"), ViewVariables(VVAccess.ReadWrite)] - public TimeSpan RotAfter = TimeSpan.FromMinutes(15); + public TimeSpan RotAfter = TimeSpan.FromMinutes(20); /// /// How much rotting has occured diff --git a/Content.Shared/Roles/JobPrototype.cs b/Content.Shared/Roles/JobPrototype.cs index eb2e8535fa5..c4d87d40f41 100644 --- a/Content.Shared/Roles/JobPrototype.cs +++ b/Content.Shared/Roles/JobPrototype.cs @@ -67,6 +67,12 @@ public sealed partial class JobPrototype : IPrototype [DataField("canBeAntag")] public bool CanBeAntag { get; private set; } = true; + /// + /// Nyano/DV: For e.g. prisoners, they'll never use their latejoin spawner. + /// + [DataField("alwaysUseSpawner")] + public bool AlwaysUseSpawner { get; } = false; + /// /// Whether this job is a head. /// The job system will try to pick heads before other jobs on the same priority level. diff --git a/Content.Shared/_NF/CCVars/CCVars.cs b/Content.Shared/_NF/CCVars/CCVars.cs index 9b6a3f916d6..beac18706a4 100644 --- a/Content.Shared/_NF/CCVars/CCVars.cs +++ b/Content.Shared/_NF/CCVars/CCVars.cs @@ -15,7 +15,7 @@ public sealed class NF14CVars /// Respawn time, how long the player has to wait in seconds after death. /// public static readonly CVarDef RespawnTime = - CVarDef.Create("nf14.respawn.time", 900.0f, CVar.SERVER | CVar.REPLICATED); + CVarDef.Create("nf14.respawn.time", 1200.0f, CVar.SERVER | CVar.REPLICATED); /// /// Whether or not returning from cryosleep is enabled. diff --git a/Resources/Audio/_NF/Ambience/force-field.ogg b/Resources/Audio/_NF/Ambience/force-field.ogg new file mode 100644 index 00000000000..f2fe8e69478 Binary files /dev/null and b/Resources/Audio/_NF/Ambience/force-field.ogg differ diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1e6b7302dbb..cc07c4df204 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -3840,3 +3840,51 @@ Entries: message: Named bus docks for STC. id: 4886 time: '2024-03-27T20:49:47.0000000+00:00' +- author: Leander + changes: + - type: Tweak + message: >- + Respawn times take longer but your body takes longer until it starts + rotting away. + id: 4887 + time: '2024-03-29T23:01:04.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: Buffed stats on Experimental Mining Hardsuit. + id: 4888 + time: '2024-03-29T23:03:17.0000000+00:00' +- author: dvir01 + changes: + - type: Add + message: Added the Cleithro psychologist shuttle, just a normal ship. + id: 4889 + time: '2024-03-29T23:09:22.0000000+00:00' +- author: MoistBiscuits + changes: + - type: Tweak + message: >- + The engi techfab has been upgraded to include everything needed for + shuttle construction and repair + id: 4890 + time: '2024-03-29T23:13:11.0000000+00:00' +- author: Leander + changes: + - type: Add + message: >- + Central command has just finished building the latest version of The + Empress. + id: 4891 + time: '2024-03-29T23:59:40.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: Courser X is updated to current mapping standards. + id: 4892 + time: '2024-03-30T00:00:39.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: Courser X is updated to current mapping standards. + id: 4893 + time: '2024-03-30T00:03:39.0000000+00:00' diff --git a/Resources/Maps/Shuttles/cleric.yml b/Resources/Maps/Shuttles/cleric.yml deleted file mode 100644 index 8485f4b5147..00000000000 --- a/Resources/Maps/Shuttles/cleric.yml +++ /dev/null @@ -1,627 +0,0 @@ -meta: - format: 5 - postmapinit: false -tilemap: - 0: Space - 92: FloorWhiteDiagonal - 100: FloorWhitePlastic - 103: Lattice - 104: Plating -entities: -- proto: "" - entities: - - uid: 1 - components: - - type: MetaData - - pos: -2.515625,0.15625 - parent: invalid - type: Transform - - chunks: - 0,0: - ind: 0,0 - tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZAAAAFwAAABcAAAAXAAAAFwAAABkAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures - - type: OccluderTree - - type: SpreaderGrid - - type: Shuttle - - type: GridPathfinding - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - color: '#B02E26FF' - id: BrickTileWhiteCornerNe - decals: - 4: 6,2 - 6: 5,3 - - node: - color: '#B02E26FF' - id: BrickTileWhiteCornerNw - decals: - 1: 2,3 - 8: 1,2 - - node: - color: '#B02E26FF' - id: BrickTileWhiteCornerSe - decals: - 0: 6,1 - - node: - color: '#B02E26FF' - id: BrickTileWhiteInnerNe - decals: - 5: 5,2 - - node: - color: '#B02E26FF' - id: BrickTileWhiteInnerNw - decals: - 7: 2,2 - 9: 1,1 - - node: - color: '#B02E26FF' - id: BrickTileWhiteLineN - decals: - 2: 3,3 - 3: 4,3 - - node: - color: '#B02E26FF' - id: BrickTileWhiteLineS - decals: - 10: 1,1 - 11: 2,1 - 12: 3,1 - 13: 4,1 - 14: 5,1 - type: DecalGrid - - version: 2 - data: - tiles: - 0,0: - 0: 65535 - 0,1: - 0: 15 - 1,0: - 0: 65535 - 1,1: - 0: 15 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: GasTileOverlay - - type: RadiationGridResistance -- proto: AirlockGlassShuttle - entities: - - uid: 2 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,1.5 - parent: 1 - type: Transform -- proto: APCBasic - entities: - - uid: 3 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,2.5 - parent: 1 - type: Transform -- proto: AtmosDeviceFanTiny - entities: - - uid: 82 - components: - - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 1 - type: Transform -- proto: BedsheetMedical - entities: - - uid: 5 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,1.5 - parent: 1 - type: Transform -- proto: CableApcExtension - entities: - - uid: 6 - components: - - pos: 0.5,2.5 - parent: 1 - type: Transform - - - uid: 7 - components: - - pos: 1.5,2.5 - parent: 1 - type: Transform - - uid: 8 - components: - - pos: 1.5,3.5 - parent: 1 - type: Transform - - uid: 9 - components: - - pos: 2.5,2.5 - parent: 1 - type: Transform - - uid: 10 - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform - - uid: 11 - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform - - uid: 12 - components: - - pos: 5.5,2.5 - parent: 1 - type: Transform - - uid: 13 - components: - - pos: 6.5,2.5 - parent: 1 - type: Transform - - uid: 14 - components: - - pos: 7.5,2.5 - parent: 1 - type: Transform - - - uid: 15 - components: - - pos: 7.5,3.5 - parent: 1 - type: Transform - - - uid: 16 - components: - - pos: 7.5,1.5 - parent: 1 - type: Transform - - - uid: 17 - components: - - pos: 7.5,0.5 - parent: 1 - type: Transform - - - uid: 18 - components: - - pos: 3.5,1.5 - parent: 1 - type: Transform -- proto: CableHV - entities: - - uid: 19 - components: - - pos: 6.5,3.5 - parent: 1 - type: Transform - - uid: 20 - components: - - pos: 7.5,3.5 - parent: 1 - type: Transform - - - uid: 21 - components: - - pos: 7.5,2.5 - parent: 1 - type: Transform - - - uid: 22 - components: - - pos: 7.5,1.5 - parent: 1 - type: Transform - -- proto: CableMV - entities: - - uid: 23 - components: - - pos: 7.5,1.5 - parent: 1 - type: Transform - - - uid: 24 - components: - - pos: 6.5,1.5 - parent: 1 - type: Transform - - uid: 25 - components: - - pos: 5.5,1.5 - parent: 1 - type: Transform - - uid: 26 - components: - - pos: 5.5,2.5 - parent: 1 - type: Transform - - uid: 27 - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform - - uid: 28 - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform - - uid: 29 - components: - - pos: 2.5,2.5 - parent: 1 - type: Transform - - uid: 30 - components: - - pos: 1.5,2.5 - parent: 1 - type: Transform - - uid: 31 - components: - - pos: 0.5,2.5 - parent: 1 - type: Transform - -- proto: ClothingBeltMedicalEMTFilled - entities: - - uid: 33 - components: - - flags: InContainer - type: MetaData - - parent: 32 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ComputerShuttle - entities: - - uid: 34 - components: - - pos: 4.5,3.5 - parent: 1 - type: Transform -- proto: CrateMedicalSupplies - entities: - - uid: 32 - components: - - pos: 1.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1497 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 33 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: DefibrillatorCabinetFilled - entities: - - uid: 35 - components: - - rot: 3.141592653589793 rad - pos: 2.5,0.5 - parent: 1 - type: Transform -- proto: EmergencyRollerBed - entities: - - uid: 4 - components: - - pos: 3.489162,1.4973726 - parent: 1 - type: Transform -- proto: GeneratorWallmountAPU - entities: - - uid: 37 - components: - - pos: 7.5,3.5 - parent: 1 - type: Transform - - uid: 38 - components: - - pos: 6.5,3.5 - parent: 1 - type: Transform -- proto: GravityGeneratorMini - entities: - - uid: 39 - components: - - pos: 6.5,2.5 - parent: 1 - type: Transform -- proto: Grille - entities: - - uid: 40 - components: - - pos: 4.5,4.5 - parent: 1 - type: Transform - - uid: 41 - components: - - pos: 3.5,4.5 - parent: 1 - type: Transform - - uid: 42 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,3.5 - parent: 1 - type: Transform - - uid: 43 - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform - - uid: 44 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 45 - components: - - pos: 5.5,0.5 - parent: 1 - type: Transform - - uid: 46 - components: - - pos: 7.5,2.5 - parent: 1 - type: Transform -- proto: MedicalBed - entities: - - uid: 48 - components: - - pos: 5.5,1.5 - parent: 1 - type: Transform -- proto: MedkitCombatFilled - entities: - - uid: 50 - components: - - pos: 3.5313883,3.537047 - parent: 1 - type: Transform -- proto: Poweredlight - entities: - - uid: 51 - components: - - rot: 3.141592653589793 rad - pos: 1.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - uid: 52 - components: - - pos: 6.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound -- proto: ReinforcedWindow - entities: - - uid: 53 - components: - - pos: 3.5,4.5 - parent: 1 - type: Transform - - uid: 54 - components: - - pos: 1.5,3.5 - parent: 1 - type: Transform - - uid: 55 - components: - - pos: 4.5,4.5 - parent: 1 - type: Transform - - uid: 56 - components: - - pos: 7.5,2.5 - parent: 1 - type: Transform - - uid: 57 - components: - - pos: 5.5,0.5 - parent: 1 - type: Transform - - uid: 58 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 59 - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform -- proto: SmallGyroscopeSecurity - entities: - - uid: 36 - components: - - pos: 6.5,4.5 - parent: 1 - type: Transform -- proto: SubstationWallBasic - entities: - - uid: 61 - components: - - rot: 3.141592653589793 rad - pos: 7.5,1.5 - parent: 1 - type: Transform -- proto: TableGlass - entities: - - uid: 62 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,3.5 - parent: 1 - type: Transform -- proto: Thruster - entities: - - uid: 63 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,4.5 - parent: 1 - type: Transform - - uid: 64 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,4.5 - parent: 1 - type: Transform - - uid: 65 - components: - - pos: 1.5,4.5 - parent: 1 - type: Transform - - uid: 66 - components: - - rot: 3.141592653589793 rad - pos: 7.5,0.5 - parent: 1 - type: Transform -- proto: WallPlastitanium - entities: - - uid: 67 - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform - - uid: 68 - components: - - pos: 0.5,2.5 - parent: 1 - type: Transform - - uid: 69 - components: - - pos: 6.5,0.5 - parent: 1 - type: Transform - - uid: 70 - components: - - pos: 7.5,1.5 - parent: 1 - type: Transform - - uid: 71 - components: - - pos: 7.5,3.5 - parent: 1 - type: Transform - - uid: 72 - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform - - uid: 73 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,3.5 - parent: 1 - type: Transform - - uid: 74 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,0.5 - parent: 1 - type: Transform - - uid: 75 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,4.5 - parent: 1 - type: Transform - - uid: 76 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,4.5 - parent: 1 - type: Transform -- proto: WallPlastitaniumDiagonal - entities: - - uid: 77 - components: - - pos: 0.5,3.5 - parent: 1 - type: Transform - - uid: 78 - components: - - rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 1 - type: Transform - - uid: 79 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,3.5 - parent: 1 - type: Transform - - uid: 80 - components: - - pos: 6.5,1.5 - parent: 1 - type: Transform -- proto: WarpPointShip - entities: - - uid: 81 - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform - - location: Cleric - type: WarpPoint -... diff --git a/Resources/Maps/Shuttles/fighter.yml b/Resources/Maps/Shuttles/fighter.yml deleted file mode 100644 index 34ce31ebb5e..00000000000 --- a/Resources/Maps/Shuttles/fighter.yml +++ /dev/null @@ -1,573 +0,0 @@ -meta: - format: 5 - postmapinit: false -tilemap: - 0: Space - 26: FloorDark - 30: FloorDarkMini - 103: Lattice - 104: Plating -entities: -- proto: "" - entities: - - uid: 1 - components: - - type: MetaData - - pos: -2.5416667,-1.875 - parent: invalid - type: Transform - - chunks: - 0,0: - ind: 0,0 - tiles: ZwAAAGcAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAHgAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAB4AAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAeAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAAAHgAAABoAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAAB4AAAAaAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAAAaAAAAGgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures - - type: OccluderTree - - type: SpreaderGrid - - type: Shuttle - - type: GridPathfinding - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - color: '#B02E26FF' - id: Arrows - decals: - 10: 2,4 - - node: - color: '#B02E26FF' - id: BrickTileSteelCornerNe - decals: - 0: 3,6 - - node: - color: '#B02E26FF' - id: BrickTileSteelCornerNw - decals: - 1: 1,6 - - node: - color: '#B02E26FF' - id: BrickTileSteelCornerSw - decals: - 5: 1,4 - - node: - color: '#B02E26FF' - id: BrickTileSteelLineE - decals: - 2: 3,5 - - node: - color: '#B02E26FF' - id: BrickTileSteelLineN - decals: - 3: 2,6 - - node: - color: '#B02E26FF' - id: BrickTileSteelLineW - decals: - 4: 1,5 - - node: - color: '#B02E26FF' - id: Delivery - decals: - 6: 3,4 - - node: - color: '#B02E26FF' - id: MiniTileSteelEndS - decals: - 9: 2,1 - - node: - color: '#B02E26FF' - id: MiniTileSteelLineE - decals: - 7: 2,2 - 11: 2,3 - - node: - color: '#B02E26FF' - id: MiniTileSteelLineW - decals: - 8: 2,2 - 12: 2,3 - type: DecalGrid - - version: 2 - data: - tiles: - 0,0: - 0: 65535 - 0,1: - 0: 65535 - 1,0: - 0: 4369 - 1,1: - 0: 4369 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: GasTileOverlay - - type: RadiationGridResistance -- proto: AirlockGlassShuttle - entities: - - uid: 2 - components: - - rot: 3.141592653589793 rad - pos: 1.5,7.5 - parent: 1 - type: Transform -- proto: AirlockSecurityGlassLocked - entities: - - uid: 3 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,3.5 - parent: 1 - type: Transform -- proto: APCBasic - entities: - - uid: 4 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,6.5 - parent: 1 - type: Transform -- proto: AtmosDeviceFanTiny - entities: - - uid: 5 - components: - - pos: 1.5,7.5 - parent: 1 - type: Transform -- proto: CableApcExtension - entities: - - uid: 6 - components: - - pos: 0.5,6.5 - parent: 1 - type: Transform - - - uid: 7 - components: - - pos: 1.5,6.5 - parent: 1 - type: Transform - - uid: 8 - components: - - pos: 2.5,6.5 - parent: 1 - type: Transform - - uid: 9 - components: - - pos: 2.5,5.5 - parent: 1 - type: Transform - - uid: 10 - components: - - pos: 2.5,4.5 - parent: 1 - type: Transform - - uid: 11 - components: - - pos: 2.5,3.5 - parent: 1 - type: Transform - - uid: 12 - components: - - pos: 2.5,2.5 - parent: 1 - type: Transform - - uid: 13 - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform - - uid: 14 - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform - - - uid: 15 - components: - - pos: 3.5,1.5 - parent: 1 - type: Transform - -- proto: CableHV - entities: - - uid: 16 - components: - - pos: 1.5,2.5 - parent: 1 - type: Transform - - - uid: 17 - components: - - pos: 2.5,2.5 - parent: 1 - type: Transform - - uid: 18 - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform - - - uid: 70 - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform - -- proto: CableMV - entities: - - uid: 19 - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform - - - uid: 20 - components: - - pos: 2.5,2.5 - parent: 1 - type: Transform - - uid: 21 - components: - - pos: 2.5,3.5 - parent: 1 - type: Transform - - uid: 22 - components: - - pos: 2.5,4.5 - parent: 1 - type: Transform - - uid: 23 - components: - - pos: 2.5,5.5 - parent: 1 - type: Transform - - uid: 24 - components: - - pos: 2.5,6.5 - parent: 1 - type: Transform - - uid: 25 - components: - - pos: 1.5,6.5 - parent: 1 - type: Transform - - uid: 26 - components: - - pos: 0.5,6.5 - parent: 1 - type: Transform - -- proto: ComputerIFF - entities: - - uid: 27 - components: - - pos: 2.5,6.5 - parent: 1 - type: Transform -- proto: ComputerShuttle - entities: - - uid: 28 - components: - - pos: 3.5,6.5 - parent: 1 - type: Transform -- proto: GeneratorWallmountAPU - entities: - - uid: 29 - components: - - pos: 1.5,2.5 - parent: 1 - type: Transform - - uid: 71 - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform -- proto: GravityGeneratorMini - entities: - - uid: 30 - components: - - pos: 4.5,1.5 - parent: 1 - type: Transform -- proto: Grille - entities: - - uid: 31 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,0.5 - parent: 1 - type: Transform - - uid: 32 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,4.5 - parent: 1 - type: Transform - - uid: 33 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 1 - type: Transform - - uid: 34 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,7.5 - parent: 1 - type: Transform - - uid: 35 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,6.5 - parent: 1 - type: Transform - - uid: 36 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,5.5 - parent: 1 - type: Transform -- proto: LockerEvidence - entities: - - uid: 38 - components: - - pos: 1.5,4.5 - parent: 1 - type: Transform -- proto: Poweredlight - entities: - - uid: 39 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound -- proto: PoweredSmallLight - entities: - - uid: 40 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 1 - type: Transform -- proto: ReinforcedWindow - entities: - - uid: 41 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,0.5 - parent: 1 - type: Transform - - uid: 42 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,4.5 - parent: 1 - type: Transform - - uid: 43 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 1 - type: Transform - - uid: 44 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,7.5 - parent: 1 - type: Transform - - uid: 45 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,6.5 - parent: 1 - type: Transform - - uid: 46 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,5.5 - parent: 1 - type: Transform -- proto: SmallGyroscopeSecurity - entities: - - uid: 37 - components: - - pos: 0.5,1.5 - parent: 1 - type: Transform -- proto: Stool - entities: - - uid: 47 - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform -- proto: SubstationWallBasic - entities: - - uid: 48 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 1 - type: Transform -- proto: Thruster - entities: - - uid: 49 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,2.5 - parent: 1 - type: Transform - - uid: 50 - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform - - uid: 51 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 52 - components: - - rot: 3.141592653589793 rad - pos: 0.5,0.5 - parent: 1 - type: Transform -- proto: WallPlastitanium - entities: - - uid: 53 - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform - - uid: 54 - components: - - pos: 1.5,2.5 - parent: 1 - type: Transform - - uid: 55 - components: - - pos: 1.5,3.5 - parent: 1 - type: Transform - - uid: 56 - components: - - pos: 0.5,6.5 - parent: 1 - type: Transform - - uid: 57 - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform - - uid: 58 - components: - - pos: 2.5,7.5 - parent: 1 - type: Transform - - uid: 59 - components: - - pos: 4.5,7.5 - parent: 1 - type: Transform - - uid: 60 - components: - - pos: 3.5,3.5 - parent: 1 - type: Transform - - uid: 61 - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform - - uid: 62 - components: - - pos: 3.5,1.5 - parent: 1 - type: Transform - - uid: 63 - components: - - pos: 4.5,4.5 - parent: 1 - type: Transform -- proto: WallPlastitaniumDiagonal - entities: - - uid: 64 - components: - - pos: 3.5,4.5 - parent: 1 - type: Transform - - uid: 65 - components: - - rot: 3.141592653589793 rad - pos: 4.5,3.5 - parent: 1 - type: Transform - - uid: 66 - components: - - rot: 3.141592653589793 rad - pos: 3.5,0.5 - parent: 1 - type: Transform - - uid: 67 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,0.5 - parent: 1 - type: Transform - - uid: 68 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 1 - type: Transform -- proto: WallWeaponCapacitorRecharger - entities: - - uid: 69 - components: - - rot: 3.141592653589793 rad - pos: 2.5,7.5 - parent: 1 - type: Transform -- proto: WarpPointShip - entities: - - uid: 72 - components: - - pos: 2.5,5.5 - parent: 1 - type: Transform - - location: Fighter - type: WarpPoint -... diff --git a/Resources/Maps/Shuttles/rogue.yml b/Resources/Maps/Shuttles/rogue.yml deleted file mode 100644 index f5f54af2d7b..00000000000 --- a/Resources/Maps/Shuttles/rogue.yml +++ /dev/null @@ -1,683 +0,0 @@ -meta: - format: 5 - postmapinit: false -tilemap: - 0: Space - 30: FloorDarkMini - 103: Lattice - 104: Plating -entities: -- proto: "" - entities: - - uid: 1 - components: - - type: MetaData - - pos: -3.59375,-1.71875 - parent: invalid - type: Transform - - chunks: - 0,0: - ind: 0,0 - tiles: ZwAAAGcAAABoAAAAHgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAHgAAAB4AAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAAAeAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAHgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures - - type: OccluderTree - - type: SpreaderGrid - - type: Shuttle - - type: GridPathfinding - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - color: '#B02E26FF' - id: MiniTileSteelEndN - decals: - 0: 3,3 - - node: - color: '#B02E26FF' - id: MiniTileSteelEndS - decals: - 1: 3,1 - - node: - color: '#B02E26FF' - id: MiniTileSteelLineE - decals: - 2: 3,2 - - node: - color: '#B02E26FF' - id: MiniTileSteelLineW - decals: - 3: 3,2 - type: DecalGrid - - version: 2 - data: - tiles: - 0,0: - 0: 65535 - 0,1: - 0: 65535 - 1,0: - 0: 4369 - 1,1: - 0: 4369 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: GasTileOverlay - - type: RadiationGridResistance -- proto: AirlockExternal - entities: - - uid: 86 - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform -- proto: AirlockGlassShuttle - entities: - - uid: 85 - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform -- proto: APCBasic - entities: - - uid: 60 - components: - - rot: 3.141592653589793 rad - pos: 2.5,0.5 - parent: 1 - type: Transform -- proto: AtmosDeviceFanTiny - entities: - - uid: 83 - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform - - uid: 84 - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform -- proto: CableApcExtension - entities: - - uid: 68 - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform - - - uid: 69 - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform - - - uid: 70 - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform - - - uid: 71 - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform - - uid: 72 - components: - - pos: 3.5,1.5 - parent: 1 - type: Transform - - uid: 73 - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform - - uid: 74 - components: - - pos: 3.5,3.5 - parent: 1 - type: Transform - - uid: 75 - components: - - pos: 3.5,4.5 - parent: 1 - type: Transform - - - uid: 76 - components: - - pos: 3.5,5.5 - parent: 1 - type: Transform - - - uid: 77 - components: - - pos: 4.5,5.5 - parent: 1 - type: Transform - - - uid: 78 - components: - - pos: 4.5,6.5 - parent: 1 - type: Transform - - - uid: 79 - components: - - pos: 4.5,7.5 - parent: 1 - type: Transform - - - uid: 91 - components: - - pos: 3.5,7.5 - parent: 1 - type: Transform - - - uid: 92 - components: - - pos: 2.5,7.5 - parent: 1 - type: Transform - - - uid: 93 - components: - - pos: 1.5,7.5 - parent: 1 - type: Transform - - - uid: 94 - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform - -- proto: CableHV - entities: - - uid: 61 - components: - - pos: 4.5,3.5 - parent: 1 - type: Transform - - - uid: 62 - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform - - - uid: 63 - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform - - uid: 64 - components: - - pos: 2.5,2.5 - parent: 1 - type: Transform - -- proto: CableMV - entities: - - uid: 65 - components: - - pos: 2.5,2.5 - parent: 1 - type: Transform - - - uid: 66 - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform - - uid: 67 - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform - -- proto: Catwalk - entities: - - uid: 17 - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform - - uid: 18 - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform - - uid: 19 - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform - - uid: 20 - components: - - pos: 1.5,2.5 - parent: 1 - type: Transform - - uid: 21 - components: - - pos: 1.5,3.5 - parent: 1 - type: Transform - - uid: 22 - components: - - pos: 1.5,4.5 - parent: 1 - type: Transform - - uid: 23 - components: - - pos: 1.5,5.5 - parent: 1 - type: Transform - - uid: 24 - components: - - pos: 1.5,6.5 - parent: 1 - type: Transform - - uid: 25 - components: - - pos: 1.5,7.5 - parent: 1 - type: Transform - - uid: 26 - components: - - pos: 0.5,1.5 - parent: 1 - type: Transform - - uid: 27 - components: - - pos: 0.5,2.5 - parent: 1 - type: Transform - - uid: 28 - components: - - pos: 0.5,3.5 - parent: 1 - type: Transform - - uid: 29 - components: - - pos: 0.5,4.5 - parent: 1 - type: Transform - - uid: 30 - components: - - pos: 0.5,5.5 - parent: 1 - type: Transform - - uid: 31 - components: - - pos: 0.5,6.5 - parent: 1 - type: Transform - - uid: 32 - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform - - uid: 33 - components: - - pos: 2.5,5.5 - parent: 1 - type: Transform - - uid: 34 - components: - - pos: 2.5,6.5 - parent: 1 - type: Transform - - uid: 35 - components: - - pos: 3.5,5.5 - parent: 1 - type: Transform - - uid: 36 - components: - - pos: 4.5,5.5 - parent: 1 - type: Transform - - uid: 37 - components: - - pos: 4.5,6.5 - parent: 1 - type: Transform - - uid: 38 - components: - - pos: 3.5,6.5 - parent: 1 - type: Transform - - uid: 39 - components: - - pos: 3.5,7.5 - parent: 1 - type: Transform - - uid: 40 - components: - - pos: 4.5,7.5 - parent: 1 - type: Transform - - uid: 41 - components: - - pos: 2.5,7.5 - parent: 1 - type: Transform - - uid: 80 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,4.5 - parent: 1 - type: Transform - - uid: 81 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,4.5 - parent: 1 - type: Transform -- proto: ChairPilotSeat - entities: - - uid: 87 - components: - - rot: 3.141592653589793 rad - pos: 3.5,2.5 - parent: 1 - type: Transform -- proto: ComputerShuttle - entities: - - uid: 82 - components: - - pos: 3.5,3.5 - parent: 1 - type: Transform -- proto: GeneratorWallmountAPU - entities: - - uid: 14 - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform - - uid: 58 - components: - - pos: 4.5,3.5 - parent: 1 - type: Transform -- proto: GravityGeneratorMini - entities: - - uid: 57 - components: - - pos: 4.5,5.5 - parent: 1 - type: Transform - missingComponents: - - PointLight -- proto: Grille - entities: - - uid: 3 - components: - - pos: 4.5,1.5 - parent: 1 - type: Transform - - uid: 6 - components: - - pos: 2.5,3.5 - parent: 1 - type: Transform - - uid: 7 - components: - - pos: 3.5,4.5 - parent: 1 - type: Transform -- proto: Poweredlight - entities: - - uid: 16 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - links: - - 95 - type: DeviceLinkSink -- proto: PoweredSmallLight - entities: - - uid: 88 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 1 - type: Transform - - links: - - 95 - type: DeviceLinkSink - - uid: 89 - components: - - pos: 0.5,6.5 - parent: 1 - type: Transform - - links: - - 95 - type: DeviceLinkSink - - uid: 90 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,7.5 - parent: 1 - type: Transform - - links: - - 95 - type: DeviceLinkSink -- proto: Railing - entities: - - uid: 45 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,1.5 - parent: 1 - type: Transform - - uid: 46 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 1 - type: Transform - - uid: 47 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,3.5 - parent: 1 - type: Transform - - uid: 48 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,4.5 - parent: 1 - type: Transform - - uid: 49 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,5.5 - parent: 1 - type: Transform - - uid: 50 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,6.5 - parent: 1 - type: Transform - - uid: 51 - components: - - rot: 3.141592653589793 rad - pos: 1.5,7.5 - parent: 1 - type: Transform - - uid: 52 - components: - - rot: 3.141592653589793 rad - pos: 3.5,7.5 - parent: 1 - type: Transform - - uid: 53 - components: - - rot: 3.141592653589793 rad - pos: 2.5,7.5 - parent: 1 - type: Transform -- proto: ReinforcedWindow - entities: - - uid: 5 - components: - - pos: 2.5,3.5 - parent: 1 - type: Transform - - uid: 13 - components: - - pos: 3.5,4.5 - parent: 1 - type: Transform - - uid: 15 - components: - - pos: 4.5,1.5 - parent: 1 - type: Transform -- proto: SignalButton - entities: - - uid: 95 - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform - - linkedPorts: - 89: - - Pressed: Toggle - 90: - - Pressed: Toggle - 88: - - Pressed: Toggle - 16: - - Pressed: Toggle - type: DeviceLinkSource -- proto: SmallGyroscopeSecurity - entities: - - uid: 56 - components: - - pos: 3.5,5.5 - parent: 1 - type: Transform -- proto: SubstationWallBasic - entities: - - uid: 59 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,2.5 - parent: 1 - type: Transform -- proto: Thruster - entities: - - uid: 43 - components: - - rot: 3.141592653589793 rad - pos: 1.5,0.5 - parent: 1 - type: Transform - - uid: 44 - components: - - pos: 4.5,7.5 - parent: 1 - type: Transform - - uid: 54 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,0.5 - parent: 1 - type: Transform - - uid: 55 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,6.5 - parent: 1 - type: Transform -- proto: WallPlastitanium - entities: - - uid: 2 - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform - - uid: 4 - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform - - uid: 9 - components: - - pos: 4.5,3.5 - parent: 1 - type: Transform - - uid: 11 - components: - - pos: 2.5,2.5 - parent: 1 - type: Transform - - uid: 12 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 42 - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform -- proto: WallPlastitaniumDiagonal - entities: - - uid: 8 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,4.5 - parent: 1 - type: Transform - - uid: 10 - components: - - pos: 2.5,4.5 - parent: 1 - type: Transform -- proto: WarpPointShip - entities: - - uid: 96 - components: - - pos: 2.5,5.5 - parent: 1 - type: Transform - - location: Rogue - type: WarpPoint -... diff --git a/Resources/Maps/_NF/Shuttles/Security/cleric.yml b/Resources/Maps/_NF/Shuttles/Security/cleric.yml new file mode 100644 index 00000000000..fd40783cded --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/Security/cleric.yml @@ -0,0 +1,817 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 88: FloorShuttleWhite + 124: Lattice + 125: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: 0.84375,0.34375 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: WAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 11: -3,-1 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 12: -4,-1 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelCornerNe + decals: + 3: 3,1 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelCornerNw + decals: + 0: -1,1 + 2: -2,0 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelCornerSe + decals: + 1: 3,0 + 13: 0,-1 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelCornerSw + decals: + 4: -2,-1 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelInnerNw + decals: + 10: -1,0 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelInnerSe + decals: + 15: 0,0 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelLineN + decals: + 5: 0,1 + 6: 1,1 + 7: 2,1 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelLineS + decals: + 8: 2,0 + 9: -1,-1 + 14: 1,0 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 4095 + 1,0: + 0: 273 + -1,0: + 0: 3311 + 1: 784 + 0,-1: + 0: 62208 + 1: 3072 + 1,-1: + 1: 256 + 0: 4096 + -1,-1: + 0: 65280 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockGlassShuttle + entities: + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 44 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 105 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 +- proto: BedsheetMedical + entities: + - uid: 47 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 82 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 +- proto: CableHV + entities: + - uid: 72 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 +- proto: CableMV + entities: + - uid: 76 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 62 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + - uid: 64 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 66 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 58 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 +- proto: ComputerTabletopCrewMonitoring + entities: + - uid: 59 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 +- proto: CrateMedicalSupplies + entities: + - uid: 51 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 49 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 +- proto: EmergencyRollerBedSpawnFolded + entities: + - uid: 56 + components: + - type: Transform + pos: 1.4651704,1.6325955 + parent: 1 +- proto: GeneratorWallmountAPU + entities: + - uid: 68 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 30 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: Grille + entities: + - uid: 31 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 +- proto: LockerParamedicFilledHardsuit + entities: + - uid: 52 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 +- proto: MedicalBed + entities: + - uid: 45 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 +- proto: MedkitCombatFilled + entities: + - uid: 57 + components: + - type: Transform + pos: 1.5068371,1.5180122 + parent: 1 +- proto: PlastitaniumWindow + entities: + - uid: 11 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 16 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 17 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 60 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + - uid: 102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 103 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 +- proto: SmallGyroscopeSecurity + entities: + - uid: 29 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 70 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 53 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 +- proto: ThrusterSecurity + entities: + - uid: 25 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 27 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 28 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 +- proto: VendingMachineWallMedical + entities: + - uid: 50 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 +- proto: WallPlastitanium + entities: + - uid: 2 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 3 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 12 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 +- proto: WarpPointShip + entities: + - uid: 104 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 42 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 +... diff --git a/Resources/Maps/_NF/Shuttles/Security/empress.yml b/Resources/Maps/_NF/Shuttles/Security/empress.yml new file mode 100644 index 00000000000..9ccd55a53cf --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/Security/empress.yml @@ -0,0 +1,18070 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 30: FloorDark + 35: FloorDarkMono + 37: FloorDarkPavement + 45: FloorFreezer + 46: FloorGlass + 55: FloorGreenCircuit + 58: FloorHullReinforced + 61: FloorKitchen + 65: FloorMetalDiamond + 68: FloorMiningDark + 76: FloorPlastic + 107: FloorTechMaint + 111: FloorWhite + 118: FloorWhitePavement + 120: FloorWhitePlastic + 121: FloorWood + 124: Lattice + 125: Plating + 129: PlatingSnow +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.46484375,0.90625 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: bwAAAAAAbwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHgAAAAAAHgAAAAAALgAAAAAAbwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHgAAAAAAHgAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHgAAAAAAHgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAIwAAAAAAHgAAAAAAIwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAHgAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAIwAAAAAATAAAAAAAIwAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: JQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALgAAAAAALgAAAAAALgAAAAAAJQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAALgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALgAAAAAALgAAAAAALgAAAAAAJQAAAAAAfQAAAAAAbwAAAAAALgAAAAAALgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALgAAAAAALgAAAAAALgAAAAAAJQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAALgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: fQAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfQAAAAAAJQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAIwAAAAAAfQAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfQAAAAAAfQAAAAAALQAAAAAALQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAARAAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAfQAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAfQAAAAAAeQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAARAAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAIwAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALQAAAAAALQAAAAAALQAAAAAAfQAAAAAAfQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAATAAAAAAAIwAAAAAATAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAATAAAAAAAIwAAAAAATAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAeAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: LgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAHgAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAHgAAAAAAeAAAAAAAfQAAAAAATAAAAAAAIwAAAAAATAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAATAAAAAAAIwAAAAAATAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAbwAAAAAAbwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAATAAAAAAAdgAAAAAAdgAAAAAAfQAAAAAAfAAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAfAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAfQAAAAAAdgAAAAAAdgAAAAAAfQAAAAAAfAAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAATAAAAAAAdgAAAAAAdgAAAAAAfQAAAAAAfQAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAIwAAAAAAJQAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAfAAAAAAAfQAAAAAALQAAAAAALQAAAAAATAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAfAAAAAAAfQAAAAAALQAAAAAALQAAAAAALQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAfAAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAfQAAAAAAfQAAAAAATAAAAAAAfQAAAAAATAAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAAAAAAAAA + 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: '#FFFF00FF' + id: 1 + decals: + 190: 11,-1 + - node: + color: '#FFFF00FF' + id: 2 + decals: + 154: 5,-1 + - node: + color: '#FFFF00FF' + id: 3 + decals: + 155: -9,-1 + - node: + color: '#FFFF00FF' + id: 4 + decals: + 156: -15,-1 + - node: + color: '#FFFF00FF' + id: Bot + decals: + 132: 5,-1 + 158: -9,-1 + 159: -15,-1 + 189: 11,-1 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 74: -25,5 + 75: -24,-9 + 76: 22,-9 + 77: 23,5 + - node: + color: '#5C7D4DFF' + id: BotGreyscale + decals: + 201: 1,6 + - node: + color: '#5C7D4DFF' + id: BotLeftGreyscale + decals: + 202: 1,7 + 203: -9,-2 + 204: -9,-3 + 205: -9,-4 + 206: -15,-2 + 207: -15,-3 + - node: + color: '#5C7D4DFF' + id: BoxGreyscale + decals: + 78: -20,-3 + 79: -20,-4 + 80: -20,-5 + - node: + color: '#5C7D4DFF' + id: BrickCornerOverlayNW + decals: + 93: 9,8 + 103: 3,1 + - node: + color: '#5C7D4DFF' + id: BrickCornerOverlaySE + decals: + 110: 9,-2 + 111: 15,-2 + - node: + color: '#5C7D4DFF' + id: BrickCornerOverlaySW + decals: + 112: 13,-2 + 113: 7,-2 + - node: + color: '#5C7D4DFF' + id: BrickEndOverlayS + decals: + 106: 3,-2 + - node: + color: '#5C7D4DFF' + id: BrickLineOverlayE + decals: + 116: 15,-1 + 117: 15,0 + 118: 15,1 + 119: 15,2 + 120: 15,3 + - node: + color: '#5C7D4DFF' + id: BrickLineOverlayN + decals: + 92: 10,8 + 98: 8,1 + 99: 7,1 + 100: 6,1 + 101: 5,1 + 102: 4,1 + - node: + color: '#5C7D4DFF' + id: BrickLineOverlayS + decals: + 107: 4,-1 + 108: 5,-1 + 109: 6,-1 + 114: 8,-2 + 115: 14,-2 + 176: 10,-1 + 177: 11,-1 + 178: 12,-1 + - node: + color: '#5C7D4DFF' + id: BrickLineOverlayW + decals: + 94: 9,7 + 95: 9,6 + 96: 9,5 + 97: 9,4 + 104: 3,0 + 105: 3,-1 + 174: 9,3 + 175: 9,2 + - node: + color: '#5C7D4DFF' + id: BrickTileSteelCornerNe + decals: + 122: 7,4 + 182: -1,8 + - node: + color: '#5C7D4DFF' + id: BrickTileSteelCornerNw + decals: + 123: 5,4 + 179: -4,8 + - node: + color: '#5C7D4DFF' + id: BrickTileSteelCornerSe + decals: + 125: 7,3 + 180: -1,6 + - node: + color: '#5C7D4DFF' + id: BrickTileSteelCornerSw + decals: + 124: 5,3 + 181: -4,6 + - node: + color: '#5C7D4DFF' + id: BrickTileSteelInnerNe + decals: + 15: -3,-7 + - node: + color: '#5C7D4DFF' + id: BrickTileSteelInnerNw + decals: + 14: 1,-7 + - node: + color: '#5C7D4DFF' + id: BrickTileSteelInnerSe + decals: + 13: -3,-3 + - node: + color: '#5C7D4DFF' + id: BrickTileSteelInnerSw + decals: + 12: 1,-3 + - node: + color: '#5C7D4DFF' + id: BrickTileSteelLineE + decals: + 9: -3,-6 + 10: -3,-5 + 11: -3,-4 + 188: -1,7 + - node: + color: '#5C7D4DFF' + id: BrickTileSteelLineN + decals: + 6: -2,-7 + 7: -1,-7 + 8: 0,-7 + 127: 6,4 + 183: -3,8 + 184: -2,8 + - node: + color: '#5C7D4DFF' + id: BrickTileSteelLineS + decals: + 3: -2,-3 + 4: -1,-3 + 5: 0,-3 + 126: 6,3 + 185: -3,6 + 186: -2,6 + - node: + color: '#5C7D4DFF' + id: BrickTileSteelLineW + decals: + 0: 1,-6 + 1: 1,-5 + 2: 1,-4 + 187: -4,7 + - node: + color: '#5C7D4DFF' + id: DeliveryGreyscale + decals: + 81: -20,-7 + 121: 7,5 + 200: 1,5 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 61: 5,-4 + 62: 11,-4 + 63: -9,-4 + 64: -15,-4 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 239: 24,-9 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 65: 7,10 + 66: 5,10 + 67: 22,6 + 68: -24,6 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 69: -26,-9 + - node: + color: '#5C7D4DFF' + id: LoadingAreaGreyscale + decals: + 82: -21,-9 + 83: -22,-9 + - node: + color: '#5C7D4DFF' + id: MiniTileDarkInnerNe + decals: + 229: -11,0 + - node: + color: '#5C7D4DFF' + id: MiniTileDarkInnerNw + decals: + 228: -13,0 + - node: + color: '#5C7D4DFF' + id: MiniTileDarkInnerSe + decals: + 226: -11,-1 + - node: + color: '#5C7D4DFF' + id: MiniTileDarkInnerSw + decals: + 227: -13,-1 + - node: + color: '#5C7D4DFF' + id: MiniTileDarkLineE + decals: + 208: -11,1 + 209: -10,0 + 210: -10,-1 + 211: -11,-2 + - node: + color: '#5C7D4DFF' + id: MiniTileDarkLineN + decals: + 216: -13,1 + 217: -12,1 + 218: -11,1 + 219: -14,0 + 220: -10,0 + - node: + color: '#5C7D4DFF' + id: MiniTileDarkLineS + decals: + 221: -10,-1 + 222: -11,-2 + 223: -12,-2 + 224: -13,-2 + 225: -14,-1 + - node: + color: '#5C7D4DFF' + id: MiniTileDarkLineW + decals: + 212: -13,1 + 213: -14,0 + 214: -14,-1 + 215: -13,-2 + - node: + color: '#5C7D4DFF' + id: MiniTileInnerOverlayNE + decals: + 233: 9,-1 + - node: + color: '#5C7D4DFF' + id: MiniTileInnerOverlayNW + decals: + 231: 14,-1 + 238: 9,1 + - node: + color: '#5C7D4DFF' + id: MiniTileInnerOverlaySE + decals: + 230: 9,3 + 234: 3,-1 + 236: 9,-1 + - node: + color: '#5C7D4DFF' + id: MiniTileInnerOverlaySW + decals: + 232: 14,3 + 235: 7,-1 + 237: 13,-1 + - node: + color: '#5C7D4DFF' + id: MiniTileLineOverlayE + decals: + 171: 9,0 + 172: 9,1 + 173: 9,2 + - node: + color: '#5C7D4DFF' + id: MiniTileLineOverlayN + decals: + 167: 10,-1 + 168: 11,-1 + 169: 12,-1 + 170: 13,-1 + - node: + color: '#5C7D4DFF' + id: MiniTileLineOverlayS + decals: + 163: 10,3 + 164: 11,3 + 165: 12,3 + 166: 13,3 + - node: + color: '#5C7D4DFF' + id: MiniTileLineOverlayW + decals: + 160: 14,0 + 161: 14,1 + 162: 14,2 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelInnerNe + decals: + 157: -9,-1 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelInnerNw + decals: + 29: -5,-1 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelInnerSe + decals: + 28: -9,3 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelInnerSw + decals: + 30: -5,3 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelLineE + decals: + 25: -9,0 + 26: -9,1 + 27: -9,2 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelLineN + decals: + 22: -8,-1 + 23: -7,-1 + 24: -6,-1 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelLineS + decals: + 19: -8,3 + 20: -7,3 + 21: -6,3 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelLineW + decals: + 16: -5,0 + 17: -5,1 + 18: -5,2 + - node: + color: '#5C7D4DFF' + id: MiniTileWhiteCornerNe + decals: + 87: -2,0 + - node: + color: '#5C7D4DFF' + id: MiniTileWhiteCornerNw + decals: + 86: 0,0 + - node: + color: '#5C7D4DFF' + id: MiniTileWhiteCornerSe + decals: + 84: -2,2 + - node: + color: '#5C7D4DFF' + id: MiniTileWhiteCornerSw + decals: + 85: 0,2 + - node: + color: '#5C7D4DFF' + id: MiniTileWhiteInnerNe + decals: + 198: -3,0 + 199: -2,-1 + - node: + color: '#5C7D4DFF' + id: MiniTileWhiteInnerNw + decals: + 194: 0,-1 + 195: 1,0 + - node: + color: '#5C7D4DFF' + id: MiniTileWhiteInnerSe + decals: + 89: -2,3 + 197: -3,2 + - node: + color: '#5C7D4DFF' + id: MiniTileWhiteInnerSw + decals: + 90: 0,3 + 91: 0,3 + 196: 1,2 + - node: + color: '#5C7D4DFF' + id: MiniTileWhiteLineE + decals: + 192: -3,1 + - node: + color: '#5C7D4DFF' + id: MiniTileWhiteLineN + decals: + 191: -1,-1 + - node: + color: '#5C7D4DFF' + id: MiniTileWhiteLineS + decals: + 88: -1,3 + - node: + color: '#5C7D4DFF' + id: MiniTileWhiteLineW + decals: + 193: 1,1 + - node: + color: '#5C7D4DFF' + id: OldConcreteTrimInnerNe + decals: + 54: -3,-18 + - node: + color: '#5C7D4DFF' + id: OldConcreteTrimInnerNw + decals: + 52: 1,-18 + - node: + color: '#5C7D4DFF' + id: OldConcreteTrimInnerSe + decals: + 51: -3,-10 + - node: + color: '#5C7D4DFF' + id: OldConcreteTrimInnerSw + decals: + 53: 1,-10 + - node: + color: '#5C7D4DFF' + id: OldConcreteTrimLineE + decals: + 44: -3,-17 + 45: -3,-16 + 46: -3,-15 + 47: -3,-14 + 48: -3,-13 + 49: -3,-12 + 50: -3,-11 + - node: + color: '#5C7D4DFF' + id: OldConcreteTrimLineN + decals: + 34: -2,-18 + 35: -1,-18 + 36: 0,-18 + - node: + color: '#5C7D4DFF' + id: OldConcreteTrimLineS + decals: + 31: -2,-10 + 32: -1,-10 + 33: 0,-10 + - node: + color: '#5C7D4DFF' + id: OldConcreteTrimLineW + decals: + 37: 1,-17 + 38: 1,-16 + 39: 1,-15 + 40: 1,-14 + 41: 1,-13 + 42: 1,-12 + 43: 1,-11 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 55: 5,9 + 56: 7,9 + 57: -15,-3 + 58: -9,-3 + 59: 5,-3 + 60: 11,-3 + 70: 23,-9 + 71: 22,5 + 72: -25,-9 + 73: -24,5 + 240: 23,-9 + - node: + color: '#FFFF00FF' + id: WarnLineGreyscaleE + decals: + 135: -15,6 + 136: -12,6 + 137: -9,6 + 143: -18,2 + 144: -18,3 + - node: + color: '#FFFF00FF' + id: WarnLineGreyscaleN + decals: + 145: -13,8 + 146: -12,8 + 147: -10,9 + 148: -9,9 + 149: -7,9 + 150: -6,9 + 151: -15,8 + 152: -17,8 + 153: -19,8 + - node: + color: '#FFFF00FF' + id: WarnLineGreyscaleS + decals: + 128: -7,5 + 129: 5,6 + 130: 6,6 + 131: 7,6 + 133: -10,5 + 134: -13,5 + - node: + color: '#FFFF00FF' + id: WarnLineGreyscaleW + decals: + 138: -13,6 + 139: -10,6 + 140: -7,6 + 141: -16,2 + 142: -16,3 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + -2,0: + 0: 65535 + -1,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 255 + 1: 3072 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 4095 + 2,0: + 0: 65535 + 2,1: + 0: 65535 + 2,2: + 0: 511 + 1: 1536 + 3,0: + 0: 65535 + 3,1: + 0: 65535 + 3,2: + 0: 255 + -4,0: + 0: 65535 + -4,1: + 0: 65535 + -4,2: + 0: 255 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 3839 + 1: 256 + -2,1: + 0: 65535 + -2,2: + 0: 4095 + -1,1: + 0: 65535 + -1,2: + 0: 255 + 1: 256 + -8,0: + 0: 65535 + -8,1: + 0: 3142 + 1: 32800 + 2: 136 + -8,2: + 1: 8 + -7,0: + 0: 65535 + -7,1: + 0: 4061 + 1: 61440 + 3: 34 + -7,2: + 1: 15 + -6,0: + 0: 65535 + -6,1: + 0: 61439 + 1: 4096 + -6,2: + 1: 1 + 0: 206 + -5,0: + 0: 65535 + -5,1: + 0: 65535 + -5,2: + 0: 255 + 4,0: + 0: 65535 + 4,1: + 0: 65535 + 4,2: + 0: 255 + 5,0: + 0: 65535 + 5,1: + 0: 16383 + 1: 49152 + 5,2: + 0: 19 + 1: 12 + 6,0: + 0: 65535 + 6,1: + 0: 4095 + 1: 61440 + 6,2: + 1: 15 + 7,0: + 0: 14199 + 1: 16384 + 7,1: + 0: 307 + -4,-1: + 0: 65527 + 1: 8 + -3,-1: + 1: 3 + 0: 65532 + -2,-1: + 0: 65535 + -1,-4: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + -1,-5: + 0: 65520 + 0,-5: + 0: 30576 + 0,-4: + 0: 30583 + 0,-3: + 0: 30583 + 0,-2: + 0: 30583 + 0,-1: + 0: 65527 + 1: 8 + 1,-1: + 0: 65527 + 1: 8 + 2,-1: + 1: 3 + 0: 65532 + 3,-1: + 0: 65521 + 1: 14 + -8,-1: + 0: 65535 + -8,-2: + 0: 61064 + -7,-3: + 1: 13311 + 0: 52224 + -7,-2: + 0: 65535 + -7,-1: + 0: 65535 + -7,-4: + 1: 52224 + -6,-4: + 1: 61696 + -6,-3: + 1: 31 + 0: 65504 + -6,-2: + 0: 65535 + -6,-1: + 0: 65535 + -5,-4: + 1: 28672 + -5,-3: + 1: 26215 + 0: 4368 + -5,-2: + 0: 30583 + -5,-1: + 0: 65527 + 1: 8 + 4,-4: + 1: 61440 + 4,-3: + 1: 13119 + 0: 52416 + 4,-2: + 0: 65535 + 4,-1: + 0: 65535 + 5,-4: + 1: 64512 + 5,-3: + 1: 207 + 0: 65328 + 5,-2: + 0: 65535 + 5,-1: + 0: 65535 + 6,-4: + 1: 4352 + 6,-3: + 1: 26231 + 0: 4352 + 6,-2: + 0: 65535 + 6,-1: + 0: 65535 + 7,-2: + 0: 13056 + 7,-1: + 0: 30583 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirAlarm + entities: + - uid: 1779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,1.5 + parent: 1 + - type: DeviceList + devices: + - 1820 + - 1797 + - 1821 + - 1798 + - 1822 + - 1799 + - 1800 + - 1823 + - 1801 + - type: AtmosDevice + joinedGrid: 1 + - uid: 1780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 1 + - type: DeviceList + devices: + - 1816 + - 1834 + - 1833 + - 1810 + - 1811 + - 1835 + - 1836 + - 1812 + - 1838 + - 1813 + - 1814 + - 1837 + - 1815 + - 2649 + - type: AtmosDevice + joinedGrid: 1 +- proto: AirCanister + entities: + - uid: 741 + components: + - type: Transform + pos: -23.5,3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: Airlock + entities: + - uid: 972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-8.5 + parent: 1 +- proto: AirlockBrigGlassLocked + entities: + - uid: 88 + components: + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 559 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 673 + components: + - type: Transform + pos: -15.5,4.5 + parent: 1 +- proto: AirlockEngineeringGlass + entities: + - uid: 677 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 1 +- proto: AirlockExternalGlassLocked + entities: + - uid: 638 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 639 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1 + - uid: 679 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 1 + - uid: 680 + components: + - type: Transform + pos: -23.5,6.5 + parent: 1 + - uid: 681 + components: + - type: Transform + pos: 22.5,6.5 + parent: 1 + - uid: 682 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 1 +- proto: AirlockExternalLocked + entities: + - uid: 116 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 1 + - uid: 652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-1.5 + parent: 1 + - uid: 691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-1.5 + parent: 1 +- proto: AirlockGlass + entities: + - uid: 1739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,5.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 53 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1 +- proto: AirlockHeadOfSecurityLocked + entities: + - uid: 1064 + components: + - type: Transform + pos: 24.5,2.5 + parent: 1 +- proto: AirlockMedicalGlass + entities: + - uid: 678 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 1 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 667 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 668 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 669 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 670 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 671 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 1 + - uid: 688 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2538 +- proto: AirlockSecurityLocked + entities: + - uid: 660 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 1 + - uid: 661 + components: + - type: Transform + pos: -24.5,4.5 + parent: 1 + - uid: 662 + components: + - type: Transform + pos: 23.5,4.5 + parent: 1 + - uid: 663 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 1 + - uid: 664 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 665 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 676 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 1 + - uid: 1059 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 1 + - uid: 1060 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 1 + - uid: 1061 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 1 + - uid: 1062 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 1 + - uid: 1063 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 1 +- proto: AmeController + entities: + - uid: 713 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 1 + - type: AmeController + injecting: True + - type: ContainerContainer + containers: + AmeFuel: !type:ContainerSlot + showEnts: False + occludes: True + ent: 135 +- proto: AmeJar + entities: + - uid: 135 + components: + - type: Transform + parent: 713 + - type: Physics + canCollide: False + - uid: 2546 + components: + - type: Transform + pos: -26.602339,-0.56223416 + parent: 1 + - uid: 2547 + components: + - type: Transform + pos: -26.430464,-0.48410916 + parent: 1 + - uid: 2548 + components: + - type: Transform + pos: -26.274214,-0.39035916 + parent: 1 +- proto: AmeShielding + entities: + - uid: 287 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 1 + - type: PointLight + radius: 1 + enabled: True + - uid: 297 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 1 + - type: PointLight + radius: 1 + enabled: True + - uid: 298 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 1604 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 1 + - uid: 1605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-3.5 + parent: 1 + - uid: 1606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-1.5 + parent: 1 + - uid: 1608 + components: + - type: Transform + pos: -13.5,4.5 + parent: 1 + - uid: 1681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - uid: 1684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1 + - uid: 1692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-4.5 + parent: 1 + - uid: 1702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 1 + - uid: 2152 + components: + - type: Transform + pos: 18.5,4.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 1 + - uid: 457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 1 + - uid: 458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,6.5 + parent: 1 + - uid: 459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-8.5 + parent: 1 + - uid: 460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,6.5 + parent: 1 + - uid: 461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-8.5 + parent: 1 + - uid: 630 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 1 + - uid: 631 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1 + - uid: 633 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 657 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 1826 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 1 + - uid: 1945 + components: + - type: Transform + pos: -27.5,8.5 + parent: 1 + - uid: 1946 + components: + - type: Transform + pos: -28.5,7.5 + parent: 1 + - uid: 1947 + components: + - type: Transform + pos: -28.5,8.5 + parent: 1 + - uid: 1987 + components: + - type: Transform + pos: -27.5,7.5 + parent: 1 + - uid: 1988 + components: + - type: Transform + pos: -26.5,8.5 + parent: 1 + - uid: 1989 + components: + - type: Transform + pos: -26.5,7.5 + parent: 1 + - uid: 1990 + components: + - type: Transform + pos: -25.5,8.5 + parent: 1 + - uid: 1991 + components: + - type: Transform + pos: -25.5,7.5 + parent: 1 + - uid: 1992 + components: + - type: Transform + pos: -24.5,8.5 + parent: 1 + - uid: 1993 + components: + - type: Transform + pos: -24.5,7.5 + parent: 1 + - uid: 1994 + components: + - type: Transform + pos: -23.5,8.5 + parent: 1 + - uid: 1995 + components: + - type: Transform + pos: -23.5,7.5 + parent: 1 + - uid: 1996 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 1 + - uid: 1997 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 1 + - uid: 1998 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 1 + - uid: 1999 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 1 + - uid: 2000 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 1 + - uid: 2001 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 1 + - uid: 2002 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 1 + - uid: 2003 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 1 + - uid: 2004 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 1 + - uid: 2005 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 1 + - uid: 2006 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 1 + - uid: 2007 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 1 + - uid: 2008 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 1 + - uid: 2009 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 1 + - uid: 2010 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 1 + - uid: 2011 + components: + - type: Transform + pos: -24.5,-13.5 + parent: 1 + - uid: 2012 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 1 + - uid: 2013 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 1 + - uid: 2014 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 1 + - uid: 2015 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 1 + - uid: 2016 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 1 + - uid: 2017 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 1 + - uid: 2018 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 1 + - uid: 2019 + components: + - type: Transform + pos: -21.5,-12.5 + parent: 1 + - uid: 2020 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 1 + - uid: 2021 + components: + - type: Transform + pos: -20.5,-12.5 + parent: 1 + - uid: 2022 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 1 + - uid: 2023 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 1 + - uid: 2024 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 1 + - uid: 2025 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 1 + - uid: 2026 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 1 + - uid: 2027 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 1 + - uid: 2028 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 1 + - uid: 2029 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 1 + - uid: 2030 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 1 + - uid: 2031 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 1 + - uid: 2032 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 1 + - uid: 2033 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 1 + - uid: 2034 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 1 + - uid: 2035 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 1 + - uid: 2036 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 1 + - uid: 2037 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1 + - uid: 2038 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 1 + - uid: 2039 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 2040 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 1 + - uid: 2041 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 2042 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 1 + - uid: 2043 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 1 + - uid: 2044 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 1 + - uid: 2046 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1 + - uid: 2047 + components: + - type: Transform + pos: 10.5,10.5 + parent: 1 + - uid: 2048 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 + - uid: 2049 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - uid: 2050 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 2051 + components: + - type: Transform + pos: -11.5,10.5 + parent: 1 + - uid: 2052 + components: + - type: Transform + pos: -30.5,5.5 + parent: 1 + - uid: 2235 + components: + - type: Transform + pos: 22.5,8.5 + parent: 1 + - uid: 2236 + components: + - type: Transform + pos: 22.5,7.5 + parent: 1 + - uid: 2237 + components: + - type: Transform + pos: 23.5,8.5 + parent: 1 + - uid: 2238 + components: + - type: Transform + pos: 23.5,7.5 + parent: 1 + - uid: 2239 + components: + - type: Transform + pos: 24.5,8.5 + parent: 1 + - uid: 2240 + components: + - type: Transform + pos: 24.5,7.5 + parent: 1 + - uid: 2241 + components: + - type: Transform + pos: 25.5,8.5 + parent: 1 + - uid: 2242 + components: + - type: Transform + pos: 25.5,7.5 + parent: 1 + - uid: 2243 + components: + - type: Transform + pos: 26.5,8.5 + parent: 1 + - uid: 2244 + components: + - type: Transform + pos: 26.5,7.5 + parent: 1 + - uid: 2245 + components: + - type: Transform + pos: 27.5,8.5 + parent: 1 + - uid: 2246 + components: + - type: Transform + pos: 27.5,7.5 + parent: 1 + - uid: 2247 + components: + - type: Transform + pos: 30.5,3.5 + parent: 1 + - uid: 2248 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 1 + - uid: 2249 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 1 + - uid: 2250 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 1 + - uid: 2251 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 1 + - uid: 2252 + components: + - type: Transform + pos: 26.5,-8.5 + parent: 1 + - uid: 2253 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 1 + - uid: 2254 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 1 + - uid: 2255 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 1 + - uid: 2256 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 1 + - uid: 2257 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 1 + - uid: 2258 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 1 + - uid: 2259 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 1 + - uid: 2260 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 1 + - uid: 2261 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 1 + - uid: 2262 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 1 + - uid: 2263 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 1 + - uid: 2264 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 1 + - uid: 2265 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 1 + - uid: 2266 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 1 + - uid: 2267 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 1 + - uid: 2268 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 1 + - uid: 2269 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 1 + - uid: 2270 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 1 + - uid: 2271 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 1 + - uid: 2272 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 1 + - uid: 2273 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 1 + - uid: 2274 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 1 + - uid: 2275 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 1 + - uid: 2276 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 1 + - uid: 2277 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 1 + - uid: 2278 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 1 + - uid: 2279 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 1 + - uid: 2280 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 1 + - uid: 2281 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1 + - uid: 2282 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1 + - uid: 2283 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 1 + - uid: 2284 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 1 + - uid: 2285 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1 + - uid: 2286 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 747 + components: + - type: Transform + pos: -28.5,4.5 + parent: 1 + - uid: 748 + components: + - type: Transform + pos: -28.5,5.5 + parent: 1 +- proto: AtmosFixOxygenMarker + entities: + - uid: 745 + components: + - type: Transform + pos: -26.5,4.5 + parent: 1 + - uid: 746 + components: + - type: Transform + pos: -26.5,5.5 + parent: 1 +- proto: Autolathe + entities: + - uid: 805 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 1 +- proto: BannerSecurity + entities: + - uid: 690 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 +- proto: BarSign + entities: + - uid: 653 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 +- proto: BaseBallBat + entities: + - uid: 1152 + components: + - type: Transform + parent: 1125 + - type: Physics + canCollide: False +- proto: Bed + entities: + - uid: 875 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - uid: 876 + components: + - type: Transform + pos: -9.5,7.5 + parent: 1 + - uid: 879 + components: + - type: Transform + pos: -12.5,8.5 + parent: 1 + - uid: 917 + components: + - type: Transform + pos: -21.5,3.5 + parent: 1 + - uid: 918 + components: + - type: Transform + pos: -21.5,5.5 + parent: 1 + - uid: 974 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 1 + - uid: 977 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 1 + - uid: 978 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 1 + - uid: 979 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 1 + - uid: 980 + components: + - type: Transform + pos: 28.5,1.5 + parent: 1 + - uid: 1115 + components: + - type: Transform + pos: 28.5,3.5 + parent: 1 +- proto: BedsheetBrigmedic + entities: + - uid: 1003 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 1 +- proto: BedsheetHOS + entities: + - uid: 984 + components: + - type: Transform + pos: 28.5,3.5 + parent: 1 +- proto: BedsheetMedical + entities: + - uid: 574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - uid: 575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + - uid: 576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + - uid: 577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 +- proto: BedsheetSpawner + entities: + - uid: 878 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - uid: 880 + components: + - type: Transform + pos: -12.5,8.5 + parent: 1 + - uid: 882 + components: + - type: Transform + pos: -9.5,7.5 + parent: 1 + - uid: 939 + components: + - type: Transform + pos: -21.5,3.5 + parent: 1 + - uid: 940 + components: + - type: Transform + pos: -21.5,5.5 + parent: 1 + - uid: 1004 + components: + - type: Transform + pos: 28.5,1.5 + parent: 1 + - uid: 1005 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 1 + - uid: 1006 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 1 + - uid: 1050 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 1 +- proto: BiomassReclaimer + entities: + - uid: 642 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 1 +- proto: BlastDoor + entities: + - uid: 1781 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1787 + - uid: 1782 + components: + - type: Transform + pos: 22.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1788 + - uid: 1783 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1786 + - uid: 1784 + components: + - type: Transform + pos: -23.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1785 + - uid: 2367 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1690 + - uid: 2368 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1137 + - uid: 2369 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2375 + - uid: 2370 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2376 +- proto: BlastDoorOpen + entities: + - uid: 2371 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2538 + - uid: 2372 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2538 +- proto: BookChemicalCompendium + entities: + - uid: 1637 + components: + - type: Transform + pos: -0.4742334,8.573275 + parent: 1 +- proto: BookRandom + entities: + - uid: 881 + components: + - type: Transform + pos: -5.659577,9.591773 + parent: 1 +- proto: BookshelfFilled + entities: + - uid: 1054 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 1 + - uid: 1055 + components: + - type: Transform + pos: 25.5,0.5 + parent: 1 +- proto: BoxBeanbag + entities: + - uid: 1182 + components: + - type: Transform + parent: 1129 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1183 + components: + - type: Transform + parent: 1129 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxBodyBag + entities: + - uid: 589 + components: + - type: Transform + pos: 2.531914,8.574829 + parent: 1 + - uid: 590 + components: + - type: Transform + pos: 2.379867,8.587353 + parent: 1 +- proto: BoxFolderBlue + entities: + - uid: 1111 + components: + - type: Transform + pos: -0.30409086,-9.098413 + parent: 1 +- proto: BoxFolderClipboard + entities: + - uid: 1105 + components: + - type: Transform + pos: -0.6873162,-9.253334 + parent: 1 +- proto: BoxFolderRed + entities: + - uid: 1112 + components: + - type: Transform + pos: -0.29593712,-9.424562 + parent: 1 +- proto: BoxLethalshot + entities: + - uid: 1180 + components: + - type: Transform + parent: 1128 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1181 + components: + - type: Transform + parent: 1128 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazinePistol + entities: + - uid: 1179 + components: + - type: Transform + parent: 1128 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazinePistolRubber + entities: + - uid: 1069 + components: + - type: Transform + parent: 1129 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazineRifle + entities: + - uid: 1067 + components: + - type: Transform + parent: 1128 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazineRifleRubber + entities: + - uid: 1178 + components: + - type: Transform + parent: 1129 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxTrashbag + entities: + - uid: 708 + components: + - type: Transform + pos: -21.499075,-9.480177 + parent: 1 +- proto: BrigTimer + entities: + - uid: 709 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 710 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 711 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 712 + components: + - type: Transform + pos: -14.5,4.5 + parent: 1 +- proto: ButchCleaver + entities: + - uid: 628 + components: + - type: Transform + pos: 13.602248,7.592946 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 217 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1 + - uid: 1757 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 1839 + components: + - type: Transform + pos: -13.5,4.5 + parent: 1 + - uid: 1840 + components: + - type: Transform + pos: -13.5,3.5 + parent: 1 + - uid: 1841 + components: + - type: Transform + pos: -14.5,3.5 + parent: 1 + - uid: 1842 + components: + - type: Transform + pos: -15.5,3.5 + parent: 1 + - uid: 1843 + components: + - type: Transform + pos: -15.5,4.5 + parent: 1 + - uid: 1844 + components: + - type: Transform + pos: -15.5,5.5 + parent: 1 + - uid: 1845 + components: + - type: Transform + pos: -15.5,6.5 + parent: 1 + - uid: 1846 + components: + - type: Transform + pos: -15.5,7.5 + parent: 1 + - uid: 1847 + components: + - type: Transform + pos: -16.5,7.5 + parent: 1 + - uid: 1848 + components: + - type: Transform + pos: -17.5,7.5 + parent: 1 + - uid: 1849 + components: + - type: Transform + pos: -18.5,7.5 + parent: 1 + - uid: 1850 + components: + - type: Transform + pos: -18.5,6.5 + parent: 1 + - uid: 1851 + components: + - type: Transform + pos: -18.5,5.5 + parent: 1 + - uid: 1852 + components: + - type: Transform + pos: -18.5,4.5 + parent: 1 + - uid: 1853 + components: + - type: Transform + pos: -18.5,3.5 + parent: 1 + - uid: 1854 + components: + - type: Transform + pos: -18.5,2.5 + parent: 1 + - uid: 1855 + components: + - type: Transform + pos: -19.5,2.5 + parent: 1 + - uid: 1856 + components: + - type: Transform + pos: -20.5,2.5 + parent: 1 + - uid: 1857 + components: + - type: Transform + pos: -21.5,2.5 + parent: 1 + - uid: 1858 + components: + - type: Transform + pos: -19.5,6.5 + parent: 1 + - uid: 1859 + components: + - type: Transform + pos: -20.5,6.5 + parent: 1 + - uid: 1860 + components: + - type: Transform + pos: -21.5,6.5 + parent: 1 + - uid: 1861 + components: + - type: Transform + pos: -18.5,8.5 + parent: 1 + - uid: 1862 + components: + - type: Transform + pos: -18.5,9.5 + parent: 1 + - uid: 1863 + components: + - type: Transform + pos: -19.5,8.5 + parent: 1 + - uid: 1864 + components: + - type: Transform + pos: -20.5,8.5 + parent: 1 + - uid: 1865 + components: + - type: Transform + pos: -20.5,9.5 + parent: 1 + - uid: 1866 + components: + - type: Transform + pos: -16.5,8.5 + parent: 1 + - uid: 1867 + components: + - type: Transform + pos: -16.5,9.5 + parent: 1 + - uid: 1868 + components: + - type: Transform + pos: -14.5,7.5 + parent: 1 + - uid: 1869 + components: + - type: Transform + pos: -14.5,8.5 + parent: 1 + - uid: 1870 + components: + - type: Transform + pos: -14.5,9.5 + parent: 1 + - uid: 1871 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 1872 + components: + - type: Transform + pos: -12.5,2.5 + parent: 1 + - uid: 1873 + components: + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 1874 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 1875 + components: + - type: Transform + pos: -11.5,6.5 + parent: 1 + - uid: 1876 + components: + - type: Transform + pos: -11.5,7.5 + parent: 1 + - uid: 1877 + components: + - type: Transform + pos: -11.5,8.5 + parent: 1 + - uid: 1878 + components: + - type: Transform + pos: -11.5,9.5 + parent: 1 + - uid: 1879 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1 + - uid: 1880 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1 + - uid: 1881 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - uid: 1882 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 1883 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 1884 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - uid: 1885 + components: + - type: Transform + pos: -8.5,6.5 + parent: 1 + - uid: 1886 + components: + - type: Transform + pos: -8.5,7.5 + parent: 1 + - uid: 1887 + components: + - type: Transform + pos: -8.5,8.5 + parent: 1 + - uid: 1888 + components: + - type: Transform + pos: -8.5,9.5 + parent: 1 + - uid: 1889 + components: + - type: Transform + pos: -8.5,10.5 + parent: 1 + - uid: 1890 + components: + - type: Transform + pos: -9.5,10.5 + parent: 1 + - uid: 1891 + components: + - type: Transform + pos: -10.5,6.5 + parent: 1 + - uid: 1892 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 1894 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 1895 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - uid: 1896 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 1897 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 1898 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 1899 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 1900 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 1901 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 + - uid: 1902 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 + - uid: 1903 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 + - uid: 1904 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 + - uid: 1905 + components: + - type: Transform + pos: -12.5,4.5 + parent: 1 + - uid: 1906 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 1907 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 1908 + components: + - type: Transform + pos: -9.5,3.5 + parent: 1 + - uid: 1909 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 1910 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - uid: 1911 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 1912 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 1 + - uid: 1913 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 1914 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 1 + - uid: 1915 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 1 + - uid: 1916 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 + - uid: 1917 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 1918 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 1919 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 1920 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 1921 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 1922 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 1923 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 1924 + components: + - type: Transform + pos: -16.5,3.5 + parent: 1 + - uid: 1925 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 + - uid: 1926 + components: + - type: Transform + pos: -12.5,6.5 + parent: 1 + - uid: 1927 + components: + - type: Transform + pos: -13.5,6.5 + parent: 1 + - uid: 1928 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 1 + - uid: 1929 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 1 + - uid: 1930 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 1 + - uid: 1931 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 1 + - uid: 1932 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 1 + - uid: 1933 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 1 + - uid: 1934 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 1 + - uid: 1935 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 1 + - uid: 1936 + components: + - type: Transform + pos: -24.5,0.5 + parent: 1 + - uid: 1937 + components: + - type: Transform + pos: -24.5,1.5 + parent: 1 + - uid: 1938 + components: + - type: Transform + pos: -24.5,2.5 + parent: 1 + - uid: 1939 + components: + - type: Transform + pos: -24.5,3.5 + parent: 1 + - uid: 1940 + components: + - type: Transform + pos: -24.5,4.5 + parent: 1 + - uid: 1941 + components: + - type: Transform + pos: -24.5,5.5 + parent: 1 + - uid: 1942 + components: + - type: Transform + pos: -23.5,5.5 + parent: 1 + - uid: 1943 + components: + - type: Transform + pos: -23.5,6.5 + parent: 1 + - uid: 1944 + components: + - type: Transform + pos: -23.5,7.5 + parent: 1 + - uid: 1949 + components: + - type: Transform + pos: -23.5,0.5 + parent: 1 + - uid: 1950 + components: + - type: Transform + pos: -23.5,0.5 + parent: 1 + - uid: 1951 + components: + - type: Transform + pos: -22.5,0.5 + parent: 1 + - uid: 1952 + components: + - type: Transform + pos: -21.5,0.5 + parent: 1 + - uid: 1953 + components: + - type: Transform + pos: -20.5,0.5 + parent: 1 + - uid: 1954 + components: + - type: Transform + pos: -19.5,0.5 + parent: 1 + - uid: 1955 + components: + - type: Transform + pos: -18.5,0.5 + parent: 1 + - uid: 1956 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 1 + - uid: 1957 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 1 + - uid: 1958 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 1 + - uid: 1959 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 1 + - uid: 1960 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 1 + - uid: 1961 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 1 + - uid: 1962 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 1 + - uid: 1963 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 1 + - uid: 1964 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 1 + - uid: 1965 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 1 + - uid: 1966 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 1 + - uid: 1967 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 1 + - uid: 1968 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 1 + - uid: 1969 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 1 + - uid: 1970 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 1 + - uid: 1971 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 1 + - uid: 1972 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 1 + - uid: 1973 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 1 + - uid: 1974 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 1 + - uid: 1975 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 1 + - uid: 1976 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 1 + - uid: 1977 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 1 + - uid: 1978 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 1 + - uid: 1979 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 1 + - uid: 1980 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 1 + - uid: 1981 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 1 + - uid: 1982 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 1 + - uid: 1983 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 1 + - uid: 1984 + components: + - type: Transform + pos: -24.5,7.5 + parent: 1 + - uid: 1985 + components: + - type: Transform + pos: -25.5,7.5 + parent: 1 + - uid: 1986 + components: + - type: Transform + pos: -26.5,7.5 + parent: 1 + - uid: 2045 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 1 + - uid: 2053 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 1 + - uid: 2054 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 1 + - uid: 2055 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 1 + - uid: 2056 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 1 + - uid: 2057 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 1 + - uid: 2058 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 1 + - uid: 2059 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 1 + - uid: 2060 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 1 + - uid: 2061 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 1 + - uid: 2062 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 1 + - uid: 2063 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 2064 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 2065 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 2066 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 2067 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 2068 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 2069 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 2070 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 2071 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 1 + - uid: 2072 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 1 + - uid: 2073 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 1 + - uid: 2074 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 1 + - uid: 2075 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1 + - uid: 2076 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 2077 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1 + - uid: 2078 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1 + - uid: 2079 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 2080 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 1 + - uid: 2081 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 1 + - uid: 2082 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 1 + - uid: 2083 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1 + - uid: 2084 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1 + - uid: 2085 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 1 + - uid: 2086 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 + - uid: 2087 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1 + - uid: 2088 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 1 + - uid: 2089 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 1 + - uid: 2090 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 1 + - uid: 2091 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 2092 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 + - uid: 2093 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1 + - uid: 2094 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 2095 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 2096 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 + - uid: 2097 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 2098 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 2099 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 + - uid: 2100 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 + - uid: 2101 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 2102 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1 + - uid: 2103 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 2104 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 2105 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 2106 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 2107 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 2108 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 2110 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 1 + - uid: 2111 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 1 + - uid: 2112 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 1 + - uid: 2113 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 1 + - uid: 2114 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 1 + - uid: 2115 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 2116 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 2117 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 2118 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 2119 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 2120 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 2121 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 2122 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 2123 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 2124 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1 + - uid: 2125 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1 + - uid: 2126 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 2127 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 1 + - uid: 2128 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1 + - uid: 2129 + components: + - type: Transform + pos: 11.5,2.5 + parent: 1 + - uid: 2130 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1 + - uid: 2131 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1 + - uid: 2132 + components: + - type: Transform + pos: 14.5,2.5 + parent: 1 + - uid: 2133 + components: + - type: Transform + pos: 14.5,3.5 + parent: 1 + - uid: 2134 + components: + - type: Transform + pos: 14.5,4.5 + parent: 1 + - uid: 2135 + components: + - type: Transform + pos: 14.5,5.5 + parent: 1 + - uid: 2136 + components: + - type: Transform + pos: 15.5,5.5 + parent: 1 + - uid: 2137 + components: + - type: Transform + pos: 16.5,5.5 + parent: 1 + - uid: 2138 + components: + - type: Transform + pos: 17.5,5.5 + parent: 1 + - uid: 2139 + components: + - type: Transform + pos: 17.5,6.5 + parent: 1 + - uid: 2140 + components: + - type: Transform + pos: 18.5,6.5 + parent: 1 + - uid: 2141 + components: + - type: Transform + pos: 18.5,7.5 + parent: 1 + - uid: 2142 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1 + - uid: 2143 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1 + - uid: 2144 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1 + - uid: 2145 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1 + - uid: 2146 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1 + - uid: 2147 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1 + - uid: 2148 + components: + - type: Transform + pos: 12.5,7.5 + parent: 1 + - uid: 2149 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1 + - uid: 2150 + components: + - type: Transform + pos: 14.5,7.5 + parent: 1 + - uid: 2153 + components: + - type: Transform + pos: 21.5,2.5 + parent: 1 + - uid: 2154 + components: + - type: Transform + pos: 21.5,1.5 + parent: 1 + - uid: 2155 + components: + - type: Transform + pos: 20.5,2.5 + parent: 1 + - uid: 2156 + components: + - type: Transform + pos: 19.5,2.5 + parent: 1 + - uid: 2157 + components: + - type: Transform + pos: 18.5,2.5 + parent: 1 + - uid: 2158 + components: + - type: Transform + pos: 17.5,2.5 + parent: 1 + - uid: 2159 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 1 + - uid: 2160 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 1 + - uid: 2161 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 1 + - uid: 2162 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 1 + - uid: 2163 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 1 + - uid: 2164 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 1 + - uid: 2165 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 1 + - uid: 2166 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 1 + - uid: 2167 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 1 + - uid: 2168 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 1 + - uid: 2169 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 1 + - uid: 2170 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 1 + - uid: 2171 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 1 + - uid: 2172 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 1 + - uid: 2173 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 1 + - uid: 2174 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 1 + - uid: 2175 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 1 + - uid: 2176 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 1 + - uid: 2177 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 1 + - uid: 2178 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 1 + - uid: 2179 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 1 + - uid: 2180 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 1 + - uid: 2181 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 1 + - uid: 2182 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 1 + - uid: 2183 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 1 + - uid: 2184 + components: + - type: Transform + pos: 23.5,0.5 + parent: 1 + - uid: 2185 + components: + - type: Transform + pos: 23.5,1.5 + parent: 1 + - uid: 2186 + components: + - type: Transform + pos: 23.5,2.5 + parent: 1 + - uid: 2187 + components: + - type: Transform + pos: 24.5,2.5 + parent: 1 + - uid: 2188 + components: + - type: Transform + pos: 25.5,2.5 + parent: 1 + - uid: 2189 + components: + - type: Transform + pos: 25.5,3.5 + parent: 1 + - uid: 2190 + components: + - type: Transform + pos: 26.5,3.5 + parent: 1 + - uid: 2191 + components: + - type: Transform + pos: 27.5,3.5 + parent: 1 + - uid: 2192 + components: + - type: Transform + pos: 27.5,4.5 + parent: 1 + - uid: 2193 + components: + - type: Transform + pos: 27.5,5.5 + parent: 1 + - uid: 2194 + components: + - type: Transform + pos: 21.5,0.5 + parent: 1 + - uid: 2195 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 1 + - uid: 2196 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 1 + - uid: 2197 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 1 + - uid: 2198 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 1 + - uid: 2199 + components: + - type: Transform + pos: 28.5,0.5 + parent: 1 + - uid: 2200 + components: + - type: Transform + pos: 28.5,1.5 + parent: 1 + - uid: 2201 + components: + - type: Transform + pos: 23.5,3.5 + parent: 1 + - uid: 2202 + components: + - type: Transform + pos: 23.5,4.5 + parent: 1 + - uid: 2203 + components: + - type: Transform + pos: 23.5,5.5 + parent: 1 + - uid: 2204 + components: + - type: Transform + pos: 22.5,5.5 + parent: 1 + - uid: 2205 + components: + - type: Transform + pos: 22.5,6.5 + parent: 1 + - uid: 2206 + components: + - type: Transform + pos: 22.5,7.5 + parent: 1 + - uid: 2207 + components: + - type: Transform + pos: 23.5,7.5 + parent: 1 + - uid: 2208 + components: + - type: Transform + pos: 24.5,7.5 + parent: 1 + - uid: 2209 + components: + - type: Transform + pos: 25.5,7.5 + parent: 1 + - uid: 2210 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 1 + - uid: 2211 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 1 + - uid: 2212 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 1 + - uid: 2213 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 1 + - uid: 2214 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 1 + - uid: 2215 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 1 + - uid: 2216 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 1 + - uid: 2217 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 1 + - uid: 2218 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 1 + - uid: 2219 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 1 + - uid: 2220 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 1 + - uid: 2221 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 1 + - uid: 2222 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 1 + - uid: 2223 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 1 + - uid: 2224 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 1 + - uid: 2225 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 1 + - uid: 2226 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 1 + - uid: 2227 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 1 + - uid: 2228 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 1 + - uid: 2229 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 1 + - uid: 2230 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 1 + - uid: 2231 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1 + - uid: 2232 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1 + - uid: 2233 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 1 + - uid: 2234 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 1 + - uid: 2287 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 2288 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 2289 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 2290 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 2291 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 2292 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 2293 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 2294 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 2295 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 2296 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 2297 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 2298 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 2299 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 2300 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 2301 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 2302 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 2303 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 2304 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 2305 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 2306 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 2339 + components: + - type: Transform + pos: 19.5,7.5 + parent: 1 + - uid: 2343 + components: + - type: Transform + pos: 18.5,3.5 + parent: 1 + - uid: 2344 + components: + - type: Transform + pos: 18.5,4.5 + parent: 1 + - uid: 2346 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1 + - uid: 2347 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 + - uid: 2348 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 2349 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 1 + - uid: 2560 + components: + - type: Transform + pos: -28.5,0.5 + parent: 1 + - uid: 2561 + components: + - type: Transform + pos: -28.5,1.5 + parent: 1 + - uid: 2562 + components: + - type: Transform + pos: -28.5,2.5 + parent: 1 + - uid: 2566 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 2567 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 2573 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 +- proto: CableHV + entities: + - uid: 111 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: -29.5,2.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: -30.5,1.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 1 + - uid: 716 + components: + - type: Transform + pos: -30.5,2.5 + parent: 1 + - uid: 717 + components: + - type: Transform + pos: -29.5,1.5 + parent: 1 + - uid: 750 + components: + - type: Transform + pos: -29.5,0.5 + parent: 1 + - uid: 756 + components: + - type: Transform + pos: -30.5,0.5 + parent: 1 +- proto: CableMV + entities: + - uid: 80 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: -28.5,0.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: -30.5,2.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -29.5,2.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: 19.5,2.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: -22.5,-0.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: -28.5,1.5 + parent: 1 + - uid: 547 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 1 + - uid: 548 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 1 + - uid: 549 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 1 + - uid: 550 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 1 + - uid: 754 + components: + - type: Transform + pos: 18.5,2.5 + parent: 1 + - uid: 760 + components: + - type: Transform + pos: -28.5,2.5 + parent: 1 + - uid: 1607 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 1 + - uid: 1609 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 1 + - uid: 1610 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 1 + - uid: 1611 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 1 + - uid: 1612 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 1 + - uid: 1613 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 1 + - uid: 1614 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 1 + - uid: 1615 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 1 + - uid: 1616 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 1 + - uid: 1617 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 1 + - uid: 1618 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 1 + - uid: 1619 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 1 + - uid: 1620 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 1 + - uid: 1621 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 1 + - uid: 1622 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 1 + - uid: 1623 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 1624 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 1625 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 1626 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 1627 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 1628 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 1629 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 1630 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 1631 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 1632 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 1633 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 1634 + components: + - type: Transform + pos: -14.5,0.5 + parent: 1 + - uid: 1635 + components: + - type: Transform + pos: -14.5,1.5 + parent: 1 + - uid: 1636 + components: + - type: Transform + pos: -14.5,2.5 + parent: 1 + - uid: 1638 + components: + - type: Transform + pos: -13.5,3.5 + parent: 1 + - uid: 1639 + components: + - type: Transform + pos: -13.5,4.5 + parent: 1 + - uid: 1640 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 1641 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 1642 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 1643 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 1644 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 1645 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 1646 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 1647 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 1648 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 1649 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 1650 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 1651 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 1652 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 1653 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 1654 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 1655 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 1656 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 1657 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 1658 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 1659 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 1660 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 1661 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 1662 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 1663 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1 + - uid: 1664 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1 + - uid: 1665 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1 + - uid: 1666 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 + - uid: 1667 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 1668 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 1 + - uid: 1669 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 1 + - uid: 1670 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 1 + - uid: 1671 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 1 + - uid: 1672 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 1 + - uid: 1673 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 1 + - uid: 1674 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 1 + - uid: 1675 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 1 + - uid: 1676 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 1677 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 1678 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 1679 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 1680 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 1682 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 1683 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 1693 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 1694 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 1695 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 1696 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 1697 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1 + - uid: 1698 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 1 + - uid: 1699 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 1 + - uid: 1700 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 1 + - uid: 1701 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 1 + - uid: 1703 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 1 + - uid: 1704 + components: + - type: Transform + pos: 21.5,0.5 + parent: 1 + - uid: 1705 + components: + - type: Transform + pos: 21.5,1.5 + parent: 1 + - uid: 1706 + components: + - type: Transform + pos: 21.5,2.5 + parent: 1 + - uid: 1709 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 1 + - uid: 1710 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 1 + - uid: 1711 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 1 + - uid: 1712 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 1 + - uid: 1713 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 1 + - uid: 1773 + components: + - type: Transform + pos: 18.5,4.5 + parent: 1 + - uid: 1893 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1 + - uid: 2151 + components: + - type: Transform + pos: 20.5,2.5 + parent: 1 + - uid: 2329 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 2330 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 2331 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 + - uid: 2350 + components: + - type: Transform + pos: 18.5,3.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 93 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,0.5 + parent: 1 + - uid: 99 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,0.5 + parent: 1 +- proto: CannabisSeeds + entities: + - uid: 916 + components: + - type: Transform + parent: 915 + - type: Physics + canCollide: False +- proto: CarpetBlack + entities: + - uid: 1007 + components: + - type: Transform + pos: 27.5,4.5 + parent: 1 + - uid: 1019 + components: + - type: Transform + pos: 28.5,4.5 + parent: 1 + - uid: 1020 + components: + - type: Transform + pos: 28.5,3.5 + parent: 1 + - uid: 1021 + components: + - type: Transform + pos: 27.5,3.5 + parent: 1 + - uid: 1048 + components: + - type: Transform + pos: 25.5,5.5 + parent: 1 + - uid: 1049 + components: + - type: Transform + pos: 25.5,4.5 + parent: 1 +- proto: CarpetBlue + entities: + - uid: 1041 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 1 + - uid: 1043 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 1 + - uid: 1089 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 1 +- proto: CarpetGreen + entities: + - uid: 1028 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 1 + - uid: 1029 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 1 + - uid: 1030 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 1 +- proto: CarpetOrange + entities: + - uid: 776 + components: + - type: Transform + pos: 13.5,3.5 + parent: 1 + - uid: 866 + components: + - type: Transform + pos: 12.5,3.5 + parent: 1 + - uid: 967 + components: + - type: Transform + pos: 11.5,3.5 + parent: 1 + - uid: 981 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1 + - uid: 1031 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 1 + - uid: 1032 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 1 + - uid: 1033 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 1 + - uid: 1037 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1 + - uid: 1038 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1 + - uid: 1039 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1 + - uid: 1040 + components: + - type: Transform + pos: 15.5,1.5 + parent: 1 + - uid: 1042 + components: + - type: Transform + pos: 15.5,2.5 + parent: 1 + - uid: 2506 + components: + - type: Transform + pos: 14.5,3.5 + parent: 1 +- proto: CarpetPink + entities: + - uid: 1025 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 1 + - uid: 1026 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 1 + - uid: 1027 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 1 +- proto: CarpetPurple + entities: + - uid: 971 + components: + - type: Transform + pos: 27.5,1.5 + parent: 1 + - uid: 1023 + components: + - type: Transform + pos: 28.5,1.5 + parent: 1 + - uid: 1024 + components: + - type: Transform + pos: 29.5,1.5 + parent: 1 +- proto: CarpetSBlue + entities: + - uid: 1034 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 1 + - uid: 1035 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 1 + - uid: 1036 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 1 +- proto: CartridgeRocket + entities: + - uid: 1206 + components: + - type: Transform + parent: 497 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1207 + components: + - type: Transform + parent: 497 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1208 + components: + - type: Transform + parent: 497 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1209 + components: + - type: Transform + parent: 497 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CartridgeRocketEmp + entities: + - uid: 1196 + components: + - type: Transform + parent: 1016 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1197 + components: + - type: Transform + parent: 1016 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1198 + components: + - type: Transform + parent: 1016 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1199 + components: + - type: Transform + parent: 1016 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Catwalk + entities: + - uid: 125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-11.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: -28.5,1.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-11.5 + parent: 1 + - uid: 130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-11.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: -30.5,0.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: -25.5,0.5 + parent: 1 + - uid: 449 + components: + - type: Transform + pos: -29.5,0.5 + parent: 1 + - uid: 675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-8.5 + parent: 1 + - uid: 715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-10.5 + parent: 1 + - uid: 752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-11.5 + parent: 1 + - uid: 753 + components: + - type: Transform + pos: -28.5,0.5 + parent: 1 + - uid: 755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-9.5 + parent: 1 + - uid: 758 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 1 + - uid: 759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-11.5 + parent: 1 + - uid: 761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-10.5 + parent: 1 + - uid: 762 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 1 + - uid: 763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-10.5 + parent: 1 + - uid: 764 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 1 + - uid: 765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-10.5 + parent: 1 + - uid: 766 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 1 + - uid: 767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-9.5 + parent: 1 + - uid: 768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,7.5 + parent: 1 + - uid: 769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-8.5 + parent: 1 + - uid: 770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,7.5 + parent: 1 + - uid: 771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,7.5 + parent: 1 + - uid: 773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,7.5 + parent: 1 + - uid: 775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,7.5 + parent: 1 + - uid: 777 + components: + - type: Transform + pos: -26.5,0.5 + parent: 1 + - uid: 778 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 1 + - uid: 779 + components: + - type: Transform + pos: -27.5,0.5 + parent: 1 + - uid: 780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-11.5 + parent: 1 + - uid: 782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-11.5 + parent: 1 + - uid: 783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-8.5 + parent: 1 + - uid: 784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-12.5 + parent: 1 + - uid: 785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-9.5 + parent: 1 + - uid: 786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-10.5 + parent: 1 + - uid: 787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-11.5 + parent: 1 + - uid: 788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-11.5 + parent: 1 + - uid: 789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-11.5 + parent: 1 + - uid: 790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-11.5 + parent: 1 + - uid: 791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-11.5 + parent: 1 + - uid: 792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-11.5 + parent: 1 + - uid: 793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-11.5 + parent: 1 + - uid: 794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-12.5 + parent: 1 + - uid: 795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-10.5 + parent: 1 + - uid: 796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-10.5 + parent: 1 + - uid: 797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-10.5 + parent: 1 + - uid: 798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-9.5 + parent: 1 + - uid: 799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-8.5 + parent: 1 + - uid: 800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,7.5 + parent: 1 + - uid: 801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,7.5 + parent: 1 + - uid: 802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,7.5 + parent: 1 + - uid: 803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,7.5 + parent: 1 + - uid: 804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,7.5 + parent: 1 + - uid: 807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,7.5 + parent: 1 + - uid: 832 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 1 + - uid: 838 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 1 + - uid: 1740 + components: + - type: Transform + pos: -24.5,0.5 + parent: 1 + - uid: 1741 + components: + - type: Transform + pos: -24.5,1.5 + parent: 1 + - uid: 1742 + components: + - type: Transform + pos: -24.5,2.5 + parent: 1 + - uid: 1744 + components: + - type: Transform + pos: -23.5,0.5 + parent: 1 + - uid: 1745 + components: + - type: Transform + pos: -23.5,1.5 + parent: 1 + - uid: 1746 + components: + - type: Transform + pos: -23.5,2.5 + parent: 1 + - uid: 1748 + components: + - type: Transform + pos: -28.5,2.5 + parent: 1 +- proto: Chair + entities: + - uid: 950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + - uid: 953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 +- proto: ChairFolding + entities: + - uid: 624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + - uid: 625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,1.5 + parent: 1 + - uid: 873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,9.5 + parent: 1 + - uid: 874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,9.5 + parent: 1 + - uid: 943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,4.5 + parent: 1 + - uid: 945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,6.5 + parent: 1 + - uid: 1015 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 +- proto: ChairOfficeDark + entities: + - uid: 693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + - uid: 2379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 1 +- proto: ChairOfficeLight + entities: + - uid: 647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 2324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-15.5 + parent: 1 + - uid: 2378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 1 +- proto: chem_master + entities: + - uid: 594 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 +- proto: ChemDispenser + entities: + - uid: 592 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 +- proto: ChemistryHotplate + entities: + - uid: 599 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 +- proto: CigarGoldCase + entities: + - uid: 1234 + components: + - type: Transform + pos: 26.70925,5.241996 + parent: 1 +- proto: CleanerDispenser + entities: + - uid: 701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-7.5 + parent: 1 +- proto: CloningPod + entities: + - uid: 585 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 +- proto: ClosetWall + entities: + - uid: 821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-3.5 + parent: 1 +- proto: ClothingBeltJanitorFilled + entities: + - uid: 704 + components: + - type: Transform + pos: -21.467825,-9.451295 + parent: 1 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 811 + components: + - type: Transform + pos: -24.554947,-2.3773594 + parent: 1 + - uid: 812 + components: + - type: Transform + pos: -24.367447,-2.5336094 + parent: 1 +- proto: ClothingEyesGlassesChemical + entities: + - uid: 600 + components: + - type: Transform + pos: -0.48900163,7.9824142 + parent: 1 +- proto: ClothingHandsGlovesJanitor + entities: + - uid: 705 + components: + - type: Transform + pos: -21.509493,-9.534628 + parent: 1 +- proto: ComfyChair + entities: + - uid: 973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1 + - uid: 1114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,4.5 + parent: 1 +- proto: ComputerAdvancedRadar + entities: + - uid: 1136 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 1 +- proto: ComputerCloningConsole + entities: + - uid: 586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 +- proto: ComputerPowerMonitoring + entities: + - uid: 751 + components: + - type: Transform + pos: -30.5,0.5 + parent: 1 +- proto: ComputerRadar + entities: + - uid: 1218 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 1747 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 +- proto: ComputerTabletopAlert + entities: + - uid: 1737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 1 + - uid: 2332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 1 +- proto: ComputerTabletopCrewMonitoring + entities: + - uid: 1091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 1 + - uid: 1094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 1 +- proto: ComputerTabletopCriminalRecords + entities: + - uid: 1068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 1 +- proto: ComputerTabletopId + entities: + - uid: 1074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 1 +- proto: ComputerTabletopIFF + entities: + - uid: 1090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 1 +- proto: ComputerTabletopMassMedia + entities: + - uid: 1095 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 +- proto: ComputerTabletopMedicalRecords + entities: + - uid: 1096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 1 +- proto: ComputerTabletopPowerMonitoring + entities: + - uid: 1738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 1 +- proto: ComputerTabletopStationRecords + entities: + - uid: 1079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 1 +- proto: ComputerTabletopSurveillanceCameraMonitor + entities: + - uid: 1093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 1 +- proto: ComputerTabletopSurveillanceWirelessCameraMonitor + entities: + - uid: 2309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 1 +- proto: ComputerTelevision + entities: + - uid: 884 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - uid: 885 + components: + - type: Transform + pos: -9.5,6.5 + parent: 1 + - uid: 886 + components: + - type: Transform + pos: -12.5,6.5 + parent: 1 + - uid: 976 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 1 +- proto: ComputerWallmountWithdrawBankATM + entities: + - uid: 685 + components: + - type: Transform + pos: 6.5,8.5 + parent: 1 + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + - type: ItemSlots +- proto: CrateChemistrySupplies + entities: + - uid: 593 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 +- proto: CrateEngineeringAMEJar + entities: + - uid: 2488 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 1 +- proto: CrateFoodCooking + entities: + - uid: 929 + components: + - type: Transform + pos: -14.5,6.5 + parent: 1 +- proto: CrateFoodDinnerware + entities: + - uid: 1236 + components: + - type: Transform + pos: -17.5,8.5 + parent: 1 +- proto: CrateFreezer + entities: + - uid: 538 + components: + - type: Transform + pos: 20.5,6.5 + parent: 1 +- proto: CrateHydroponicsTools + entities: + - uid: 541 + components: + - type: Transform + pos: 19.5,6.5 + parent: 1 + - uid: 931 + components: + - type: Transform + pos: -19.5,3.5 + parent: 1 +- proto: CrateMaterialSteel + entities: + - uid: 806 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 1 +- proto: CrateMedicalSupplies + entities: + - uid: 2307 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 +- proto: CrateSecuritySupplies + entities: + - uid: 1231 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 +- proto: CrateServiceCustomSmokable + entities: + - uid: 930 + components: + - type: Transform + pos: -19.5,5.5 + parent: 1 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 702 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 1 +- proto: CrateServiceJanitorialSupplies2 + entities: + - uid: 703 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 1 +- proto: CrateTrashCart + entities: + - uid: 707 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 1 +- proto: CrateWeaponSecure + entities: + - uid: 1016 + components: + - type: Transform + pos: 18.5,3.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14926 + 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: + - 1195 + - 1194 + - 1192 + - 1193 + - 1196 + - 1200 + - 1198 + - 1199 + - 1197 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1128 + components: + - type: Transform + pos: 19.5,3.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14926 + 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: + - 1188 + - 1186 + - 1187 + - 1177 + - 1176 + - 1184 + - 1067 + - 1180 + - 1181 + - 1179 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1129 + components: + - type: Transform + pos: 21.5,3.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14926 + 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: + - 1178 + - 1183 + - 141 + - 1182 + - 1189 + - 1185 + - 1069 + - 1191 + - 1190 + - 146 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrayonBox + entities: + - uid: 988 + components: + - type: Transform + pos: 12.020981,1.5220349 + parent: 1 +- proto: Crematorium + entities: + - uid: 470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-6.5 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 376 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 2308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 +- proto: DeployableBarrier + entities: + - uid: 617 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 808 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 2564 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 1 +- proto: DiceBag + entities: + - uid: 813 + components: + - type: Transform + pos: 11.433912,1.6198795 + parent: 1 +- proto: DisposalBend + entities: + - uid: 2403 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 1 + - uid: 2418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + - uid: 2432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + - uid: 2467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-0.5 + parent: 1 + - uid: 2468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,5.5 + parent: 1 + - uid: 2469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,5.5 + parent: 1 + - uid: 2470 + components: + - type: Transform + pos: -23.5,7.5 + parent: 1 + - uid: 2471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,7.5 + parent: 1 + - uid: 2472 + components: + - type: Transform + pos: -27.5,8.5 + parent: 1 +- proto: DisposalJunction + entities: + - uid: 2416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + - uid: 2417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 2466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 1 +- proto: DisposalPipe + entities: + - uid: 2404 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 1 + - uid: 2405 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 1 + - uid: 2406 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 1 + - uid: 2407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-0.5 + parent: 1 + - uid: 2408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 1 + - uid: 2409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 1 + - uid: 2410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 1 + - uid: 2411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 1 + - uid: 2412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 1 + - uid: 2413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 1 + - uid: 2414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + - uid: 2415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 1 + - uid: 2419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 1 + - uid: 2420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 1 + - uid: 2421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 1 + - uid: 2422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 + - uid: 2423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 1 + - uid: 2424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 1 + - uid: 2425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 1 + - uid: 2426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,4.5 + parent: 1 + - uid: 2427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + - uid: 2428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,3.5 + parent: 1 + - uid: 2429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + - uid: 2430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + - uid: 2431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + - uid: 2433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 2434 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 2435 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 2436 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 2437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 2438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 2439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 2440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 2441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + - uid: 2442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - uid: 2443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + - uid: 2444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + - uid: 2445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 1 + - uid: 2446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 1 + - uid: 2447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 2448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 2449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 2450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 2451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 2452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 2453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - uid: 2454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + - uid: 2455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1 + - uid: 2456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 1 + - uid: 2457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1 + - uid: 2458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 1 + - uid: 2459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 1 + - uid: 2460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1 + - uid: 2461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 1 + - uid: 2462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 1 + - uid: 2463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 1 + - uid: 2464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 1 + - uid: 2465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 1 + - uid: 2473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 1 + - uid: 2474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 1 + - uid: 2475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 1 + - uid: 2476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 1 + - uid: 2477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-0.5 + parent: 1 + - uid: 2478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,0.5 + parent: 1 + - uid: 2479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,1.5 + parent: 1 + - uid: 2480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,2.5 + parent: 1 + - uid: 2481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,3.5 + parent: 1 + - uid: 2482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,4.5 + parent: 1 + - uid: 2483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,6.5 + parent: 1 + - uid: 2484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,7.5 + parent: 1 + - uid: 2485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,7.5 + parent: 1 + - uid: 2486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,7.5 + parent: 1 + - uid: 2487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,8.5 + parent: 1 +- proto: DisposalTrunk + entities: + - uid: 2399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-4.5 + parent: 1 + - uid: 2400 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1 + - uid: 2401 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 2402 + components: + - type: Transform + pos: -18.5,0.5 + parent: 1 +- proto: DisposalUnit + entities: + - uid: 257 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 441 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1 + - uid: 2393 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 1 + - uid: 2398 + components: + - type: Transform + pos: -18.5,0.5 + parent: 1 +- proto: Dresser + entities: + - uid: 869 + components: + - type: Transform + pos: -9.5,5.5 + parent: 1 + - uid: 870 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 +- proto: DresserWardenFilled + entities: + - uid: 1008 + components: + - type: Transform + pos: 27.5,1.5 + parent: 1 + - uid: 1011 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 1 + - uid: 1022 + components: + - type: Transform + pos: 28.5,4.5 + parent: 1 +- proto: DrinkBottleVodka + entities: + - uid: 1117 + components: + - type: Transform + pos: 26.776325,5.8838797 + parent: 1 +- proto: DrinkRumBottleFull + entities: + - uid: 1119 + components: + - type: Transform + pos: 26.238178,5.8838797 + parent: 1 +- proto: DrinkShotGlass + entities: + - uid: 1012 + components: + - type: Transform + pos: 26.27487,4.562975 + parent: 1 + - uid: 1017 + components: + - type: Transform + pos: 26.27487,4.9054317 + parent: 1 +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 1118 + components: + - type: Transform + pos: 26.519482,5.8838797 + parent: 1 +- proto: EmergencyRollerBedSpawnFolded + entities: + - uid: 582 + components: + - type: Transform + pos: 3.438164,6.5435786 + parent: 1 +- proto: EmpGrenade + entities: + - uid: 1192 + components: + - type: Transform + parent: 1016 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1193 + components: + - type: Transform + parent: 1016 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1194 + components: + - type: Transform + parent: 1016 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1195 + components: + - type: Transform + parent: 1016 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: EmpressMothershipComputer + entities: + - uid: 1217 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - type: ContainerContainer + containers: + ShipyardConsole-targetId: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] +- proto: ExGrenade + entities: + - uid: 1201 + components: + - type: Transform + parent: 497 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1202 + components: + - type: Transform + parent: 497 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1203 + components: + - type: Transform + parent: 497 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1204 + components: + - type: Transform + parent: 497 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FaxMachineShip + entities: + - uid: 1103 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 +- proto: FireAxeCabinetFilledCommand + entities: + - uid: 1116 + components: + - type: Transform + pos: -22.5,1.5 + parent: 1 +- proto: Firelock + entities: + - uid: 404 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 1 + - uid: 436 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 525 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 757 + components: + - type: Transform + pos: -15.5,4.5 + parent: 1 + - uid: 781 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 1 + - uid: 840 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 1 + - uid: 841 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 843 + components: + - type: Transform + pos: -24.5,4.5 + parent: 1 + - uid: 844 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 1 + - uid: 845 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 846 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 847 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 848 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 849 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 850 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 851 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 1 + - uid: 852 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 1 + - uid: 853 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 1 + - uid: 854 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 1 + - uid: 855 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 1 + - uid: 856 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 1 + - uid: 857 + components: + - type: Transform + pos: 21.5,0.5 + parent: 1 + - uid: 858 + components: + - type: Transform + pos: 24.5,2.5 + parent: 1 + - uid: 859 + components: + - type: Transform + pos: 23.5,4.5 + parent: 1 + - uid: 860 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 1 + - uid: 861 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 862 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 863 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 864 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1 + - uid: 865 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 +- proto: Fireplace + entities: + - uid: 1045 + components: + - type: Transform + pos: 25.5,5.5 + parent: 1 +- proto: FlippoEngravedLighter + entities: + - uid: 1135 + components: + - type: Transform + pos: 26.535639,4.5128293 + parent: 1 +- proto: FloorDrain + entities: + - uid: 388 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 543 + components: + - type: Transform + pos: 19.5,7.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: FoodBoxDonkpocketDink + entities: + - uid: 938 + components: + - type: Transform + pos: -15.433867,8.66142 + parent: 1 +- proto: GasAnalyzer + entities: + - uid: 826 + components: + - type: Transform + pos: -23.29615,-4.4103155 + parent: 1 + - uid: 829 + components: + - type: Transform + pos: -28.708189,2.4510486 + parent: 1 +- proto: GasFilterFlipped + entities: + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,1.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,1.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' +- proto: GasMixerFlipped + entities: + - uid: 330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,2.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' +- proto: GasPassiveGate + entities: + - uid: 1122 + components: + - type: Transform + pos: -24.5,3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: GasPassiveVent + entities: + - uid: 1829 + components: + - type: Transform + pos: -24.5,7.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 2498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2499 + components: + - type: Transform + pos: -28.5,4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2500 + components: + - type: Transform + pos: -26.5,4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: GasPipeBend + entities: + - uid: 331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,2.5 + parent: 1 + - uid: 343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 475 + components: + - type: Transform + pos: -25.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 476 + components: + - type: Transform + pos: -27.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1367 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' +- proto: GasPipeFourway + entities: + - uid: 120 + components: + - type: Transform + pos: -19.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 122 + components: + - type: Transform + pos: -23.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1248 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1251 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1338 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1421 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1451 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1457 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' +- proto: GasPipeStraight + entities: + - uid: 312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,2.5 + parent: 1 + - uid: 339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,3.5 + parent: 1 + - uid: 467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,3.5 + parent: 1 + - uid: 472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1422 + components: + - type: Transform + pos: 21.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1423 + components: + - type: Transform + pos: 21.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1424 + components: + - type: Transform + pos: 23.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1425 + components: + - type: Transform + pos: 23.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1427 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1428 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1429 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1452 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1453 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1458 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1459 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1599 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1600 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1601 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1602 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1603 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' +- proto: GasPipeTJunction + entities: + - uid: 121 + components: + - type: Transform + pos: -21.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 124 + components: + - type: Transform + pos: -24.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 335 + components: + - type: Transform + pos: -20.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1235 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1414 + components: + - type: Transform + pos: 20.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1417 + components: + - type: Transform + pos: 23.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1430 + components: + - type: Transform + pos: 21.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000AAFF' +- proto: GasPort + entities: + - uid: 740 + components: + - type: Transform + pos: -23.5,3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' +- proto: GasVentPump + entities: + - uid: 738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1797 + components: + - type: Transform + pos: -18.5,6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1779 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1798 + components: + - type: Transform + pos: -11.5,7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1779 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1799 + components: + - type: Transform + pos: -8.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1779 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1800 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1779 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1779 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1802 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1806 + components: + - type: Transform + pos: 13.5,6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1808 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,2.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1780 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1780 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1780 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1780 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1780 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1780 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1816 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1780 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' + - uid: 1817 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000AAFF' +- proto: GasVentScrubber + entities: + - uid: 739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,2.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1820 + components: + - type: Transform + pos: -19.5,4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1779 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1821 + components: + - type: Transform + pos: -12.5,8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1779 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1822 + components: + - type: Transform + pos: -9.5,7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1779 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1823 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1779 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1827 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1830 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1831 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1833 + components: + - type: Transform + pos: 25.5,3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1780 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1780 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1780 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1780 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1780 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 1838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1780 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 2581 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' + - uid: 2649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1780 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#AA0000FF' +- proto: GravityGeneratorMini + entities: + - uid: 568 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 1 +- proto: Grille + entities: + - uid: 1166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + - uid: 1482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,9.5 + parent: 1 + - uid: 1483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,9.5 + parent: 1 + - uid: 1484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,9.5 + parent: 1 + - uid: 1485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,9.5 + parent: 1 + - uid: 1486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,9.5 + parent: 1 + - uid: 1487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,9.5 + parent: 1 + - uid: 1488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,9.5 + parent: 1 + - uid: 1489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 1 + - uid: 1490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,10.5 + parent: 1 + - uid: 1491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,4.5 + parent: 1 + - uid: 1492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,4.5 + parent: 1 + - uid: 1493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,6.5 + parent: 1 + - uid: 1494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 1 + - uid: 1495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 1 + - uid: 1496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 1 + - uid: 1497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,10.5 + parent: 1 + - uid: 1498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,10.5 + parent: 1 + - uid: 1499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1 + - uid: 1500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,3.5 + parent: 1 + - uid: 1501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,2.5 + parent: 1 + - uid: 1502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 1 + - uid: 1503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-5.5 + parent: 1 + - uid: 1504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-7.5 + parent: 1 + - uid: 1505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-8.5 + parent: 1 + - uid: 1506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-9.5 + parent: 1 + - uid: 1507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-10.5 + parent: 1 + - uid: 1508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-10.5 + parent: 1 + - uid: 1509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-7.5 + parent: 1 + - uid: 1510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-6.5 + parent: 1 + - uid: 1511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + - uid: 1512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + - uid: 1513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 1 + - uid: 1514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 1 + - uid: 1515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 1 + - uid: 1516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 1 + - uid: 1517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + - uid: 1518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 1519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 1520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 + - uid: 1521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + - uid: 1522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 1 + - uid: 1523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 1 + - uid: 1524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1 + - uid: 1525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 1 + - uid: 1526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 1 + - uid: 1527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 1 + - uid: 1528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-17.5 + parent: 1 + - uid: 1529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 1 + - uid: 1530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 1 + - uid: 1531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 1 + - uid: 1532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 1 + - uid: 1533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 1 + - uid: 1534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 1 + - uid: 1535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1 + - uid: 1536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 1 + - uid: 1537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 1 + - uid: 1538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 1 + - uid: 1539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + - uid: 1540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 1 + - uid: 1541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 1542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + - uid: 1543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 1544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + - uid: 1545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + - uid: 1546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 + - uid: 1547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 1 + - uid: 1548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 1 + - uid: 1549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 1 + - uid: 1550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 1 + - uid: 1551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-6.5 + parent: 1 + - uid: 1552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-7.5 + parent: 1 + - uid: 1554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-9.5 + parent: 1 + - uid: 1555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 1 + - uid: 1558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-7.5 + parent: 1 + - uid: 1559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-6.5 + parent: 1 + - uid: 1560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-5.5 + parent: 1 + - uid: 1561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-2.5 + parent: 1 + - uid: 1562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-0.5 + parent: 1 + - uid: 1563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,0.5 + parent: 1 + - uid: 1564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,1.5 + parent: 1 + - uid: 1565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,3.5 + parent: 1 + - uid: 1566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,3.5 + parent: 1 + - uid: 1567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,4.5 + parent: 1 + - uid: 1568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,6.5 + parent: 1 + - uid: 1569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,6.5 + parent: 1 + - uid: 1570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,6.5 + parent: 1 + - uid: 1571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,7.5 + parent: 1 + - uid: 1572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,9.5 + parent: 1 + - uid: 1573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,9.5 + parent: 1 + - uid: 1574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,9.5 + parent: 1 + - uid: 1575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,9.5 + parent: 1 + - uid: 1576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,9.5 + parent: 1 + - uid: 1577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,9.5 + parent: 1 + - uid: 1578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,9.5 + parent: 1 + - uid: 1581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + - uid: 1582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + - uid: 1583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + - uid: 1584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + - uid: 1585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + - uid: 1586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + - uid: 1587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + - uid: 1588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1 + - uid: 1589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1 + - uid: 1590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + - uid: 1591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - uid: 1592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 1 + - uid: 1593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 1 + - uid: 1594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,7.5 + parent: 1 + - uid: 1595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 1 + - uid: 1596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 1 + - uid: 1597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + - uid: 1688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-7.5 + parent: 1 + - uid: 2380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,6.5 + parent: 1 + - uid: 2381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,6.5 + parent: 1 + - uid: 2382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,3.5 + parent: 1 + - uid: 2383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,3.5 + parent: 1 + - uid: 2607 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 2608 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 2609 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 2610 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 2619 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 2620 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 2641 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 +- proto: GroundTobacco + entities: + - uid: 946 + components: + - type: Transform + pos: -17.319544,6.8531294 + parent: 1 + - uid: 947 + components: + - type: Transform + pos: -17.309126,6.8531294 + parent: 1 + - uid: 948 + components: + - type: Transform + pos: -17.309126,6.8531294 + parent: 1 +- proto: GunSafe + entities: + - uid: 497 + components: + - type: Transform + pos: 17.5,3.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + 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: + - 1203 + - 1204 + - 1202 + - 1205 + - 1209 + - 1201 + - 1207 + - 1208 + - 1206 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GyroscopeSecurity + entities: + - uid: 867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-10.5 + parent: 1 + - uid: 970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-10.5 + parent: 1 +- proto: HandheldCrewMonitor + entities: + - uid: 646 + components: + - type: Transform + pos: -1.5557241,8.587762 + parent: 1 +- proto: HandheldGPSBasic + entities: + - uid: 1225 + components: + - type: Transform + pos: -2.28239,-6.623934 + parent: 1 + - uid: 1226 + components: + - type: Transform + pos: -2.298015,-5.639559 + parent: 1 + - uid: 1227 + components: + - type: Transform + pos: -2.28239,-4.592684 + parent: 1 +- proto: HandLabeler + entities: + - uid: 1104 + components: + - type: Transform + pos: 1.3372931,-8.276926 + parent: 1 +- proto: HarmonicaInstrument + entities: + - uid: 899 + components: + - type: Transform + pos: -12.4907,7.531582 + parent: 1 +- proto: HighSecArmoryLocked + entities: + - uid: 1065 + components: + - type: Transform + pos: 21.5,0.5 + parent: 1 +- proto: HolofanProjector + entities: + - uid: 830 + components: + - type: Transform + pos: -28.286234,2.7078912 + parent: 1 + - uid: 831 + components: + - type: Transform + pos: -28.267887,2.414357 + parent: 1 +- proto: HospitalCurtains + entities: + - uid: 912 + components: + - type: Transform + pos: -19.5,8.5 + parent: 1 +- proto: HospitalCurtainsOpen + entities: + - uid: 913 + components: + - type: Transform + pos: -20.5,6.5 + parent: 1 + - uid: 914 + components: + - type: Transform + pos: -20.5,2.5 + parent: 1 + - uid: 2549 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 2550 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 2551 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 2552 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 +- proto: hydroponicsTrayAnchored + entities: + - uid: 534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,8.5 + parent: 1 + - uid: 535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,8.5 + parent: 1 + - uid: 536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,8.5 + parent: 1 + - uid: 542 + components: + - type: Transform + pos: 17.5,7.5 + parent: 1 + - uid: 909 + components: + - type: Transform + pos: -17.5,2.5 + parent: 1 + - uid: 910 + components: + - type: Transform + pos: -17.5,3.5 + parent: 1 + - uid: 911 + components: + - type: Transform + pos: -17.5,4.5 + parent: 1 +- proto: HypoBrigmedic + entities: + - uid: 645 + components: + - type: Transform + pos: -1.0400991,8.540887 + parent: 1 +- proto: IntercomSecurity + entities: + - uid: 2507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-14.5 + parent: 1 +- proto: JanitorialTrolley + entities: + - uid: 706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-8.5 + parent: 1 +- proto: JetpackSecurityFilled + entities: + - uid: 1222 + components: + - type: Transform + pos: -2.71989,-6.655184 + parent: 1 + - uid: 1223 + components: + - type: Transform + pos: -2.75114,-5.655184 + parent: 1 + - uid: 1224 + components: + - type: Transform + pos: -2.71989,-4.592684 + parent: 1 +- proto: KitchenDeepFryer + entities: + - uid: 530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 1 +- proto: KitchenMicrowave + entities: + - uid: 532 + components: + - type: Transform + pos: 14.5,7.5 + parent: 1 + - uid: 925 + components: + - type: Transform + pos: -14.5,8.5 + parent: 1 +- proto: KitchenReagentGrinder + entities: + - uid: 533 + components: + - type: Transform + pos: 15.5,7.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 926 + components: + - type: Transform + pos: -14.5,7.5 + parent: 1 +- proto: KitchenSpike + entities: + - uid: 537 + components: + - type: Transform + pos: 20.5,7.5 + parent: 1 +- proto: LampGold + entities: + - uid: 2352 + components: + - type: Transform + pos: 29.379961,-2.164408 + parent: 1 + - uid: 2353 + components: + - type: Transform + pos: 26.411211,-6.0706577 + parent: 1 + - uid: 2354 + components: + - type: Transform + pos: 17.379961,-6.1331577 + parent: 1 + - uid: 2355 + components: + - type: Transform + pos: 17.395586,-3.101908 + parent: 1 + - uid: 2356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.692461,1.851217 + parent: 1 +- proto: LampInterrogator + entities: + - uid: 951 + components: + - type: Transform + pos: -5.476282,-1.393225 + parent: 1 +- proto: LockerBrigmedicFilled + entities: + - uid: 997 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 1 +- proto: LockerEvidence + entities: + - uid: 611 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: -13.5,0.5 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 614 + components: + - type: Transform + pos: -9.5,0.5 + parent: 1 +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 1014 + components: + - type: Transform + pos: 27.5,5.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: LockerSecurityFilled + entities: + - uid: 998 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 1 + - uid: 999 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 1 + - uid: 1000 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 1 +- proto: LockerWardenFilled + entities: + - uid: 996 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: LuxuryPen + entities: + - uid: 1106 + components: + - type: Transform + pos: 1.7286721,-8.627537 + parent: 1 + - uid: 1110 + components: + - type: Transform + pos: 1.4351379,-8.619383 + parent: 1 + - uid: 2357 + components: + - type: Transform + pos: 29.692461,1.1016078 + parent: 1 +- proto: MagazineBoxMagnum + entities: + - uid: 1184 + components: + - type: Transform + parent: 1128 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxMagnumRubber + entities: + - uid: 1185 + components: + - type: Transform + parent: 1129 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxPistol + entities: + - uid: 1177 + components: + - type: Transform + parent: 1128 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxPistolRubber + entities: + - uid: 146 + components: + - type: Transform + parent: 1129 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxRifleBig + entities: + - uid: 1176 + components: + - type: Transform + parent: 1128 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxRifleBigRubber + entities: + - uid: 141 + components: + - type: Transform + parent: 1129 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MedicalBed + entities: + - uid: 481 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 504 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 569 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 +- proto: MedicalScanner + entities: + - uid: 587 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 +- proto: MedicalTechFab + entities: + - uid: 1233 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 +- proto: MedkitCombatFilled + entities: + - uid: 2553 + components: + - type: Transform + pos: -2.5074146,1.5536056 + parent: 1 + - uid: 2554 + components: + - type: Transform + pos: 1.5238354,1.5536056 + parent: 1 +- proto: Morgue + entities: + - uid: 545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 1 + - uid: 640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-3.5 + parent: 1 + - uid: 641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-4.5 + parent: 1 +- proto: Multitool + entities: + - uid: 827 + components: + - type: Transform + pos: -23.718105,-4.6121206 + parent: 1 +- proto: NitrogenCanister + entities: + - uid: 744 + components: + - type: Transform + pos: -28.5,5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: OxygenCanister + entities: + - uid: 742 + components: + - type: Transform + pos: -23.5,2.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 743 + components: + - type: Transform + pos: -26.5,5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: PackPaperRollingFilters + entities: + - uid: 944 + components: + - type: Transform + pos: -17.632044,6.4364624 + parent: 1 +- proto: Paper + entities: + - uid: 883 + components: + - type: Transform + pos: -12.197193,5.350384 + parent: 1 + - uid: 887 + components: + - type: Transform + pos: -12.197193,5.350384 + parent: 1 + - uid: 890 + components: + - type: Transform + pos: -8.251117,9.771165 + parent: 1 + - uid: 891 + components: + - type: Transform + pos: -8.251117,9.771165 + parent: 1 + - uid: 892 + components: + - type: Transform + pos: -8.251117,9.771165 + parent: 1 + - uid: 893 + components: + - type: Transform + pos: -5.2407,9.750332 + parent: 1 + - uid: 894 + components: + - type: Transform + pos: -5.2407,9.750332 + parent: 1 + - uid: 895 + components: + - type: Transform + pos: -5.2407,9.750332 + parent: 1 + - uid: 932 + components: + - type: Transform + pos: -12.197193,5.350384 + parent: 1 + - uid: 933 + components: + - type: Transform + pos: -19.256784,4.75517 + parent: 1 + - uid: 934 + components: + - type: Transform + pos: -19.256784,4.75517 + parent: 1 + - uid: 935 + components: + - type: Transform + pos: -19.256784,4.75517 + parent: 1 + - uid: 936 + components: + - type: Transform + pos: -19.256784,4.75517 + parent: 1 + - uid: 955 + components: + - type: Transform + pos: -5.663782,-2.236975 + parent: 1 + - uid: 958 + components: + - type: Transform + pos: -5.663782,-2.236975 + parent: 1 + - uid: 959 + components: + - type: Transform + pos: -5.663782,-2.236975 + parent: 1 + - uid: 989 + components: + - type: Transform + pos: 12.583589,1.7177243 + parent: 1 + - uid: 990 + components: + - type: Transform + pos: 12.583589,1.729955 + parent: 1 + - uid: 991 + components: + - type: Transform + pos: 12.583589,1.729955 + parent: 1 + - uid: 992 + components: + - type: Transform + pos: 12.583589,1.729955 + parent: 1 + - uid: 995 + components: + - type: Transform + pos: 12.583589,1.729955 + parent: 1 + - uid: 2358 + components: + - type: Transform + pos: 29.364336,1.1484828 + parent: 1 + - uid: 2359 + components: + - type: Transform + pos: 29.364336,1.1484828 + parent: 1 + - uid: 2360 + components: + - type: Transform + pos: 29.364336,1.1484828 + parent: 1 +- proto: PaperBin20 + entities: + - uid: 1107 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 1 +- proto: Pen + entities: + - uid: 896 + components: + - type: Transform + pos: -12.230284,5.791998 + parent: 1 + - uid: 897 + components: + - type: Transform + pos: -8.251117,9.385748 + parent: 1 + - uid: 898 + components: + - type: Transform + pos: -5.20945,9.385748 + parent: 1 + - uid: 937 + components: + - type: Transform + pos: -19.2672,4.3593364 + parent: 1 + - uid: 960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.351282,-2.518225 + parent: 1 + - uid: 993 + components: + - type: Transform + pos: 12.513625,1.4764524 + parent: 1 + - uid: 994 + components: + - type: Transform + pos: 12.672624,1.5009136 + parent: 1 +- proto: PianoInstrument + entities: + - uid: 626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,2.5 + parent: 1 +- proto: PlastitaniumWindow + entities: + - uid: 26 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 1 + - uid: 27 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-15.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-17.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-12.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 66 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-18.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-18.5 + parent: 1 + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-18.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-15.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-16.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-12.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -11.5,9.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1 + - uid: 185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,6.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,6.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 1 + - uid: 258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,3.5 + parent: 1 + - uid: 268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,3.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 30.5,0.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 30.5,1.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 29.5,4.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: -8.5,10.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -9.5,10.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 26.5,6.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 27.5,6.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: -18.5,9.5 + parent: 1 + - uid: 362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 1 + - uid: 363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-2.5 + parent: 1 + - uid: 364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: -20.5,9.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: -16.5,9.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 1 + - uid: 370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 1 + - uid: 371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-2.5 + parent: 1 + - uid: 372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-2.5 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: -14.5,9.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: 29.5,3.5 + parent: 1 + - uid: 482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-18.5 + parent: 1 + - uid: 506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-17.5 + parent: 1 + - uid: 632 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 1066 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 1071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,7.5 + parent: 1 + - uid: 1072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,9.5 + parent: 1 + - uid: 1080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,9.5 + parent: 1 + - uid: 1081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,9.5 + parent: 1 + - uid: 1086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,9.5 + parent: 1 + - uid: 1087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-18.5 + parent: 1 + - uid: 1097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,9.5 + parent: 1 + - uid: 1175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,9.5 + parent: 1 + - uid: 1687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-7.5 + parent: 1 + - uid: 1948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-7.5 + parent: 1 + - uid: 2635 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 2636 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 2637 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 2638 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 2639 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 2640 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 +- proto: PlushieNuke + entities: + - uid: 942 + components: + - type: Transform + pos: -21.499277,5.4337177 + parent: 1 +- proto: PortableFlasher + entities: + - uid: 810 + components: + - type: Transform + anchored: False + pos: -11.5,-1.5 + parent: 1 + - type: TriggerOnProximity + enabled: False + - type: Physics + bodyType: Dynamic +- proto: PottedPlantRandom + entities: + - uid: 1133 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 1 + - uid: 1598 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 1824 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 + - uid: 2340 + components: + - type: Transform + pos: -21.5,0.5 + parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-5.5 + parent: 1 + - uid: 2505 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 1691 + components: + - type: Transform + pos: -19.5,0.5 + parent: 1 + - uid: 1720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 1 + - uid: 1749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + - uid: 1750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 1 + - uid: 1751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 1753 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 1754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 1 + - uid: 1755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 1 + - uid: 1758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 1759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 1 + - uid: 1760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 1 + - uid: 1761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1 + - uid: 1762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,3.5 + parent: 1 + - uid: 1763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,8.5 + parent: 1 + - uid: 1764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-4.5 + parent: 1 + - uid: 1765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,0.5 + parent: 1 + - uid: 1777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + - uid: 1778 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 + - uid: 1793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-7.5 + parent: 1 + - uid: 1794 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 1 + - uid: 2310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 1 + - uid: 2311 + components: + - type: Transform + pos: -25.5,2.5 + parent: 1 + - uid: 2345 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 1 + - uid: 2373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - uid: 2374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,0.5 + parent: 1 + - uid: 2508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 1 + - uid: 2559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,7.5 + parent: 1 + - uid: 2580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,5.5 + parent: 1 + - uid: 2621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 +- proto: PoweredlightColoredFrostyBlue + entities: + - uid: 2109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-3.5 + parent: 1 + - uid: 2313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 1 + - uid: 2314 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 1 + - uid: 2315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-9.5 + parent: 1 + - uid: 2316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,7.5 + parent: 1 + - uid: 2317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,7.5 + parent: 1 + - uid: 2318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-10.5 + parent: 1 + - uid: 2319 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 1 + - uid: 2320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-9.5 + parent: 1 + - uid: 2321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 1 + - uid: 2322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 1 + - uid: 2323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + - uid: 2325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,10.5 + parent: 1 + - uid: 2326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 1 + - uid: 2327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1 + - uid: 2328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,10.5 + parent: 1 +- proto: PoweredlightRed + entities: + - uid: 1775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,2.5 + parent: 1 + - uid: 1776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,1.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + - uid: 962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,5.5 + parent: 1 + - uid: 963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,8.5 + parent: 1 + - uid: 964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,5.5 + parent: 1 + - uid: 965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,8.5 + parent: 1 + - uid: 966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,8.5 + parent: 1 + - uid: 968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,5.5 + parent: 1 + - uid: 969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,2.5 + parent: 1 + - uid: 1708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2602 + - uid: 1766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-6.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2598 + - uid: 1767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2599 + - uid: 1768 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2600 + - uid: 1769 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2601 + - uid: 1770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2602 + - uid: 1771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2603 + - uid: 1772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2601 + - uid: 1774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2603 + - uid: 1791 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 1 + - uid: 1792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-6.5 + parent: 1 + - uid: 2312 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 1 + - uid: 2362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-8.5 + parent: 1 + - uid: 2363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,5.5 + parent: 1 + - uid: 2364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-8.5 + parent: 1 + - uid: 2365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,5.5 + parent: 1 + - uid: 2495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,4.5 + parent: 1 + - uid: 2496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,4.5 + parent: 1 + - uid: 2555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,7.5 + parent: 1 + - uid: 2604 + components: + - type: Transform + pos: -21.5,6.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2558 + - uid: 2605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1707 +- proto: Rack + entities: + - uid: 583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 1 + - uid: 700 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 1 + - uid: 809 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 1 + - uid: 828 + components: + - type: Transform + pos: -28.5,2.5 + parent: 1 + - uid: 1212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 1 + - uid: 1219 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 1220 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 1221 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - uid: 2529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,1.5 + parent: 1 +- proto: Railing + entities: + - uid: 1557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-12.5 + parent: 1 + - uid: 1714 + components: + - type: Transform + pos: 26.5,8.5 + parent: 1 + - uid: 1715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,7.5 + parent: 1 + - uid: 1716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-10.5 + parent: 1 + - uid: 1717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-11.5 + parent: 1 + - uid: 1718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-13.5 + parent: 1 + - uid: 1719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-12.5 + parent: 1 + - uid: 1721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-13.5 + parent: 1 + - uid: 1722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-11.5 + parent: 1 + - uid: 1723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-10.5 + parent: 1 + - uid: 1724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,7.5 + parent: 1 + - uid: 1725 + components: + - type: Transform + pos: -27.5,8.5 + parent: 1 +- proto: RailingCornerSmall + entities: + - uid: 1726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,8.5 + parent: 1 + - uid: 1727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-11.5 + parent: 1 + - uid: 1728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-13.5 + parent: 1 + - uid: 1729 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 1 + - uid: 1730 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 1 + - uid: 1731 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 1 + - uid: 1732 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 1 + - uid: 1733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-13.5 + parent: 1 + - uid: 1734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-12.5 + parent: 1 + - uid: 1735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,8.5 + parent: 1 +- proto: RandomBook + entities: + - uid: 877 + components: + - type: Transform + pos: -19.5,4.5 + parent: 1 + - uid: 888 + components: + - type: Transform + pos: -8.5,9.5 + parent: 1 + - uid: 889 + components: + - type: Transform + pos: -12.5,5.5 + parent: 1 + - uid: 2361 + components: + - type: Transform + pos: 29.5,1.5 + parent: 1 +- proto: RandomInstruments + entities: + - uid: 900 + components: + - type: Transform + pos: -8.5,8.5 + parent: 1 + - uid: 901 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 941 + components: + - type: Transform + pos: -21.5,3.5 + parent: 1 + - uid: 1134 + components: + - type: Transform + pos: 14.5,1.5 + parent: 1 +- proto: RandomPosterAny + entities: + - uid: 2503 + components: + - type: Transform + pos: -22.5,2.5 + parent: 1 + - uid: 2504 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 1 +- proto: RandomPosterContraband + entities: + - uid: 2489 + components: + - type: Transform + pos: -20.5,4.5 + parent: 1 + - uid: 2490 + components: + - type: Transform + pos: -17.5,1.5 + parent: 1 + - uid: 2491 + components: + - type: Transform + pos: -13.5,7.5 + parent: 1 + - uid: 2492 + components: + - type: Transform + pos: -10.5,7.5 + parent: 1 + - uid: 2493 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - uid: 2494 + components: + - type: Transform + pos: -19.5,7.5 + parent: 1 +- proto: RandomPosterLegit + entities: + - uid: 1553 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 1 + - uid: 1686 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 1 + - uid: 2501 + components: + - type: Transform + pos: 24.5,1.5 + parent: 1 + - uid: 2502 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 1 + - uid: 2565 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 59 + components: + - type: Transform + pos: -12.5,4.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - uid: 396 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: 8.5,7.5 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: -10.5,6.5 + parent: 1 + - uid: 516 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 520 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,3.5 + parent: 1 + - uid: 563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,2.5 + parent: 1 + - uid: 564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + - uid: 566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + - uid: 567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + - uid: 573 + components: + - type: Transform + pos: -13.5,6.5 + parent: 1 + - uid: 659 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - uid: 666 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 674 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 +- proto: RemoteSignaller + entities: + - uid: 824 + components: + - type: Transform + pos: -23.222767,-4.9790387 + parent: 1 + - uid: 825 + components: + - type: Transform + pos: -23.424572,-4.905655 + parent: 1 +- proto: RollerBedSpawnFolded + entities: + - uid: 588 + components: + - type: Transform + pos: 3.531914,5.6685786 + parent: 1 +- proto: RollingPin + entities: + - uid: 629 + components: + - type: Transform + pos: 13.323926,7.6148663 + parent: 1 +- proto: RubberStampApproved + entities: + - uid: 1108 + components: + - type: Transform + pos: 1.3046782,-8.880302 + parent: 1 +- proto: RubberStampDenied + entities: + - uid: 1109 + components: + - type: Transform + pos: 1.6063663,-8.880302 + parent: 1 +- proto: SecBreachingHammer + entities: + - uid: 1148 + components: + - type: Transform + parent: 1125 + - type: Physics + canCollide: False + - uid: 1149 + components: + - type: Transform + parent: 1125 + - type: Physics + canCollide: False +- proto: SecurityTechFab + entities: + - uid: 1130 + components: + - type: Transform + pos: 20.5,4.5 + parent: 1 +- proto: ShipyardRCD + entities: + - uid: 2576 + components: + - type: Transform + pos: -28.584936,1.6294427 + parent: 1 +- proto: ShipyardRCDAmmo + entities: + - uid: 2577 + components: + - type: Transform + pos: -28.131811,1.5513177 + parent: 1 + - uid: 2578 + components: + - type: Transform + pos: -28.194311,1.3481927 + parent: 1 + - uid: 2579 + components: + - type: Transform + pos: -28.397436,1.2700677 + parent: 1 +- proto: ShuttersNormalOpen + entities: + - uid: 157 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 + - uid: 654 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 + - uid: 655 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 + - uid: 694 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - uid: 695 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 + - uid: 696 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 + - uid: 1752 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 + - uid: 2574 + components: + - type: Transform + pos: 27.5,6.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2603 + - uid: 2583 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1058 + - uid: 2584 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1058 + - uid: 2585 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2600 + - uid: 2586 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2600 + - uid: 2587 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2598 + - uid: 2588 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2598 + - uid: 2589 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2599 + - uid: 2590 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2601 + - uid: 2591 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2601 + - uid: 2592 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2602 + - uid: 2593 + components: + - type: Transform + pos: 30.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2602 + - uid: 2594 + components: + - type: Transform + pos: 30.5,1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2602 + - uid: 2595 + components: + - type: Transform + pos: 29.5,3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2603 + - uid: 2596 + components: + - type: Transform + pos: 29.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2603 + - uid: 2597 + components: + - type: Transform + pos: 26.5,6.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2603 + - uid: 2606 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 + - uid: 2611 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 + - uid: 2612 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 + - uid: 2613 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 + - uid: 2614 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 + - uid: 2615 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 + - uid: 2616 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 2617 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 + - uid: 2618 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 + - uid: 2622 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 + - uid: 2623 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 + - uid: 2624 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 + - uid: 2626 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 + - uid: 2627 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 + - uid: 2629 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 + - uid: 2630 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 + - uid: 2631 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 2632 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 + - uid: 2634 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 1 + - uid: 2642 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2643 +- proto: ShuttersWindowOpen + entities: + - uid: 2540 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2538 + - uid: 2541 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2538 + - uid: 2542 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2538 + - uid: 2543 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2538 + - uid: 2544 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2538 + - uid: 2545 + components: + - type: Transform + pos: 8.5,7.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2538 +- proto: SignalButtonDirectional + entities: + - uid: 1058 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2584: + - Pressed: Toggle + 2583: + - Pressed: Toggle + - uid: 1137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2368: + - Pressed: Toggle + - uid: 1690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2367: + - Pressed: Toggle + - uid: 1707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2605: + - Pressed: Toggle + - uid: 1785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,3.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1784: + - Pressed: Toggle + - uid: 1786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-6.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1783: + - Pressed: Toggle + - uid: 1787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1781: + - Pressed: Toggle + - uid: 1788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,3.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1782: + - Pressed: Toggle + - uid: 2375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2369: + - Pressed: Toggle + - uid: 2376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2370: + - Pressed: Toggle + - uid: 2538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2542: + - Pressed: Toggle + 2543: + - Pressed: Toggle + 2541: + - Pressed: Toggle + 2540: + - Pressed: Toggle + 2545: + - Pressed: Toggle + 2544: + - Pressed: Toggle + 2371: + - Pressed: Toggle + 2372: + - Pressed: Toggle + 688: + - Pressed: DoorBolt + - uid: 2558 + components: + - type: Transform + pos: -21.5,7.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2604: + - Pressed: Toggle + - uid: 2598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-7.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1766: + - Pressed: Toggle + 2588: + - Pressed: Toggle + 2587: + - Pressed: Toggle + - uid: 2599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-4.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1767: + - Pressed: Toggle + 2589: + - Pressed: Toggle + - uid: 2600 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1768: + - Pressed: Toggle + 2586: + - Pressed: Toggle + 2585: + - Pressed: Toggle + - uid: 2601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-4.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1772: + - Pressed: Toggle + 1769: + - Pressed: Toggle + 2591: + - Pressed: Toggle + 2590: + - Pressed: Toggle + - uid: 2602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1770: + - Pressed: Toggle + 1708: + - Pressed: Toggle + 2592: + - Pressed: Toggle + 2593: + - Pressed: Toggle + 2594: + - Pressed: Toggle + - uid: 2603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,2.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1771: + - Pressed: Toggle + 1774: + - Pressed: Toggle + 2597: + - Pressed: Toggle + 2574: + - Pressed: Toggle + 2596: + - Pressed: Toggle + 2595: + - Pressed: Toggle + - uid: 2643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 654: + - Pressed: Toggle + 2606: + - Pressed: Toggle + 695: + - Pressed: Toggle + 696: + - Pressed: Toggle + 2623: + - Pressed: Toggle + 2632: + - Pressed: Toggle + 157: + - Pressed: Toggle + 2627: + - Pressed: Toggle + 2622: + - Pressed: Toggle + 1752: + - Pressed: Toggle + 655: + - Pressed: Toggle + 2626: + - Pressed: Toggle + 2630: + - Pressed: Toggle + 2629: + - Pressed: Toggle + 2624: + - Pressed: Toggle + 2612: + - Pressed: Toggle + 2614: + - Pressed: Toggle + 2613: + - Pressed: Toggle + 2642: + - Pressed: Toggle + 2611: + - Pressed: Toggle + 2615: + - Pressed: Toggle + 2617: + - Pressed: Toggle + 2618: + - Pressed: Toggle +- proto: SignDisposalSpace + entities: + - uid: 2394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-4.5 + parent: 1 + - uid: 2395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + - uid: 2396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + - uid: 2397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,1.5 + parent: 1 +- proto: SignSecureSmall + entities: + - uid: 2389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-6.5 + parent: 1 + - uid: 2390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,3.5 + parent: 1 + - uid: 2391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,3.5 + parent: 1 + - uid: 2392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 1 + - uid: 2539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + - uid: 2628 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 1 +- proto: SignSpace + entities: + - uid: 1789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 1 + - uid: 2386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,6.5 + parent: 1 + - uid: 2387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-9.5 + parent: 1 + - uid: 2388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,6.5 + parent: 1 +- proto: Sink + entities: + - uid: 1057 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 1 + - uid: 2377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 1 +- proto: SinkWide + entities: + - uid: 544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,6.5 + parent: 1 + - uid: 928 + components: + - type: Transform + pos: -17.5,8.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 113 + components: + - type: Transform + pos: -29.5,1.5 + parent: 1 + - uid: 749 + components: + - type: Transform + pos: -30.5,1.5 + parent: 1 +- proto: SmokingPipeFilledTobacco + entities: + - uid: 1121 + components: + - type: Transform + pos: 26.336834,5.310274 + parent: 1 +- proto: soda_dispenser + entities: + - uid: 2384 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1 +- proto: SpacemenFigureSpawner + entities: + - uid: 2633 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1 +- proto: SpaceVillainArcade + entities: + - uid: 927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,5.5 + parent: 1 +- proto: SpawnPointBrigmedic + entities: + - uid: 2569 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 1 +- proto: SpawnPointChef + entities: + - uid: 2648 + components: + - type: Transform + pos: 18.5,7.5 + parent: 1 +- proto: SpawnPointLatejoin + entities: + - uid: 561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-1.5 + parent: 1 +- proto: SpawnPointPrisonGuard + entities: + - uid: 2568 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 +- proto: SpawnPointSecurityCadet + entities: + - uid: 2571 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 1 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 2572 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 1 +- proto: SpawnPointWarden + entities: + - uid: 2570 + components: + - type: Transform + pos: 27.5,0.5 + parent: 1 +- proto: SpeedLoaderMagnum + entities: + - uid: 1186 + components: + - type: Transform + parent: 1128 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1187 + components: + - type: Transform + parent: 1128 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1188 + components: + - type: Transform + parent: 1128 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpeedLoaderMagnumRubber + entities: + - uid: 1189 + components: + - type: Transform + parent: 1129 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1190 + components: + - type: Transform + parent: 1129 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1191 + components: + - type: Transform + parent: 1129 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: StationMap + entities: + - uid: 1736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 1 + - uid: 2644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + - uid: 2645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + - uid: 2646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + - uid: 2647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-1.5 + parent: 1 +- proto: Stool + entities: + - uid: 627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,1.5 + parent: 1 +- proto: StoolBar + entities: + - uid: 360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,6.5 + parent: 1 + - uid: 552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1 + - uid: 553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 + - uid: 554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,3.5 + parent: 1 + - uid: 555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,3.5 + parent: 1 + - uid: 556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,3.5 + parent: 1 + - uid: 557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,3.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 95 + components: + - type: Transform + pos: -29.5,2.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: -30.5,2.5 + parent: 1 +- proto: SuitStorageSec + entities: + - uid: 147 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 1070 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 1213 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 +- proto: SuitStorageWallmountBrigmedic + entities: + - uid: 1047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-4.5 + parent: 1 + - type: Physics + canCollide: False +- proto: SuitStorageWallmountHOS + entities: + - uid: 24 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,4.5 + parent: 1 + - type: Physics + canCollide: False +- proto: SuitStorageWallmountSec + entities: + - uid: 1051 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 1 + - type: Physics + canCollide: False + - uid: 1052 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 1 + - type: Physics + canCollide: False + - uid: 1053 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 1 + - type: Physics + canCollide: False +- proto: SuitStorageWallmountWarden + entities: + - uid: 1044 + components: + - type: Transform + pos: 26.5,1.5 + parent: 1 + - type: Physics + canCollide: False +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 1743 + components: + - type: Transform + pos: -29.5,0.5 + parent: 1 +- proto: SurveillanceCameraSecurity + entities: + - uid: 699 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Quarters [Hallway] + - uid: 2509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Supplies room + - uid: 2510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Medbay 1 + - uid: 2511 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Medbay 2 + - uid: 2512 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Docking port 2 + - uid: 2513 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Docking port 1 + - uid: 2514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,3.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Breakroom + - uid: 2515 + components: + - type: Transform + pos: 18.5,5.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Kitchen + - uid: 2516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,2.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory + - uid: 2517 + components: + - type: Transform + pos: 27.5,3.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Quarters [Sheriff] + - uid: 2518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,0.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Quarters [Bailiff] + - uid: 2519 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Quarters [Brigmedic] + - uid: 2520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-5.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Quarters [Deputy 3] + - uid: 2521 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Quarters [Deputy 1] + - uid: 2522 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Quarters [Deputy 2] + - uid: 2523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Interrogation room + - uid: 2524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-11.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Thrusters [SE] + - uid: 2525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Prison cell 1 + - uid: 2526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,5.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Prison cell 2 + - uid: 2527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,5.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Prison cell 3 + - uid: 2528 + components: + - type: Transform + pos: -16.5,5.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Prison cell [Perma] + - uid: 2530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,2.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Engine room 2 + - uid: 2531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,0.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Engine room 1 + - uid: 2532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-3.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Tool storage + - uid: 2533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Morgue + - uid: 2534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-11.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Thrusters [SW] + - uid: 2535 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Lobby + - uid: 2536 + components: + - type: Transform + pos: 23.5,7.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Thrusters [NE] + - uid: 2537 + components: + - type: Transform + pos: -24.5,7.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Thrusters [NW] + - uid: 2575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,0.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Evidence room +- proto: TableCarpet + entities: + - uid: 622 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1 + - uid: 623 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1 + - uid: 818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,1.5 + parent: 1 + - uid: 924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,6.5 + parent: 1 + - uid: 982 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 1 + - uid: 983 + components: + - type: Transform + pos: 29.5,1.5 + parent: 1 + - uid: 985 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 1 + - uid: 986 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 1 + - uid: 987 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 1 + - uid: 1002 + components: + - type: Transform + pos: 26.5,4.5 + parent: 1 + - uid: 1009 + components: + - type: Transform + pos: 26.5,5.5 + parent: 1 + - uid: 1046 + components: + - type: Transform + pos: 29.5,0.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 142 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,7.5 + parent: 1 + - uid: 453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,7.5 + parent: 1 + - uid: 454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,7.5 + parent: 1 + - uid: 455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,7.5 + parent: 1 + - uid: 578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + - uid: 579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 602 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 650 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 651 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 686 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 687 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 819 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 1 + - uid: 820 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 1 + - uid: 1073 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 1 + - uid: 1075 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 + - uid: 1076 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 1 + - uid: 1077 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 1078 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 1082 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1 + - uid: 1083 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1 + - uid: 1084 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 1085 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 1 + - uid: 1088 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 1098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + - uid: 1210 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 1211 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 1232 + components: + - type: Transform + pos: 13.5,6.5 + parent: 1 + - uid: 1756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 949 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 +- proto: TableWood + entities: + - uid: 868 + components: + - type: Transform + pos: -12.5,5.5 + parent: 1 + - uid: 871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 1 + - uid: 872 + components: + - type: Transform + pos: -8.5,9.5 + parent: 1 + - uid: 919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,8.5 + parent: 1 + - uid: 920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,7.5 + parent: 1 + - uid: 921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,8.5 + parent: 1 + - uid: 923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,4.5 + parent: 1 +- proto: TableWoodReinforced + entities: + - uid: 391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,5.5 + parent: 1 + - uid: 393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 1 + - uid: 413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,4.5 + parent: 1 + - uid: 445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,4.5 + parent: 1 + - uid: 446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,7.5 + parent: 1 + - uid: 450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,4.5 + parent: 1 + - uid: 451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,4.5 + parent: 1 + - uid: 452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,4.5 + parent: 1 +- proto: ThrusterSecurity + entities: + - uid: 3 + components: + - type: Transform + pos: -23.5,8.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: -24.5,8.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: -25.5,8.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: -26.5,8.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 22.5,8.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 23.5,8.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: 24.5,8.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: 25.5,8.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-8.5 + parent: 1 + - uid: 12 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-9.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-10.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-11.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-8.5 + parent: 1 + - uid: 16 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-9.5 + parent: 1 + - uid: 17 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-11.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-12.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-12.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-12.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-12.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-12.5 + parent: 1 + - uid: 105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-8.5 + parent: 1 + - uid: 212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 1 + - uid: 215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-10.5 + parent: 1 + - uid: 246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-11.5 + parent: 1 + - uid: 247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-12.5 + parent: 1 + - uid: 248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-12.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-12.5 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-12.5 + parent: 1 + - uid: 251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-12.5 + parent: 1 + - uid: 253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-12.5 + parent: 1 + - uid: 254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-11.5 + parent: 1 + - uid: 255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-9.5 + parent: 1 + - uid: 256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-8.5 + parent: 1 +- proto: ToiletDirtyWater + entities: + - uid: 915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,8.5 + parent: 1 + - type: Toilet + lidOpen: True + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 916 +- proto: ToiletEmpty + entities: + - uid: 1056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-9.5 + parent: 1 +- proto: ToyFigurineHeadOfSecurity + entities: + - uid: 2341 + components: + - type: Transform + pos: 26.83425,4.6169963 + parent: 1 +- proto: ToyFigurineParamedic + entities: + - uid: 2338 + components: + - type: Transform + pos: 29.759594,-2.462704 + parent: 1 +- proto: ToyFigurineSecurity + entities: + - uid: 2334 + components: + - type: Transform + pos: 17.759594,-3.493954 + parent: 1 + - uid: 2335 + components: + - type: Transform + pos: 17.790844,-6.4783287 + parent: 1 + - uid: 2336 + components: + - type: Transform + pos: 26.759594,-6.5252037 + parent: 1 +- proto: ToyFigurineWarden + entities: + - uid: 2333 + components: + - type: Transform + pos: 29.509594,0.66229606 + parent: 1 +- proto: Truncheon + entities: + - uid: 1150 + components: + - type: Transform + parent: 1125 + - type: Physics + canCollide: False + - uid: 1151 + components: + - type: Transform + parent: 1125 + - type: Physics + canCollide: False +- proto: VendingMachineBooze + entities: + - uid: 529 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1 +- proto: VendingMachineBountyVend + entities: + - uid: 1215 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 +- proto: VendingMachineChefvend + entities: + - uid: 528 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1 +- proto: VendingMachineChemicals + entities: + - uid: 591 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 +- proto: VendingMachineCigs + entities: + - uid: 2556 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 +- proto: VendingMachineCoffee + entities: + - uid: 2557 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 +- proto: VendingMachineCondiments + entities: + - uid: 127 + components: + - type: Transform + pos: 15.5,4.5 + parent: 1 +- proto: VendingMachineDonut + entities: + - uid: 527 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 +- proto: VendingMachineEngivend + entities: + - uid: 615 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 1 +- proto: VendingMachineGames + entities: + - uid: 1689 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 +- proto: VendingMachineJaniDrobe + entities: + - uid: 2351 + components: + - type: Transform + pos: -20.5,0.5 + parent: 1 +- proto: VendingMachineMedical + entities: + - uid: 580 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 +- proto: VendingMachineSec + entities: + - uid: 1214 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 +- proto: VendingMachineSecDrobe + entities: + - uid: 1132 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 1 +- proto: VendingMachineSeeds + entities: + - uid: 540 + components: + - type: Transform + pos: 17.5,6.5 + parent: 1 + - uid: 922 + components: + - type: Transform + pos: -16.5,8.5 + parent: 1 +- proto: VendingMachineSustenance + entities: + - uid: 560 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 772 + components: + - type: Transform + pos: -23.5,1.5 + parent: 1 + - uid: 1216 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 +- proto: VendingMachineYouTool + entities: + - uid: 616 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 1 +- proto: WallPlastitanium + entities: + - uid: 2 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-2.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-4.5 + parent: 1 + - uid: 28 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-14.5 + parent: 1 + - uid: 34 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-13.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-2.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-2.5 + parent: 1 + - uid: 44 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-2.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 + - uid: 47 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-2.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-2.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 1 + - uid: 50 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,10.5 + parent: 1 + - uid: 51 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,10.5 + parent: 1 + - uid: 52 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,9.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,9.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-11.5 + parent: 1 + - uid: 58 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 1 + - uid: 62 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-14.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 + - uid: 73 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 75 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,1.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-1.5 + parent: 1 + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-1.5 + parent: 1 + - uid: 89 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-4.5 + parent: 1 + - uid: 90 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-5.5 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-7.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-7.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-10.5 + parent: 1 + - uid: 100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-10.5 + parent: 1 + - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-9.5 + parent: 1 + - uid: 102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-9.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-9.5 + parent: 1 + - uid: 104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,2.5 + parent: 1 + - uid: 106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-7.5 + parent: 1 + - uid: 107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-7.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-7.5 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-7.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-5.5 + parent: 1 + - uid: 114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-5.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-3.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-1.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,6.5 + parent: 1 + - uid: 133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,6.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,6.5 + parent: 1 + - uid: 136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,6.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,8.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,8.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,4.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,9.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,9.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,9.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,9.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,9.5 + parent: 1 + - uid: 159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-13.5 + parent: 1 + - uid: 162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,10.5 + parent: 1 + - uid: 165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,10.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,9.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,9.5 + parent: 1 + - uid: 171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,9.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,9.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,9.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,9.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,8.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,8.5 + parent: 1 + - uid: 180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,6.5 + parent: 1 + - uid: 181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,7.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-6.5 + parent: 1 + - uid: 183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,6.5 + parent: 1 + - uid: 184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,6.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,6.5 + parent: 1 + - uid: 188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,6.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,5.5 + parent: 1 + - uid: 190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,4.5 + parent: 1 + - uid: 191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,3.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: -31.5,2.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: -31.5,1.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,0.5 + parent: 1 + - uid: 197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-0.5 + parent: 1 + - uid: 198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-1.5 + parent: 1 + - uid: 199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-2.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-3.5 + parent: 1 + - uid: 201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-3.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-4.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-5.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-5.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-5.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-7.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-7.5 + parent: 1 + - uid: 211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-7.5 + parent: 1 + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-9.5 + parent: 1 + - uid: 214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-9.5 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-10.5 + parent: 1 + - uid: 219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-10.5 + parent: 1 + - uid: 222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-7.5 + parent: 1 + - uid: 224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-7.5 + parent: 1 + - uid: 225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-6.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-4.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-3.5 + parent: 1 + - uid: 229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-2.5 + parent: 1 + - uid: 230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-1.5 + parent: 1 + - uid: 232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-1.5 + parent: 1 + - uid: 233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-1.5 + parent: 1 + - uid: 237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 1 + - uid: 238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + - uid: 242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-7.5 + parent: 1 + - uid: 245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-9.5 + parent: 1 + - uid: 252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 1 + - uid: 259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,3.5 + parent: 1 + - uid: 260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,4.5 + parent: 1 + - uid: 261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,5.5 + parent: 1 + - uid: 262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,5.5 + parent: 1 + - uid: 263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,4.5 + parent: 1 + - uid: 264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,3.5 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,4.5 + parent: 1 + - uid: 266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,5.5 + parent: 1 + - uid: 267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,4.5 + parent: 1 + - uid: 269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-5.5 + parent: 1 + - uid: 273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-1.5 + parent: 1 + - uid: 274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-1.5 + parent: 1 + - uid: 275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-1.5 + parent: 1 + - uid: 276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-1.5 + parent: 1 + - uid: 277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,1.5 + parent: 1 + - uid: 278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,2.5 + parent: 1 + - uid: 279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,3.5 + parent: 1 + - uid: 280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-3.5 + parent: 1 + - uid: 281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-4.5 + parent: 1 + - uid: 282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-5.5 + parent: 1 + - uid: 283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-5.5 + parent: 1 + - uid: 284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 29.5,5.5 + parent: 1 + - uid: 314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,1.5 + parent: 1 + - uid: 315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,0.5 + parent: 1 + - uid: 316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,1.5 + parent: 1 + - uid: 317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,1.5 + parent: 1 + - uid: 318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,1.5 + parent: 1 + - uid: 319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,1.5 + parent: 1 + - uid: 320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-1.5 + parent: 1 + - uid: 321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-2.5 + parent: 1 + - uid: 325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,4.5 + parent: 1 + - uid: 326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,4.5 + parent: 1 + - uid: 328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,4.5 + parent: 1 + - uid: 340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 1 + - uid: 345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + - uid: 349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,4.5 + parent: 1 + - uid: 354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-9.5 + parent: 1 + - uid: 355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-9.5 + parent: 1 + - uid: 356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 1 + - uid: 367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 + - uid: 379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-3.5 + parent: 1 + - uid: 380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 1 + - uid: 383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 1 + - uid: 384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + - uid: 385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 1 + - uid: 386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 1 + - uid: 387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-4.5 + parent: 1 + - uid: 389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 1 + - uid: 392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,5.5 + parent: 1 + - uid: 399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,8.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: 18.5,0.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: 28.5,2.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: 29.5,2.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: 22.5,2.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: 22.5,3.5 + parent: 1 + - uid: 417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,4.5 + parent: 1 + - uid: 418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,5.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: 26.5,1.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 1 + - uid: 421 + components: + - type: Transform + pos: 25.5,1.5 + parent: 1 + - uid: 422 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 1 + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,5.5 + parent: 1 + - uid: 425 + components: + - type: Transform + pos: 17.5,4.5 + parent: 1 + - uid: 426 + components: + - type: Transform + pos: 18.5,4.5 + parent: 1 + - uid: 428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,4.5 + parent: 1 + - uid: 429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,3.5 + parent: 1 + - uid: 430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,2.5 + parent: 1 + - uid: 431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,1.5 + parent: 1 + - uid: 432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,0.5 + parent: 1 + - uid: 433 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 1 + - uid: 434 + components: + - type: Transform + pos: 20.5,0.5 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 1 + - uid: 438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,7.5 + parent: 1 + - uid: 439 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 1 + - uid: 444 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 1 + - uid: 447 + components: + - type: Transform + pos: 22.5,1.5 + parent: 1 + - uid: 462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,4.5 + parent: 1 + - uid: 465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-18.5 + parent: 1 + - uid: 466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-18.5 + parent: 1 + - uid: 477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,9.5 + parent: 1 + - uid: 478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,5.5 + parent: 1 + - uid: 479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,4.5 + parent: 1 + - uid: 480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,4.5 + parent: 1 + - uid: 483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,4.5 + parent: 1 + - uid: 484 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 1 + - uid: 485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1 + - uid: 488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,8.5 + parent: 1 + - uid: 494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,7.5 + parent: 1 + - uid: 495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 1 + - uid: 496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 1 + - uid: 498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1 + - uid: 502 + components: + - type: Transform + pos: 8.5,5.5 + parent: 1 + - uid: 505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,5.5 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - uid: 508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,5.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: -10.5,7.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: -13.5,8.5 + parent: 1 + - uid: 512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: 19.5,0.5 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 1 + - uid: 517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 1 + - uid: 518 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 519 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 + - uid: 522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + - uid: 523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 + - uid: 524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + - uid: 526 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: 17.5,0.5 + parent: 1 + - uid: 539 + components: + - type: Transform + pos: 16.5,6.5 + parent: 1 + - uid: 551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + - uid: 558 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 1 + - uid: 565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 1 + - uid: 570 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - uid: 571 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 1 + - uid: 572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 1 + - uid: 634 + components: + - type: Transform + pos: -13.5,7.5 + parent: 1 + - uid: 635 + components: + - type: Transform + pos: -10.5,8.5 + parent: 1 + - uid: 636 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 1 + - uid: 637 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 1 + - uid: 643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-8.5 + parent: 1 + - uid: 648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-3.5 + parent: 1 + - uid: 649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 1 + - uid: 656 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 658 + components: + - type: Transform + pos: 6.5,8.5 + parent: 1 + - uid: 672 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 1 + - uid: 774 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 1 + - uid: 814 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 1 + - uid: 815 + components: + - type: Transform + pos: -31.5,3.5 + parent: 1 + - uid: 816 + components: + - type: Transform + pos: -30.5,3.5 + parent: 1 + - uid: 817 + components: + - type: Transform + pos: -30.5,4.5 + parent: 1 + - uid: 833 + components: + - type: Transform + pos: 24.5,1.5 + parent: 1 + - uid: 834 + components: + - type: Transform + pos: 24.5,0.5 + parent: 1 + - uid: 835 + components: + - type: Transform + pos: 27.5,2.5 + parent: 1 + - uid: 836 + components: + - type: Transform + pos: 24.5,3.5 + parent: 1 + - uid: 837 + components: + - type: Transform + pos: 28.5,5.5 + parent: 1 + - uid: 839 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 1 + - uid: 842 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 1 + - uid: 902 + components: + - type: Transform + pos: -21.5,4.5 + parent: 1 + - uid: 903 + components: + - type: Transform + pos: -20.5,4.5 + parent: 1 + - uid: 904 + components: + - type: Transform + pos: -20.5,3.5 + parent: 1 + - uid: 905 + components: + - type: Transform + pos: -20.5,5.5 + parent: 1 + - uid: 906 + components: + - type: Transform + pos: -21.5,7.5 + parent: 1 + - uid: 907 + components: + - type: Transform + pos: -20.5,7.5 + parent: 1 + - uid: 908 + components: + - type: Transform + pos: -19.5,7.5 + parent: 1 + - uid: 1001 + components: + - type: Transform + pos: 25.5,6.5 + parent: 1 + - uid: 1556 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 1 + - uid: 1685 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 1 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 172 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: 26.5,2.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: 19.5,5.5 + parent: 1 + - uid: 584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 1 + - uid: 729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-1.5 + parent: 1 + - uid: 975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,1.5 + parent: 1 + - uid: 1092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,0.5 + parent: 1 +- proto: WardrobePrisonFilled + entities: + - uid: 609 + components: + - type: Transform + pos: -12.5,1.5 + parent: 1 + - uid: 610 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 +- proto: WarpPointShip + entities: + - uid: 2563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 +- proto: WeaponCapacitorRecharger + entities: + - uid: 2337 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 2342 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 2366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 +- proto: WeaponDisabler + entities: + - uid: 1161 + components: + - type: Transform + parent: 1124 + - type: Physics + canCollide: False + - uid: 1162 + components: + - type: Transform + parent: 1124 + - type: Physics + canCollide: False + - uid: 1163 + components: + - type: Transform + parent: 1124 + - type: Physics + canCollide: False + - uid: 1164 + components: + - type: Transform + parent: 1124 + - type: Physics + canCollide: False +- proto: WeaponEmpEmitter + entities: + - uid: 490 + components: + - type: Transform + parent: 323 + - type: Physics + canCollide: False + - uid: 581 + components: + - type: Transform + parent: 323 + - type: Physics + canCollide: False + - uid: 601 + components: + - type: Transform + parent: 323 + - type: Physics + canCollide: False + - uid: 689 + components: + - type: Transform + parent: 323 + - type: Physics + canCollide: False + - uid: 697 + components: + - type: Transform + parent: 323 + - type: Physics + canCollide: False +- proto: WeaponEnergyGun + entities: + - uid: 1170 + components: + - type: Transform + parent: 1123 + - type: Physics + canCollide: False + - uid: 1171 + components: + - type: Transform + parent: 1123 + - type: Physics + canCollide: False + - uid: 1172 + components: + - type: Transform + parent: 1123 + - type: Physics + canCollide: False + - uid: 1173 + components: + - type: Transform + parent: 1123 + - type: Physics + canCollide: False + - uid: 1174 + components: + - type: Transform + parent: 1123 + - type: Physics + canCollide: False +- proto: WeaponGrapplingGun + entities: + - uid: 1228 + components: + - type: Transform + pos: -2.516765,-6.389559 + parent: 1 + - uid: 1229 + components: + - type: Transform + pos: -2.485515,-5.405184 + parent: 1 + - uid: 1230 + components: + - type: Transform + pos: -2.485515,-4.420809 + parent: 1 +- proto: WeaponLaserCarbine + entities: + - uid: 1143 + components: + - type: Transform + parent: 1131 + - type: Physics + canCollide: False + - uid: 1144 + components: + - type: Transform + parent: 1131 + - type: Physics + canCollide: False + - uid: 1145 + components: + - type: Transform + parent: 1131 + - type: Physics + canCollide: False + - uid: 1146 + components: + - type: Transform + parent: 1131 + - type: Physics + canCollide: False + - uid: 1147 + components: + - type: Transform + parent: 1131 + - type: Physics + canCollide: False +- proto: WeaponLauncherRocket + entities: + - uid: 1205 + components: + - type: Transform + parent: 497 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponLauncherRocketEmp + entities: + - uid: 1200 + components: + - type: Transform + parent: 1016 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponPistolMk58 + entities: + - uid: 1157 + components: + - type: Transform + parent: 1018 + - type: Physics + canCollide: False + - uid: 1158 + components: + - type: Transform + parent: 1018 + - type: Physics + canCollide: False + - uid: 1159 + components: + - type: Transform + parent: 1018 + - type: Physics + canCollide: False + - uid: 1160 + components: + - type: Transform + parent: 1018 + - type: Physics + canCollide: False +- proto: WeaponRackBase + entities: + - uid: 1126 + components: + - type: Transform + pos: 19.5,1.5 + parent: 1 + - type: Lock + locked: True + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + weapon1_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1099 + weapon2_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1100 + weapon3_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1101 + weapon4_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1102 + weapon5_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1113 + weapon6_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1127 + components: + - type: Transform + pos: 18.5,1.5 + parent: 1 + - type: Lock + locked: True + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + weapon1_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1138 + weapon2_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1139 + weapon3_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1140 + weapon4_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1141 + weapon5_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1142 + weapon6_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1131 + components: + - type: Transform + pos: 17.5,1.5 + parent: 1 + - type: Lock + locked: True + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + weapon1_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1143 + weapon2_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1144 + weapon3_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1145 + weapon4_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1146 + weapon5_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1147 + weapon6_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WeaponRackMeleeBase + entities: + - uid: 1125 + components: + - type: Transform + pos: 20.5,1.5 + parent: 1 + - type: Lock + locked: True + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + weapon1_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1148 + weapon2_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1149 + weapon3_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1150 + weapon4_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1151 + weapon5_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1152 + weapon6_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WeaponRackPistolWallmountedBase + entities: + - uid: 1010 + components: + - type: Transform + pos: 22.5,2.5 + parent: 1 + - type: Lock + locked: True + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + weapon1_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1153 + weapon2_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1154 + weapon3_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1155 + weapon4_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1156 + weapon5_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon6_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1018 + components: + - type: Transform + pos: 22.5,3.5 + parent: 1 + - type: Lock + locked: True + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + weapon1_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1157 + weapon2_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1158 + weapon3_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1159 + weapon4_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1160 + weapon5_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon6_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1124 + components: + - type: Transform + pos: 22.5,1.5 + parent: 1 + - type: Lock + locked: True + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + weapon1_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1161 + weapon2_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1162 + weapon3_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1163 + weapon4_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1164 + weapon5_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon6_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WeaponRackPistolWallmountedSecurity + entities: + - uid: 1013 + components: + - type: Transform + pos: 28.5,5.5 + parent: 1 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + weapon1_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1165 + weapon2_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon3_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon4_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon5_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon6_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WeaponRackWallmountedBase + entities: + - uid: 323 + components: + - type: Transform + pos: 21.5,4.5 + parent: 1 + - type: Lock + locked: True + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + weapon1_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 490 + weapon2_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 581 + weapon3_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 601 + weapon4_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 689 + weapon5_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 697 + weapon6_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1123 + components: + - type: Transform + pos: 19.5,4.5 + parent: 1 + - type: Lock + locked: True + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + weapon1_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1170 + weapon2_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1171 + weapon3_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1172 + weapon4_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1173 + weapon5_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1174 + weapon6_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WeaponRevolverInspector + entities: + - uid: 1153 + components: + - type: Transform + parent: 1010 + - type: Physics + canCollide: False + - uid: 1154 + components: + - type: Transform + parent: 1010 + - type: Physics + canCollide: False + - uid: 1155 + components: + - type: Transform + parent: 1010 + - type: Physics + canCollide: False + - uid: 1156 + components: + - type: Transform + parent: 1010 + - type: Physics + canCollide: False +- proto: WeaponRevolverMateba + entities: + - uid: 1165 + components: + - type: Transform + parent: 1013 + - type: Physics + canCollide: False +- proto: WeaponRifleLecter + entities: + - uid: 1099 + components: + - type: Transform + parent: 1126 + - type: Physics + canCollide: False + - uid: 1100 + components: + - type: Transform + parent: 1126 + - type: Physics + canCollide: False + - uid: 1101 + components: + - type: Transform + parent: 1126 + - type: Physics + canCollide: False + - uid: 1102 + components: + - type: Transform + parent: 1126 + - type: Physics + canCollide: False + - uid: 1113 + components: + - type: Transform + parent: 1126 + - type: Physics + canCollide: False +- proto: WeaponShotgunEnforcer + entities: + - uid: 1138 + components: + - type: Transform + parent: 1127 + - type: Physics + canCollide: False + - uid: 1139 + components: + - type: Transform + parent: 1127 + - type: Physics + canCollide: False + - uid: 1140 + components: + - type: Transform + parent: 1127 + - type: Physics + canCollide: False + - uid: 1141 + components: + - type: Transform + parent: 1127 + - type: Physics + canCollide: False + - uid: 1142 + components: + - type: Transform + parent: 1127 + - type: Physics + canCollide: False +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 823 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 1 +- proto: WindoorSecure + entities: + - uid: 619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-6.5 + parent: 1 + - uid: 683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 1 + - uid: 2385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,8.5 + parent: 1 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,1.5 + parent: 1 + - uid: 684 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 1 + - uid: 956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 1 + - uid: 604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,0.5 + parent: 1 + - uid: 605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,1.5 + parent: 1 + - uid: 606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,1.5 + parent: 1 + - uid: 607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1 + - uid: 608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 + - uid: 620 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 1 + - uid: 621 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 1 + - uid: 957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 1 +... diff --git a/Resources/Maps/_NF/Shuttles/Security/fighter.yml b/Resources/Maps/_NF/Shuttles/Security/fighter.yml new file mode 100644 index 00000000000..ab489c418ea --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/Security/fighter.yml @@ -0,0 +1,770 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 82: FloorShuttleBlack + 124: Lattice + 125: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.15940452,-1.515625 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: UgAAAAAAUgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 0: -1,3 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 1: -1,4 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelCornerNe + decals: + 3: 1,2 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelCornerNw + decals: + 2: -1,2 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelCornerSe + decals: + 4: 1,-1 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelCornerSw + decals: + 5: 0,-1 + 10: -1,0 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelInnerSw + decals: + 11: 0,0 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelLineE + decals: + 6: 1,1 + 7: 1,0 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelLineN + decals: + 9: 0,2 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelLineW + decals: + 8: -1,1 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 30583 + 0,1: + 0: 1 + 1: 6 + 0,-1: + 0: 30583 + -1,0: + 0: 52428 + -1,1: + 0: 12 + -1,-1: + 1: 17476 + 0: 34952 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockBrigGlassLocked + entities: + - uid: 27 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 28 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 47 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 29 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 86 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 67 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 +- proto: CableHV + entities: + - uid: 57 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: CableMV + entities: + - uid: 60 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 93 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 +- proto: ChairFolding + entities: + - uid: 55 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 1 +- proto: ComputerIFF + entities: + - uid: 52 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 53 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 +- proto: GeneratorWallmountAPU + entities: + - uid: 48 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 35 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 +- proto: Grille + entities: + - uid: 36 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 44 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 +- proto: LockerEvidence + entities: + - uid: 56 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 +- proto: PlastitaniumWindow + entities: + - uid: 17 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 85 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 2 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 +- proto: SmallGyroscopeSecurity + entities: + - uid: 34 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 +- proto: Stool + entities: + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 50 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 +- proto: ThrusterSecurity + entities: + - uid: 30 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + - uid: 32 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 +- proto: WallPlastitanium + entities: + - uid: 3 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 + - uid: 4 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 12 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 16 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 26 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 51 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 +- proto: WarpPointShip + entities: + - uid: 101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 92 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 +... diff --git a/Resources/Maps/_NF/Shuttles/Security/rogue.yml b/Resources/Maps/_NF/Shuttles/Security/rogue.yml new file mode 100644 index 00000000000..75cb949833c --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/Security/rogue.yml @@ -0,0 +1,865 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 77: FloorRGlass + 82: FloorShuttleBlack + 124: Lattice + 125: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: 2.2425354,-3.692793 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: fQAAAAAATQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAUgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAUgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAUgAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 1: -1,-2 + 5: 1,-3 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 4: 1,-4 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 2: -1,-1 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelEndN + decals: + 0: 1,-1 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelEndS + decals: + 3: 1,-2 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 1911 + 1: 28672 + 0,1: + 1: 7 + 0,-1: + 0: 30583 + -1,0: + 1: 52428 + -1,1: + 1: 12 + -1,-1: + 1: 12 + 0: 52416 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockExternalGlassLocked + entities: + - uid: 19 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 23 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 22 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 61 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 24 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 101 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 77 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 +- proto: CableHV + entities: + - uid: 71 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 +- proto: CableMV + entities: + - uid: 74 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 26 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 45 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 44 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 +- proto: GeneratorWallmountAPU + entities: + - uid: 62 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 51 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 +- proto: Grille + entities: + - 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: 0.5,1.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 58 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - uid: 59 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 +- proto: PlastitaniumWindow + entities: + - uid: 14 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 +- proto: PowerCellHigh + entities: + - uid: 124 + components: + - type: Transform + pos: -1.676467,1.1426032 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: -1.2806337,1.1426032 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: -1.488967,0.89260316 + parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 +- proto: PoweredlightColoredFrostyBlue + entities: + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 +- proto: Railing + entities: + - uid: 90 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + - uid: 91 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 +- proto: ShuttleGunSvalinnMachineGun + entities: + - uid: 68 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 121 +- proto: SignalButtonDirectional + entities: + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 68: + - Pressed: Toggle + - Pressed: Trigger +- proto: SignSecureSmallRed + entities: + - uid: 120 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 +- proto: SmallGyroscopeSecurity + entities: + - uid: 50 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 64 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 65 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 66 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 +- proto: ThrusterSecurity + entities: + - uid: 46 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 47 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 +- proto: WallPlastitanium + entities: + - uid: 3 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 +- proto: WarpPointShip + entities: + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 +- proto: WeaponCapacitorRecharger + entities: + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 2 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 +... diff --git a/Resources/Maps/_NF/Shuttles/cleithro.yml b/Resources/Maps/_NF/Shuttles/cleithro.yml new file mode 100644 index 00000000000..85031cfcd20 --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/cleithro.yml @@ -0,0 +1,4800 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 107: FloorTechMaint + 111: FloorWhite + 116: FloorWhiteMono + 122: FloorWoodLarge + 124: Lattice + 125: Plating +entities: +- proto: "" + entities: + - uid: 2 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.46875,-0.5104167 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfQAAAAAAdAAAAAAAdAAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfQAAAAAAdAAAAAAAdAAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + 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: '#52B4E9FC' + id: BrickTileWhiteCornerNe + decals: + 47: 3,1 + 55: -3,4 + - node: + color: '#52B4E9FC' + id: BrickTileWhiteCornerNw + decals: + 41: -6,1 + 43: -6,4 + - node: + color: '#52B4E9FC' + id: BrickTileWhiteCornerSe + decals: + 31: -3,-6 + 45: 3,-1 + - node: + color: '#52B4E9FC' + id: BrickTileWhiteCornerSw + decals: + 28: -6,-6 + 44: -6,3 + - node: + color: '#52B4E9FC' + id: BrickTileWhiteInnerNe + decals: + 60: -3,1 + - node: + color: '#52B4E9FC' + id: BrickTileWhiteInnerNw + decals: + 58: -5,1 + - node: + color: '#52B4E9FC' + id: BrickTileWhiteInnerSe + decals: + 61: -3,-1 + - node: + color: '#52B4E9FC' + id: BrickTileWhiteInnerSw + decals: + 59: -5,3 + - node: + color: '#52B4E9FC' + id: BrickTileWhiteLineE + decals: + 32: -3,-5 + 33: -3,-4 + 34: -3,-3 + 35: -3,-2 + 46: 3,0 + 53: -3,2 + 54: -3,3 + - node: + color: '#52B4E9FC' + id: BrickTileWhiteLineN + decals: + 48: 2,1 + 49: 1,1 + 50: 0,1 + 51: -1,1 + 52: -2,1 + 56: -5,4 + 57: -4,4 + - node: + color: '#52B4E9FC' + id: BrickTileWhiteLineS + decals: + 29: -5,-6 + 30: -4,-6 + 36: -2,-1 + 37: -1,-1 + 38: 0,-1 + 39: 1,-1 + 40: 2,-1 + - node: + color: '#52B4E9FC' + id: BrickTileWhiteLineW + decals: + 22: -6,-5 + 23: -6,-4 + 24: -6,-3 + 25: -6,-2 + 26: -6,-1 + 27: -6,0 + 42: -5,2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 81: 0,-8 + 82: -1,-8 + 83: 1,-8 + 88: -1,6 + 89: 0,6 + 90: 1,6 + 105: 8,-5 + 106: 9,-5 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 95: 9,5 + 96: 10,6 + 97: 10,7 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 84: -1,-9 + 85: 0,-9 + 86: 1,-9 + 103: 8,-7 + 104: 9,-6 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 87: 0,7 + 91: -1,7 + 92: 1,7 + 93: 10,5 + 94: 9,6 + 98: 9,7 + 99: 8,7 + 100: 9,4 + 101: 9,-7 + 102: 8,-6 + - node: + cleanable: True + color: '#D4D4D496' + id: LoadingArea + decals: + 72: 5,6 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#D4D4D496' + id: LoadingArea + decals: + 74: -8,-3 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#D4D4D496' + id: LoadingArea + decals: + 73: 8,-2 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 79: -9,1 + 80: -9,-1 + - node: + color: '#EFB341FF' + id: WarnCornerNE + decals: + 66: 6,4 + - node: + color: '#EFB341FF' + id: WarnCornerNW + decals: + 65: 3,4 + - node: + color: '#EFB341FF' + id: WarnCornerSE + decals: + 69: 6,2 + - node: + color: '#EFB341FF' + id: WarnCornerSW + decals: + 64: 3,3 + 68: 5,2 + - node: + color: '#EFB341FF' + id: WarnCornerSmallSW + decals: + 71: 5,3 + - node: + color: '#EFB341FF' + id: WarnLineE + decals: + 67: 6,3 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 10: -7,-1 + 11: -7,1 + 15: 4,0 + 77: -10,-1 + 78: -10,1 + - node: + color: '#EFB341FF' + id: WarnLineN + decals: + 70: 4,3 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 16: 0,2 + 17: 3,2 + 18: 1,-2 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 12: -7,-1 + 13: -7,1 + 14: 4,0 + 75: -10,1 + 76: -10,-1 + - node: + color: '#EFB341FF' + id: WarnLineW + decals: + 62: 4,4 + 63: 5,4 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 19: 1,-2 + 20: 0,2 + 21: 3,2 + - node: + color: '#FFFFFFFF' + id: largebrush + decals: + 0: 4.9084654,-6.077962 + 1: 5.7417984,-6.077962 + 2: 6.0647154,-6.0883784 + 3: 4.918882,-5.2237954 + 4: 4.9397154,-4.859212 + 5: 5.5334654,-5.202962 + 6: 6.0334654,-4.8383784 + 7: 6.012632,-5.452962 + 8: 6.0022154,-5.640462 + 9: 5.6272154,-4.890462 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + -1,0: + 0: 65535 + 0,-1: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 3 + 1: 12 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 2,0: + 0: 13107 + 1: 16384 + 2,1: + 0: 65527 + 1: 8 + -3,0: + 0: 36044 + -3,1: + 0: 34952 + -2,0: + 0: 65535 + -2,1: + 0: 65503 + 1: 32 + -1,1: + 0: 57343 + 1: 8192 + -1,2: + 1: 6 + 0: 8 + 0,-3: + 0: 62208 + 1: 3072 + 0,-2: + 0: 65535 + 1,-3: + 0: 61440 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-3: + 0: 4096 + 1: 8192 + 2,-2: + 0: 30579 + 1: 4 + 2,-1: + 0: 13107 + 1: 4 + -3,-3: + 1: 32768 + -3,-2: + 0: 34952 + -3,-1: + 0: 52360 + -2,-3: + 0: 61440 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-3: + 0: 63488 + 1: 1536 + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + 1,2: + 1: 8 + 2,2: + 0: 7 + 1: 8 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirAlarm + entities: + - uid: 453 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 562 + - 561 + - 580 + - 571 + - 445 + - 447 + - 448 + - 446 + - 452 + - 451 + - 450 + - 592 + - 593 + - type: AtmosDevice + joinedGrid: 2 +- proto: AirCanister + entities: + - uid: 297 + components: + - type: Transform + anchored: True + pos: 6.5,3.5 + parent: 2 + - type: Physics + bodyType: Static + - type: AtmosDevice + joinedGrid: 2 +- proto: AirlockEngineering + entities: + - uid: 1 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 2 +- proto: AirlockExternalGlass + entities: + - uid: 413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 2 + - uid: 414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 2 +- proto: AirlockGlass + entities: + - uid: 167 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 97 +- proto: AirlockGlassShuttle + entities: + - uid: 371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 2 + - uid: 412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 2 +- proto: AirlockMedical + entities: + - uid: 86 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 236 +- proto: AirlockMedicalGlass + entities: + - uid: 241 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 237 +- proto: AltarSpawner + entities: + - uid: 662 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 +- proto: APCBasic + entities: + - uid: 98 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 2 + - uid: 455 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 2 + - uid: 484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 2 +- proto: AtmosDeviceFanTiny + entities: + - uid: 407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 2 + - uid: 408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 2 +- proto: AtmosFixBlockerMarker + entities: + - uid: 525 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 526 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 2 + - uid: 527 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 528 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 529 + components: + - type: Transform + pos: -1.5,8.5 + parent: 2 + - uid: 530 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - uid: 531 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 2 + - uid: 532 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 + - uid: 534 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 603 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 607 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - uid: 637 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - uid: 639 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 +- proto: BenchSofaCorpLeft + entities: + - uid: 158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: BenchSofaCorpMiddle + entities: + - uid: 155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: BenchSofaCorpRight + entities: + - uid: 157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: BikeHornImplanter + entities: + - uid: 600 + components: + - type: Transform + parent: 596 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Bonfire + entities: + - uid: 628 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 +- proto: BoxFolderWhite + entities: + - uid: 40 + components: + - type: Transform + pos: -5.3251176,3.527915 + parent: 2 + - uid: 228 + components: + - type: Transform + pos: 2.4154034,-2.434526 + parent: 2 +- proto: BrbSign + entities: + - uid: 43 + components: + - type: Transform + pos: -5.7313676,3.6320815 + parent: 2 +- proto: Bucket + entities: + - uid: 648 + components: + - type: Transform + pos: 8.324153,7.68656 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 11 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - uid: 42 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 70 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 259 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 261 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 2 + - uid: 262 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 + - uid: 263 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 268 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 + - uid: 269 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 271 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 272 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - uid: 273 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 309 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 310 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 312 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - uid: 313 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 321 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 335 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 337 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 344 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 345 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 347 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - uid: 348 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 + - uid: 349 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 351 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 352 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 353 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - uid: 354 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 355 + components: + - type: Transform + pos: -1.5,6.5 + parent: 2 + - uid: 356 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - uid: 358 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 370 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 437 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - uid: 457 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 473 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 474 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 488 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 489 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 491 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: -2.5,0.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - uid: 494 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 + - uid: 495 + components: + - type: Transform + pos: -3.5,3.5 + parent: 2 + - uid: 496 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 497 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 498 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 499 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 500 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 + - uid: 501 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 504 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 505 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 510 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 513 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - uid: 514 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 517 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 518 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 519 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 + - uid: 521 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 536 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 608 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 2 + - uid: 610 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 2 + - uid: 611 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 2 + - uid: 612 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - uid: 613 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 2 + - uid: 615 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 +- proto: CableHV + entities: + - uid: 428 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - uid: 429 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 430 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 431 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 432 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 435 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 436 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 +- proto: CableMV + entities: + - uid: 49 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 299 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 458 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 459 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 460 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 461 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 462 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 463 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 464 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 465 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 467 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - uid: 468 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 469 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - uid: 470 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - uid: 471 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 472 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 475 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - uid: 476 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 477 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 478 + components: + - type: Transform + pos: -2.5,0.5 + parent: 2 + - uid: 479 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - uid: 480 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 481 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 482 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 485 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 486 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 487 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 508 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 509 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 +- proto: CableTerminal + entities: + - uid: 434 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 +- proto: CandyBowl + entities: + - uid: 179 + components: + - type: Transform + pos: -2.5895963,2.5470955 + parent: 2 + - type: Bin + items: + - 54 + - 230 + - 651 + - 652 + - 653 + - 654 + - 655 + - 656 + - 657 + - 658 + - 659 + - 660 + - 661 + - type: ContainerContainer + containers: + bin-container: !type:Container + showEnts: False + occludes: True + ents: + - 54 + - 230 + - 651 + - 652 + - 653 + - 654 + - 655 + - 656 + - 657 + - 658 + - 659 + - 660 + - 661 +- proto: Catwalk + entities: + - uid: 29 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,4.5 + parent: 2 + - uid: 148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 2 + - uid: 170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 2 + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 2 + - uid: 205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 2 + - uid: 246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 2 + - uid: 247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 2 + - uid: 248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 2 + - uid: 249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 2 + - uid: 250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 2 + - uid: 251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 2 + - uid: 254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 2 + - uid: 257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 2 + - uid: 258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 2 + - uid: 270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 2 + - uid: 326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 2 + - uid: 327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 2 + - uid: 328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 2 + - uid: 329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 2 + - uid: 330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 2 + - uid: 340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 2 + - uid: 342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 2 + - uid: 343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 2 + - uid: 374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 2 + - uid: 375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 2 +- proto: ChairFolding + entities: + - uid: 323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,6.5 + parent: 2 + - uid: 626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,7.5 + parent: 2 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 377 + components: + - type: Transform + pos: 9.5449505,4.77496 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: 9.5449505,4.55621 + parent: 2 +- proto: ChairOfficeLight + entities: + - uid: 265 + components: + - type: Transform + pos: -3.5,3.5 + parent: 2 +- proto: ClosetSteelBase + entities: + - uid: 81 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14908 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 212 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClothingOuterStraightjacket + entities: + - uid: 212 + components: + - type: Transform + parent: 81 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesClown + entities: + - uid: 598 + components: + - type: Transform + parent: 596 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClownRecorder + entities: + - uid: 599 + components: + - type: Transform + parent: 596 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CockroachTimedSpawner + entities: + - uid: 51 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 +- proto: ComfyChair + entities: + - uid: 223 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 90 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 2 +- proto: ComputerTabletopShuttle + entities: + - uid: 93 + components: + - type: Transform + pos: -3.5,4.5 + parent: 2 +- proto: ComputerTabletopStationRecords + entities: + - uid: 92 + components: + - type: Transform + pos: -4.5,4.5 + parent: 2 +- proto: ComputerTabletopSurveillanceCameraMonitor + entities: + - uid: 293 + components: + - type: Transform + pos: -2.5,4.5 + parent: 2 +- proto: ComputerTelevision + entities: + - uid: 140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 2 +- proto: ComputerWallmountWithdrawBankATM + entities: + - uid: 266 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + - type: ItemSlots +- proto: CrateFunPlushie + entities: + - uid: 95 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 +- proto: CrateFunToyBox + entities: + - uid: 96 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 +- proto: CrateNPCEmotionalSupportSafe + entities: + - uid: 522 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 2 +- proto: DeskBell + entities: + - uid: 41 + components: + - type: Transform + pos: -3.4645963,2.484461 + parent: 2 +- proto: DisposalBend + entities: + - uid: 386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 +- proto: DisposalPipe + entities: + - uid: 169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 2 + - uid: 379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 2 + - uid: 380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 2 + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 2 + - uid: 602 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 +- proto: DogBed + entities: + - uid: 45 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 +- proto: DrinkMeadJug + entities: + - uid: 643 + components: + - type: Transform + pos: 9.9207735,6.423042 + parent: 2 +- proto: DrinkWaterCup + entities: + - uid: 112 + components: + - type: Transform + pos: -3.50555,-5.5040154 + parent: 2 + - uid: 129 + components: + - type: Transform + pos: -3.3597167,-5.212349 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: -3.672217,-5.201932 + parent: 2 +- proto: EmergencyLight + entities: + - uid: 400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 2 + - uid: 438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 2 + - uid: 439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 2 + - uid: 440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 2 + - uid: 441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + - uid: 442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 2 + - uid: 443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 2 + - uid: 444 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 564 + components: + - type: Transform + pos: -8.5,1.5 + parent: 2 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 94 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 2 +- proto: FaxMachineShip + entities: + - uid: 46 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 +- proto: Firelock + entities: + - uid: 447 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 453 + - uid: 448 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 453 + - uid: 449 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 +- proto: FirelockEdge + entities: + - uid: 450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 453 + - uid: 451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 453 + - uid: 452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 453 +- proto: FirelockGlass + entities: + - uid: 445 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 453 + - uid: 446 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 453 +- proto: Fireplace + entities: + - uid: 220 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 +- proto: FloorDrain + entities: + - uid: 243 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FoodBoxPizza + entities: + - uid: 334 + components: + - type: Transform + pos: 0.50623906,-8.462236 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: 0.50623906,-8.305986 + parent: 2 +- proto: FoodCondimentSqueezeBottleKetchup + entities: + - uid: 597 + components: + - type: Transform + parent: 596 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodKebabSkewer + entities: + - uid: 361 + components: + - type: Transform + pos: 8.517926,7.7147355 + parent: 2 + - uid: 625 + components: + - type: Transform + pos: 8.78876,7.67722 + parent: 2 +- proto: FoodPizzaMoldySlice + entities: + - uid: 647 + components: + - type: Transform + pos: 0.49173152,-7.2009816 + parent: 2 +- proto: FoodSnackCnDs + entities: + - uid: 54 + components: + - type: Transform + parent: 179 + - type: Physics + canCollide: False + - uid: 230 + components: + - type: Transform + parent: 179 + - type: Physics + canCollide: False + - uid: 651 + components: + - type: Transform + parent: 179 + - type: Physics + canCollide: False +- proto: FoodTinBeansTrash + entities: + - uid: 50 + components: + - type: Transform + pos: 9.788311,-6.519189 + parent: 2 + - uid: 53 + components: + - type: Transform + pos: 9.579978,-6.3421054 + parent: 2 + - uid: 79 + components: + - type: Transform + pos: 9.329978,-6.508772 + parent: 2 +- proto: GasPassiveVent + entities: + - uid: 308 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 192 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 303 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 542 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 59 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 315 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 383 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 417 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 421 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 425 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 539 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 547 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 554 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 563 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 565 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 570 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 581 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 582 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 583 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 584 + components: + - type: Transform + pos: -3.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 590 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 136 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 137 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 549 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPort + entities: + - uid: 279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 398 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPressurePump + entities: + - uid: 274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,4.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 67 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 553 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 561 + components: + - type: Transform + pos: -2.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 453 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 453 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 453 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 182 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 562 + components: + - type: Transform + pos: -3.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 453 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 453 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 453 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GravityGeneratorMini + entities: + - uid: 281 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 +- proto: Grille + entities: + - uid: 16 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 2 + - uid: 17 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 2 + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 2 + - uid: 19 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 2 + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 2 + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 2 + - uid: 36 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 2 + - uid: 57 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 2 + - uid: 164 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 165 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 171 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 2 + - uid: 199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-4.5 + parent: 2 + - uid: 201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 209 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 2 + - uid: 218 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 2 + - uid: 234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 2 + - uid: 255 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 256 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 2 + - uid: 289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,5.5 + parent: 2 + - uid: 317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 2 + - uid: 318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 2 + - uid: 362 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 365 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - uid: 367 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 2 + - uid: 411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 2 + - uid: 426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 2 + - uid: 427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: 11.5,6.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - uid: 630 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 +- proto: GrilleDiagonal + entities: + - uid: 604 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 +- proto: LockerClown + entities: + - uid: 596 + components: + - type: Transform + pos: -1.5,6.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + 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: + - 600 + - 597 + - 598 + - 599 + - 601 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerJanitorFilled + entities: + - uid: 283 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 +- proto: MailingUnit + entities: + - uid: 55 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - type: MailingUnit + tag: Cleithro + - type: Configuration + config: + tag: Cleithro + - uid: 69 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 + - type: MailingUnit + tag: Cleithro + - type: Configuration + config: + tag: Cleithro +- proto: Mattress + entities: + - uid: 208 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - uid: 214 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 +- proto: MopBucketFull + entities: + - uid: 294 + components: + - type: Transform + pos: 6.5098834,-1.4131184 + parent: 2 +- proto: MouseTimedSpawner + entities: + - uid: 663 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 +- proto: PaintingTheScream + entities: + - uid: 512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 2 +- proto: Pen + entities: + - uid: 229 + components: + - type: Transform + pos: 2.3737366,-2.497026 + parent: 2 +- proto: PetRockCarrier + entities: + - uid: 454 + components: + - type: Transform + pos: 5.3204927,-5.6958237 + parent: 2 +- proto: PillTricordrazine + entities: + - uid: 652 + components: + - type: Transform + parent: 179 + - type: Physics + canCollide: False + - uid: 653 + components: + - type: Transform + parent: 179 + - type: Physics + canCollide: False + - uid: 654 + components: + - type: Transform + parent: 179 + - type: Physics + canCollide: False + - uid: 655 + components: + - type: Transform + parent: 179 + - type: Physics + canCollide: False + - uid: 656 + components: + - type: Transform + parent: 179 + - type: Physics + canCollide: False + - uid: 657 + components: + - type: Transform + parent: 179 + - type: Physics + canCollide: False + - uid: 658 + components: + - type: Transform + parent: 179 + - type: Physics + canCollide: False + - uid: 659 + components: + - type: Transform + parent: 179 + - type: Physics + canCollide: False + - uid: 660 + components: + - type: Transform + parent: 179 + - type: Physics + canCollide: False + - uid: 661 + components: + - type: Transform + parent: 179 + - type: Physics + canCollide: False +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 252 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 +- proto: PlushieBee + entities: + - uid: 641 + components: + - type: Transform + pos: 10.532436,7.5588565 + parent: 2 +- proto: PortableGeneratorPacmanShuttle + entities: + - uid: 213 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static +- proto: PosterContrabandLustyExomorph + entities: + - uid: 640 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 +- proto: PosterLegitGetYourLEGS + entities: + - uid: 515 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 +- proto: PosterLegitHelpOthers + entities: + - uid: 523 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 +- proto: PosterLegitMedicate + entities: + - uid: 287 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 +- proto: PottedPlantRandom + entities: + - uid: 415 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 +- proto: PottedPlantRandomPlastic + entities: + - uid: 159 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 +- proto: Poweredlight + entities: + - uid: 68 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 + - uid: 324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 2 + - uid: 399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 2 + - uid: 402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 2 + - uid: 403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 + - uid: 404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 2 + - uid: 405 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 2 + - uid: 388 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 + - uid: 389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 2 + - uid: 392 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 2 + - uid: 396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 2 + - uid: 642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 2 +- proto: PsychBed + entities: + - uid: 222 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 +- proto: Railing + entities: + - uid: 373 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 +- proto: RandomBook + entities: + - uid: 113 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 + - uid: 163 + components: + - type: Transform + pos: -0.5,4.5 + parent: 2 +- proto: RubberStampApproved + entities: + - uid: 39 + components: + - type: Transform + pos: -5.5126176,4.090415 + parent: 2 + - uid: 232 + components: + - type: Transform + pos: 2.7174866,-2.3511927 + parent: 2 +- proto: RubberStampDenied + entities: + - uid: 38 + components: + - type: Transform + pos: -5.3242874,3.9893587 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: 2.7174866,-2.184526 + parent: 2 +- proto: ScalpelAdvanced + entities: + - uid: 644 + components: + - type: Transform + pos: 8.674176,7.1314025 + parent: 2 +- proto: ShuttersNormalOpen + entities: + - uid: 225 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 237 + - uid: 226 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 237 + - uid: 385 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 236 + - uid: 387 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 237 + - uid: 557 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 97 +- proto: SignalButtonDirectional + entities: + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 557: + - Pressed: Toggle + 167: + - Pressed: DoorBolt + - uid: 236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 239: + - Pressed: DoorBolt + 385: + - Pressed: Toggle + - uid: 237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 226: + - Pressed: Toggle + 387: + - Pressed: Toggle + 225: + - Pressed: Toggle + 241: + - Pressed: DoorBolt +- proto: SignSmoking + entities: + - uid: 524 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 +- proto: Sink + entities: + - uid: 99 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 +- proto: SmallGyroscope + entities: + - uid: 295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 298 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 +- proto: SolidReinforcedSecretDoor + entities: + - uid: 28 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 2 + - uid: 58 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 + - uid: 314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 2 +- proto: Spaceshroom + entities: + - uid: 197 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 2 +- proto: SpawnPointPsychologist + entities: + - uid: 649 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 +- proto: SpawnPointServiceWorker + entities: + - uid: 650 + components: + - type: Transform + pos: -3.5,3.5 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 235 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 +- proto: SurveillanceCameraMedical + entities: + - uid: 210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Restroom + - uid: 215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Reception + - uid: 216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Engine + - uid: 217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Waiting Room + - uid: 219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Padded Cell + - uid: 238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Office + - uid: 282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Storage + - uid: 291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Hallway +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 278 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 +- proto: Syringe + entities: + - uid: 645 + components: + - type: Transform + pos: 9.637664,5.2207203 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: 9.585581,5.512387 + parent: 2 +- proto: TableCounterWood + entities: + - uid: 147 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 2 + - uid: 154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 416 + components: + - type: Transform + pos: -0.5,4.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 37 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 + - uid: 44 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: -3.5,4.5 + parent: 2 + - uid: 48 + components: + - type: Transform + pos: -4.5,4.5 + parent: 2 + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 2 + - uid: 133 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 + - uid: 134 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 +- proto: Thruster + entities: + - uid: 101 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - uid: 187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 2 + - uid: 193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 2 + - uid: 194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 2 +- proto: TintedWindow + entities: + - uid: 8 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 12 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 2 + - uid: 15 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 2 + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 2 + - uid: 25 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 2 + - uid: 104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 196 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 2 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-4.5 + parent: 2 + - uid: 203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 2 + - uid: 224 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - uid: 275 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 2 + - uid: 288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,5.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 2 + - uid: 384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 2 + - uid: 401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 2 + - uid: 587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 2 + - uid: 620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 2 + - uid: 621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 2 + - uid: 622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 2 + - uid: 624 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 +- proto: ToiletEmpty + entities: + - uid: 206 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 3 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - uid: 5 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - uid: 6 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 2 + - uid: 7 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 2 + - uid: 9 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - uid: 10 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 13 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 2 + - uid: 14 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 + - uid: 20 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 + - uid: 23 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 26 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 2 + - uid: 27 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 2 + - uid: 30 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 2 + - uid: 31 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - uid: 32 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - uid: 33 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 34 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 35 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 52 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 56 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 60 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 61 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 62 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 63 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 64 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 2 + - uid: 65 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - uid: 66 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - uid: 71 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 73 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 74 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 75 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - uid: 76 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 2 + - uid: 82 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 2 + - uid: 85 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 + - uid: 87 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 89 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: -1.5,7.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 108 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 121 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - uid: 123 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 + - uid: 124 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 2 + - uid: 126 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 2 + - uid: 149 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 166 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - uid: 189 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 2 + - uid: 264 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - uid: 267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 2 + - uid: 277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 2 + - uid: 316 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 2 + - uid: 350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,2.5 + parent: 2 + - uid: 391 + components: + - type: Transform + pos: -7.5,2.5 + parent: 2 + - uid: 619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 2 +- proto: WallReinforcedDiagonal + entities: + - uid: 260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-8.5 + parent: 2 + - uid: 284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 2 + - uid: 285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 2 + - uid: 300 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 + - uid: 319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,8.5 + parent: 2 + - uid: 341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,8.5 + parent: 2 + - uid: 360 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - uid: 366 + components: + - type: Transform + pos: -1.5,8.5 + parent: 2 + - uid: 368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 2 + - uid: 372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-7.5 + parent: 2 + - uid: 376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 2 + - uid: 633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,4.5 + parent: 2 + - uid: 634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,3.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 130 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 138 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 2 + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 2 + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 2 + - uid: 146 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - uid: 150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 2 + - uid: 151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 2 + - uid: 152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 2 + - uid: 153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 2 + - uid: 156 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 161 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 162 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 168 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 172 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 173 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 2 + - uid: 175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 2 + - uid: 176 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 184 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 2 +- proto: WarpPointShip + entities: + - uid: 4 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 +- proto: WaterCooler + entities: + - uid: 109 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 2 +- proto: WhoopieCushion + entities: + - uid: 601 + components: + - type: Transform + parent: 596 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WindoorSecure + entities: + - uid: 132 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 +- proto: Window + entities: + - uid: 78 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 2 + - uid: 160 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 2 + - uid: 409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 605 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 +- proto: WindowDiagonal + entities: + - uid: 77 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 +... diff --git a/Resources/Maps/_NF/Shuttles/courserx.yml b/Resources/Maps/_NF/Shuttles/courserx.yml index cacf95abd37..ef8a4047351 100644 --- a/Resources/Maps/_NF/Shuttles/courserx.yml +++ b/Resources/Maps/_NF/Shuttles/courserx.yml @@ -4,14 +4,14 @@ meta: tilemap: 0: Space 30: FloorDark - 95: FloorSteelDiagonal - 101: FloorSteelMono - 105: FloorTechMaint - 106: FloorTechMaint2 - 109: FloorWhite - 119: FloorWood - 121: Lattice - 122: Plating + 97: FloorSteelDiagonal + 103: FloorSteelMono + 107: FloorTechMaint + 108: FloorTechMaint2 + 111: FloorWhite + 121: FloorWood + 124: Lattice + 125: Plating entities: - proto: "" entities: @@ -26,27 +26,27 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAHgAAAAACaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAABdwAAAAACegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAABdwAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAAAdwAAAAADegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAADegAAAAAAbQAAAAABbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAADbQAAAAADbQAAAAAAbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAACHgAAAAADegAAAAAAbQAAAAABbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABHgAAAAACZQAAAAABegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAABHgAAAAADegAAAAAAXwAAAAABXwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAABHgAAAAADXwAAAAACXwAAAAABXwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAADXwAAAAACXwAAAAABXwAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAZwAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAZwAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAZwAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAHgAAAAACawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAABeQAAAAACfQAAAAAAbAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAABeQAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAeQAAAAAAeQAAAAADfQAAAAAAbAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAHgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAADfQAAAAAAbwAAAAABbwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAABHgAAAAADHgAAAAADbwAAAAADbwAAAAAAbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAACHgAAAAACHgAAAAADfQAAAAAAbwAAAAABbwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAABHgAAAAACZwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAADHgAAAAABHgAAAAADfQAAAAAAYQAAAAABYQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAADHgAAAAABHgAAAAADYQAAAAACYQAAAAABYQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAADHgAAAAAAHgAAAAADYQAAAAACYQAAAAABYQAAAAAB version: 6 0,-1: ind: 0,-1 - tiles: aQAAAAAAaQAAAAAAZQAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAZQAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAZQAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAHgAAAAACaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAdwAAAAABdwAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAdwAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAdwAAAAAAdwAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAADegAAAAAAHgAAAAAAHgAAAAADHgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAbQAAAAADHgAAAAACHgAAAAAAHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAACegAAAAAAHgAAAAADHgAAAAAAHgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAACHgAAAAABHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAACXwAAAAACegAAAAAAHgAAAAADHgAAAAADHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAABXwAAAAAAXwAAAAAAHgAAAAADHgAAAAABHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAACXwAAAAACXwAAAAABHgAAAAAAHgAAAAACHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: awAAAAAAawAAAAAAZwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAZwAAAAACfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAZwAAAAABfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAHgAAAAACawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAeQAAAAABeQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAeQAAAAAAeQAAAAABfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABHgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAADfQAAAAAAHgAAAAAAHgAAAAADHgAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAADHgAAAAACHgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAACfQAAAAAAHgAAAAADHgAAAAAAHgAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZwAAAAACHgAAAAABHgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAACYQAAAAACfQAAAAAAHgAAAAADHgAAAAADHgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAABYQAAAAAAYQAAAAAAHgAAAAADHgAAAAABHgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAACYQAAAAACYQAAAAABHgAAAAAAHgAAAAACHgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAACHgAAAAAAHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAAAHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABHgAAAAACZQAAAAABegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAACHgAAAAACegAAAAAAZQAAAAAAZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAAAegAAAAAAHgAAAAACHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAADHgAAAAABegAAAAAAHgAAAAACHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAADHgAAAAABegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAACHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAADHgAAAAACZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAACHgAAAAAAHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAAAHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAABHgAAAAACZwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAACHgAAAAACHgAAAAACfQAAAAAAZwAAAAAAZwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAADHgAAAAAAfQAAAAAAHgAAAAACHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAHgAAAAADHgAAAAABfQAAAAAAHgAAAAACHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAZwAAAAADHgAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAACHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAHgAAAAACHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAHgAAAAADHgAAAAACZwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAABHgAAAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 0,0: ind: 0,0 - tiles: HgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAACHgAAAAADHgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAADHgAAAAACHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZQAAAAABegAAAAAAHgAAAAAAHgAAAAABHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAABHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAAAegAAAAAAHgAAAAADHgAAAAACegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAACegAAAAAAHgAAAAADHgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAZQAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAABHgAAAAABegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADHgAAAAAAHgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAAAHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAACHgAAAAADHgAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZwAAAAADHgAAAAACHgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAABZwAAAAABfQAAAAAAHgAAAAAAHgAAAAABHgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAABHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAAAfQAAAAAAHgAAAAADHgAAAAACfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAACfQAAAAAAHgAAAAADHgAAAAADfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAZwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAACfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAABHgAAAAABfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAADHgAAAAAAHgAAAAADfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAAAHgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAawAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAZQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -71,32 +71,32 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 121: -2,-13 - 122: 1,-13 + 103: -2,-13 + 104: 1,-13 - node: color: '#FFFFFFFF' id: Arrows decals: - 84: -2,11 - 85: 1,11 + 66: -2,11 + 67: 1,11 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 90: 5,4 - 91: 5,2 - 92: 5,-4 - 93: 5,-6 + 72: 5,4 + 73: 5,2 + 74: 5,-4 + 75: 5,-6 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Arrows decals: - 86: -6,-4 - 87: -6,-6 - 88: -6,4 - 89: -6,2 + 68: -6,-4 + 69: -6,-6 + 70: -6,4 + 71: -6,2 - node: color: '#FFFFFFFF' id: Bot @@ -113,192 +113,194 @@ entities: 9: 3,-4 10: 2,-14 11: 2,-15 - 118: -5,8 - 119: 4,8 - 120: -5,8 - 123: 2,-16 - 124: 2,-17 + 100: -5,8 + 101: 4,8 + 102: -5,8 + 105: 2,-16 + 117: -3,-14 + 118: -3,-16 + 119: -3,-15 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 111: 2,-1 + 93: 2,-1 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 110: -3,-1 + 92: -3,-1 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: 12: -4,-6 - 112: 2,-2 + 94: 2,-2 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 16: -2,9 - 17: 1,9 - 18: -2,14 - 19: -1,14 - 20: 0,14 - 21: 1,14 - 36: -2,-5 - 37: -1,-5 - 38: 0,-5 - 39: 1,-5 - 114: -2,-1 - 115: -1,-1 - 116: 0,-1 - 117: 1,-1 + 14: -2,9 + 15: 1,9 + 16: -2,14 + 17: -1,14 + 18: 0,14 + 19: 1,14 + 28: -2,-5 + 29: -1,-5 + 30: 0,-5 + 31: 1,-5 + 96: -2,-1 + 97: -1,-1 + 98: 0,-1 + 99: 1,-1 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 22: -4,11 - 23: -3,11 - 24: -2,11 - 25: -1,11 - 26: 0,11 - 27: 1,11 - 28: 2,11 - 29: 3,11 - 40: -2,-7 - 41: -1,-7 - 42: 0,-7 - 43: 1,-7 + 20: -4,11 + 21: -3,11 + 22: -2,11 + 23: -1,11 + 24: 0,11 + 25: 1,11 + 26: 2,11 + 27: 3,11 + 32: -2,-7 + 33: -1,-7 + 34: 0,-7 + 35: 1,-7 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: 13: 3,-6 - 113: -3,-2 + 95: -3,-2 - node: color: '#5E7C16FF' id: BrickTileWhiteCornerNe decals: - 133: 1,7 + 115: 1,7 - node: color: '#5E7C16FF' id: BrickTileWhiteCornerNw decals: - 134: -2,7 + 116: -2,7 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 76: -4,-6 + 58: -4,-6 - node: color: '#5E7C16FF' id: BrickTileWhiteLineE decals: - 125: -4,5 - 126: 1,5 - 127: 1,6 + 107: -4,5 + 108: 1,5 + 109: 1,6 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 54: -2,9 - 55: 1,9 - 64: -2,14 - 65: -1,14 - 66: 0,14 - 67: 1,14 + 36: -2,9 + 37: 1,9 + 46: -2,14 + 47: -1,14 + 48: 0,14 + 49: 1,14 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 68: -2,-5 - 69: -1,-5 - 70: 0,-5 - 71: 1,-5 + 50: -2,-5 + 51: -1,-5 + 52: 0,-5 + 53: 1,-5 - node: color: '#5E7C16FF' id: BrickTileWhiteLineN decals: - 128: -1,7 - 129: 0,7 + 110: -1,7 + 111: 0,7 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 56: -4,11 - 57: -3,11 - 58: -2,11 - 59: -1,11 - 60: 0,11 - 61: 1,11 - 62: 2,11 - 63: 3,11 + 38: -4,11 + 39: -3,11 + 40: -2,11 + 41: -1,11 + 42: 0,11 + 43: 1,11 + 44: 2,11 + 45: 3,11 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 72: -2,-7 - 73: -1,-7 - 74: 0,-7 - 75: 1,-7 + 54: -2,-7 + 55: -1,-7 + 56: 0,-7 + 57: 1,-7 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 77: 3,-6 + 59: 3,-6 - node: color: '#5E7C16FF' id: BrickTileWhiteLineW decals: - 130: 3,5 - 131: -2,5 - 132: -2,6 + 112: 3,5 + 113: -2,5 + 114: -2,6 - node: angle: 1.5707963267948966 rad color: '#79150096' id: DiagonalCheckerAOverlay decals: - 94: -3,-1 - 95: -2,-1 - 96: -1,-1 - 97: 0,-1 - 98: 1,-1 - 99: 2,-1 - 100: 2,-2 - 101: 1,-2 - 102: 0,-2 - 103: -1,-2 - 104: -2,-2 - 105: -2,-3 - 106: -1,-3 - 107: 0,-3 - 108: 1,-3 - 109: -3,-2 + 76: -3,-1 + 77: -2,-1 + 78: -1,-1 + 79: 0,-1 + 80: 1,-1 + 81: 2,-1 + 82: 2,-2 + 83: 1,-2 + 84: 0,-2 + 85: -1,-2 + 86: -2,-2 + 87: -2,-3 + 88: -1,-3 + 89: 0,-3 + 90: 1,-3 + 91: -3,-2 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 78: -1,-6 - 79: 0,-6 + 60: -1,-6 + 61: 0,-6 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 80: 0,-7 + 62: 0,-7 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 83: -1,-5 + 65: -1,-5 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 82: 0,-5 + 64: 0,-5 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 81: -1,-7 + 63: -1,-7 - type: GridAtmosphere version: 2 data: @@ -310,29 +312,31 @@ entities: 0,-1: 0: 65535 -2,-3: - 0: 60620 + 1: 8192 + 0: 52428 -2,-2: 0: 61166 -2,-4: - 0: 51328 + 1: 18560 + 0: 32768 -1,-4: 0: 65535 -1,-3: 0: 65535 -1,-2: - 0: 48959 - 1: 16576 + 0: 65535 0,-4: - 0: 64507 - 1: 1028 + 0: 65535 0,-3: 0: 65535 0,-2: 0: 65535 1,-4: - 0: 12560 + 1: 8464 + 0: 4096 1,-3: - 0: 29491 + 0: 13107 + 1: 16384 1,-2: 0: 30583 1,-1: @@ -340,45 +344,49 @@ entities: -2,0: 0: 61166 -2,1: - 0: 61166 + 0: 52974 + 1: 8192 -2,2: - 0: 52428 + 0: 36044 + 1: 16384 -2,3: - 0: 136 + 0: 8 + 1: 128 -1,0: 0: 65535 -1,1: - 0: 65531 - 2: 4 + 0: 65535 -1,2: - 0: 61439 - 3: 4096 - -1,3: 0: 65535 + -1,3: + 0: 61439 + 1: 4096 0,0: 0: 65535 0,1: - 0: 65533 - 1: 2 + 0: 65535 0,2: + 0: 65535 + 0,3: 0: 32767 1: 32768 - 0,3: - 0: 65535 1,0: 0: 30583 1,1: - 0: 30583 + 0: 14199 + 1: 16384 1,2: - 0: 13107 + 0: 4915 + 1: 8192 1,3: - 0: 17 + 0: 1 + 1: 16 -1,-5: - 0: 61440 - 4: 4064 + 1: 4384 + 0: 61120 0,-5: - 0: 61440 - 4: 3952 + 0: 30512 + 1: 34880 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -395,51 +403,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14993 - moles: - - 19.950384 - - 75.051445 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -464,28 +427,55 @@ entities: - type: GridPathfinding - type: BecomesStation id: Courser -- proto: AirCanister +- proto: AirAlarm entities: - - uid: 2 + - uid: 379 components: - type: Transform - pos: 0.5,-13.5 + rot: 1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 1 + - type: DeviceList + devices: + - 198 + - 135 + - 150 + - 138 + - 160 + - 151 + - 159 + - 171 + - 294 + - 168 + - 502 + - 480 + - 401 + - 479 + - type: AtmosDevice + joinedGrid: 1 + - uid: 380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,13.5 parent: 1 + - type: DeviceList + devices: + - 399 + - 478 + - 504 + - 503 - type: AtmosDevice joinedGrid: 1 - proto: Airlock entities: - uid: 3 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-7.5 parent: 1 - uid: 4 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-7.5 parent: 1 @@ -571,15 +561,11 @@ entities: entities: - uid: 17 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-8.5 parent: 1 - uid: 18 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-8.5 parent: 1 @@ -601,24 +587,20 @@ entities: entities: - uid: 316 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,5.5 parent: 1 - uid: 329 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,5.5 parent: 1 - proto: AmeController entities: - - uid: 21 + - uid: 219 components: - type: Transform - pos: -2.5,-16.5 + pos: -2.5,-15.5 parent: 1 - type: AmeController injecting: True @@ -627,20 +609,18 @@ entities: AmeFuel: !type:ContainerSlot showEnts: False occludes: True - ent: 199 + ent: 221 - proto: AmeJar entities: - - uid: 22 + - uid: 161 components: - type: Transform - pos: 1.4414759,-17.427538 + pos: -2.6276884,-14.487696 parent: 1 - - uid: 199 + - uid: 221 components: - - type: MetaData - flags: InContainer - type: Transform - parent: 21 + parent: 219 - type: Physics canCollide: False - proto: AmeShielding @@ -762,6 +742,118 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,4.5 parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 381 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 1 + - uid: 386 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 1 + - uid: 387 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 396 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 + - uid: 451 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 + - uid: 452 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1 + - uid: 453 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1 - proto: Bed entities: - uid: 43 @@ -881,8 +973,6 @@ entities: entities: - uid: 58 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-8.5 parent: 1 @@ -914,57 +1004,52 @@ entities: - uid: 63 components: - type: Transform - pos: 0.5,12.5 + pos: -0.5,12.5 parent: 1 - uid: 64 components: - type: Transform - pos: 0.5,13.5 + pos: 2.5,12.5 parent: 1 - uid: 65 components: - type: Transform - pos: -0.5,13.5 + pos: 0.5,12.5 parent: 1 - uid: 66 components: - type: Transform - pos: -1.5,13.5 + pos: 4.5,-4.5 parent: 1 - uid: 67 components: - type: Transform - pos: -2.5,13.5 + pos: 4.5,-5.5 parent: 1 - uid: 68 components: - type: Transform - pos: -2.5,12.5 + pos: 4.5,-6.5 parent: 1 - uid: 69 components: - type: Transform - pos: -2.5,11.5 + pos: -0.5,9.5 parent: 1 - uid: 70 components: - type: Transform - pos: 1.5,13.5 + pos: 1.5,12.5 parent: 1 - uid: 71 components: - type: Transform - pos: 2.5,13.5 + pos: -1.5,12.5 parent: 1 - uid: 72 components: - type: Transform - pos: 2.5,12.5 - parent: 1 - - uid: 73 - components: - - type: Transform - pos: 2.5,11.5 + pos: -2.5,12.5 parent: 1 - uid: 74 components: @@ -974,137 +1059,127 @@ entities: - uid: 75 components: - type: Transform - pos: -0.5,9.5 + pos: -2.5,9.5 parent: 1 - uid: 76 components: - type: Transform - pos: -1.5,9.5 + pos: -3.5,9.5 parent: 1 - uid: 77 components: - type: Transform - pos: -2.5,9.5 + pos: -4.5,9.5 parent: 1 - uid: 78 components: - type: Transform - pos: -3.5,9.5 + pos: -4.5,8.5 parent: 1 - uid: 79 components: - type: Transform - pos: -4.5,9.5 + pos: -4.5,7.5 parent: 1 - uid: 80 components: - type: Transform - pos: -4.5,8.5 + pos: -4.5,6.5 parent: 1 - uid: 81 components: - type: Transform - pos: -4.5,7.5 + pos: -4.5,5.5 parent: 1 - uid: 82 components: - type: Transform - pos: -4.5,6.5 + pos: -4.5,4.5 parent: 1 - uid: 83 components: - type: Transform - pos: 1.5,9.5 + pos: -1.5,9.5 parent: 1 - uid: 84 components: - type: Transform - pos: 2.5,9.5 + pos: -4.5,3.5 parent: 1 - uid: 85 components: - type: Transform - pos: 3.5,9.5 + pos: -4.5,2.5 parent: 1 - uid: 86 components: - type: Transform - pos: 4.5,9.5 + pos: -4.5,1.5 parent: 1 - uid: 87 components: - type: Transform - pos: 4.5,8.5 + pos: -4.5,0.5 parent: 1 - uid: 88 components: - type: Transform - pos: 4.5,7.5 + pos: -4.5,-0.5 parent: 1 - uid: 89 components: - type: Transform - pos: 4.5,6.5 - parent: 1 - - uid: 90 - components: - - type: Transform - pos: -3.5,6.5 - parent: 1 - - uid: 91 - components: - - type: Transform - pos: -2.5,6.5 + pos: -4.5,-1.5 parent: 1 - uid: 92 components: - type: Transform - pos: -1.5,6.5 + pos: -0.5,5.5 parent: 1 - uid: 93 components: - type: Transform - pos: -0.5,6.5 + pos: 0.5,5.5 parent: 1 - uid: 94 components: - type: Transform - pos: 0.5,6.5 + pos: 1.5,5.5 parent: 1 - uid: 95 components: - type: Transform - pos: 1.5,6.5 + pos: -4.5,-2.5 parent: 1 - uid: 96 components: - type: Transform - pos: 2.5,6.5 + pos: -4.5,-3.5 parent: 1 - uid: 97 components: - type: Transform - pos: 3.5,6.5 + pos: -4.5,-4.5 parent: 1 - uid: 98 components: - type: Transform - pos: -0.5,5.5 + pos: -4.5,-5.5 parent: 1 - uid: 99 components: - type: Transform - pos: -0.5,4.5 + pos: 4.5,-0.5 parent: 1 - uid: 100 components: - type: Transform - pos: 0.5,4.5 + pos: 4.5,0.5 parent: 1 - uid: 101 components: - type: Transform - pos: 0.5,5.5 + pos: 4.5,1.5 parent: 1 - uid: 102 components: @@ -1119,192 +1194,107 @@ entities: - uid: 104 components: - type: Transform - pos: 4.5,-3.5 + pos: 4.5,2.5 parent: 1 - uid: 105 components: - type: Transform - pos: 5.5,-3.5 + pos: 4.5,3.5 parent: 1 - uid: 106 components: - type: Transform - pos: 5.5,-2.5 + pos: 4.5,9.5 parent: 1 - uid: 107 components: - type: Transform - pos: 5.5,-1.5 + pos: 4.5,8.5 parent: 1 - uid: 108 components: - type: Transform - pos: 5.5,-0.5 + pos: 4.5,7.5 parent: 1 - uid: 109 components: - type: Transform - pos: 5.5,0.5 + pos: 4.5,6.5 parent: 1 - uid: 110 components: - type: Transform - pos: 5.5,1.5 + pos: 4.5,5.5 parent: 1 - uid: 111 components: - type: Transform - pos: 5.5,2.5 + pos: 4.5,4.5 parent: 1 - uid: 112 components: - type: Transform - pos: 5.5,3.5 + pos: 4.5,-2.5 parent: 1 - uid: 113 components: - type: Transform - pos: 5.5,4.5 - parent: 1 - - uid: 114 - components: - - type: Transform - pos: 4.5,4.5 - parent: 1 - - uid: 115 - components: - - type: Transform - pos: 3.5,4.5 - parent: 1 - - uid: 116 - components: - - type: Transform - pos: 3.5,3.5 - parent: 1 - - uid: 117 - components: - - type: Transform - pos: 3.5,2.5 - parent: 1 - - uid: 118 - components: - - type: Transform - pos: 2.5,2.5 + pos: 4.5,-1.5 parent: 1 - uid: 119 components: - type: Transform - pos: 1.5,2.5 + pos: 2.5,5.5 parent: 1 - uid: 120 components: - type: Transform - pos: 0.5,2.5 - parent: 1 - - uid: 121 - components: - - type: Transform - pos: -0.5,2.5 - parent: 1 - - uid: 122 - components: - - type: Transform - pos: -1.5,2.5 - parent: 1 - - uid: 123 - components: - - type: Transform - pos: -2.5,2.5 - parent: 1 - - uid: 124 - components: - - type: Transform - pos: -3.5,2.5 - parent: 1 - - uid: 125 - components: - - type: Transform - pos: -3.5,3.5 - parent: 1 - - uid: 126 - components: - - type: Transform - pos: -3.5,4.5 + pos: 3.5,5.5 parent: 1 - uid: 127 components: - type: Transform - pos: -4.5,4.5 + pos: -0.5,0.5 parent: 1 - uid: 128 components: - type: Transform - pos: -5.5,4.5 + pos: -1.5,0.5 parent: 1 - uid: 129 components: - type: Transform - pos: -5.5,3.5 + pos: 3.5,0.5 parent: 1 - uid: 130 components: - type: Transform - pos: -5.5,2.5 + pos: 2.5,0.5 parent: 1 - uid: 131 components: - type: Transform - pos: -5.5,1.5 + pos: 1.5,0.5 parent: 1 - uid: 132 components: - type: Transform - pos: -5.5,0.5 + pos: 0.5,0.5 parent: 1 - uid: 133 components: - type: Transform - pos: -5.5,-0.5 - parent: 1 - - uid: 134 - components: - - type: Transform - pos: -5.5,-1.5 - parent: 1 - - uid: 135 - components: - - type: Transform - pos: -5.5,-2.5 + pos: 4.5,-3.5 parent: 1 - uid: 136 components: - type: Transform - pos: -5.5,-3.5 + pos: 2.5,9.5 parent: 1 - uid: 137 components: - type: Transform - pos: -5.5,-4.5 - parent: 1 - - uid: 138 - components: - - type: Transform - pos: -5.5,-5.5 - parent: 1 - - uid: 139 - components: - - type: Transform - pos: -5.5,-6.5 - parent: 1 - - uid: 140 - components: - - type: Transform - pos: -4.5,-6.5 - parent: 1 - - uid: 141 - components: - - type: Transform - pos: -3.5,-6.5 + pos: 3.5,9.5 parent: 1 - uid: 142 components: @@ -1336,151 +1326,26 @@ entities: - type: Transform pos: 1.5,-5.5 parent: 1 - - uid: 148 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 1 - uid: 149 components: - type: Transform - pos: 3.5,-5.5 - parent: 1 - - uid: 150 - components: - - type: Transform - pos: 3.5,-6.5 - parent: 1 - - uid: 151 - components: - - type: Transform - pos: 4.5,-6.5 - parent: 1 - - uid: 152 - components: - - type: Transform - pos: 5.5,-6.5 - parent: 1 - - uid: 153 - components: - - type: Transform - pos: 5.5,-5.5 - parent: 1 - - uid: 154 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 1 - - uid: 155 - components: - - type: Transform - pos: 4.5,-0.5 + pos: 1.5,-15.5 parent: 1 - uid: 156 components: - type: Transform - pos: 3.5,-0.5 + pos: -2.5,-15.5 parent: 1 - uid: 157 components: - type: Transform - pos: 2.5,-0.5 - parent: 1 - - uid: 158 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 1 - - uid: 159 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 1 - - uid: 160 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 1 - - uid: 161 - components: - - type: Transform - pos: -1.5,-0.5 - parent: 1 - - uid: 162 - components: - - type: Transform - pos: -2.5,-0.5 - parent: 1 - - uid: 163 - components: - - type: Transform - pos: -3.5,-0.5 - parent: 1 - - uid: 164 - components: - - type: Transform - pos: -4.5,-0.5 - parent: 1 - - uid: 165 - components: - - type: Transform - pos: -3.5,-4.5 - parent: 1 - - uid: 166 - components: - - type: Transform - pos: -3.5,-3.5 - parent: 1 - - uid: 167 - components: - - type: Transform - pos: -3.5,-2.5 - parent: 1 - - uid: 168 - components: - - type: Transform - pos: -3.5,-1.5 - parent: 1 - - uid: 169 - components: - - type: Transform - pos: 3.5,-4.5 + pos: 1.5,-16.5 parent: 1 - uid: 170 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 171 - components: - - type: Transform - pos: 3.5,-2.5 - parent: 1 - - uid: 172 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 1 - - uid: 173 - components: - - type: Transform - pos: -3.5,0.5 - parent: 1 - - uid: 174 - components: - - type: Transform - pos: -3.5,1.5 - parent: 1 - - uid: 175 - components: - - type: Transform - pos: 3.5,0.5 - parent: 1 - - uid: 176 - components: - - type: Transform - pos: 3.5,1.5 - parent: 1 - uid: 177 components: - type: Transform @@ -1561,11 +1426,6 @@ entities: - type: Transform pos: 4.5,-10.5 parent: 1 - - uid: 193 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 1 - uid: 194 components: - type: Transform @@ -1586,11 +1446,6 @@ entities: - type: Transform pos: -1.5,-14.5 parent: 1 - - uid: 198 - components: - - type: Transform - pos: -2.5,-12.5 - parent: 1 - uid: 200 components: - type: Transform @@ -1616,106 +1471,21 @@ entities: - type: Transform pos: 1.5,-12.5 parent: 1 - - uid: 205 + - uid: 208 components: - type: Transform - pos: 1.5,-11.5 + pos: 2.5,-12.5 parent: 1 - - uid: 206 + - uid: 209 components: - type: Transform - pos: 1.5,-10.5 + pos: 3.5,-12.5 parent: 1 - - uid: 207 - components: - - type: Transform - pos: 0.5,-10.5 - parent: 1 - - uid: 208 - components: - - type: Transform - pos: 2.5,-12.5 - parent: 1 - - uid: 209 - components: - - type: Transform - pos: 3.5,-12.5 - parent: 1 - - uid: 210 + - uid: 210 components: - type: Transform pos: -2.5,-14.5 parent: 1 - - uid: 211 - components: - - type: Transform - pos: 2.5,-14.5 - parent: 1 - - uid: 212 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 1 - - uid: 213 - components: - - type: Transform - pos: 0.5,-15.5 - parent: 1 - - uid: 291 - components: - - type: Transform - pos: -3.5,-11.5 - parent: 1 - - uid: 292 - components: - - type: Transform - pos: -2.5,-11.5 - parent: 1 - - uid: 293 - components: - - type: Transform - pos: -4.5,-11.5 - parent: 1 - - uid: 294 - components: - - type: Transform - pos: -4.5,-12.5 - parent: 1 - - uid: 295 - components: - - type: Transform - pos: 4.5,-12.5 - parent: 1 - - uid: 593 - components: - - type: Transform - pos: 5.5,-8.5 - parent: 1 - - uid: 743 - components: - - type: Transform - pos: -5.5,-8.5 - parent: 1 - - uid: 744 - components: - - type: Transform - pos: -3.5,-14.5 - parent: 1 - - uid: 745 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 1 - - uid: 746 - components: - - type: Transform - pos: 3.5,-14.5 - parent: 1 - - uid: 747 - components: - - type: Transform - pos: 3.5,-15.5 - parent: 1 - proto: CableHV entities: - uid: 214 @@ -1738,31 +1508,11 @@ entities: - type: Transform pos: -2.5,-14.5 parent: 1 - - uid: 218 - components: - - type: Transform - pos: 0.5,-15.5 - parent: 1 - - uid: 219 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 1 - uid: 220 components: - type: Transform pos: -3.5,-10.5 parent: 1 - - uid: 221 - components: - - type: Transform - pos: -1.5,-16.5 - parent: 1 - - uid: 222 - components: - - type: Transform - pos: -2.5,-16.5 - parent: 1 - uid: 223 components: - type: Transform @@ -1778,11 +1528,6 @@ entities: - type: Transform pos: -3.5,-12.5 parent: 1 - - uid: 226 - components: - - type: Transform - pos: -0.5,-16.5 - parent: 1 - uid: 227 components: - type: Transform @@ -1920,11 +1665,6 @@ entities: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 254 - components: - - type: Transform - pos: 3.5,7.5 - parent: 1 - uid: 255 components: - type: Transform @@ -1960,6 +1700,11 @@ entities: - type: Transform pos: -0.5,-11.5 parent: 1 + - uid: 355 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 - proto: CableTerminal entities: - uid: 262 @@ -2116,13 +1861,6 @@ entities: - type: Transform pos: 0.5,-8.5 parent: 1 -- proto: ClothingHeadHelmetVoidParamed - entities: - - uid: 288 - components: - - type: Transform - pos: -0.47656274,-4.2616324 - parent: 1 - proto: ClothingOuterHardsuitVoidParamed entities: - uid: 296 @@ -2138,27 +1876,35 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-9.5 parent: 1 -- proto: ComputerSalvageExpedition +- proto: ComputerPowerMonitoring entities: - - uid: 298 + - uid: 199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 1 +- proto: ComputerTabletopSalvageExpedition + entities: + - uid: 91 components: - type: Transform pos: 0.5,14.5 parent: 1 -- proto: ComputerShuttle +- proto: ComputerTabletopShuttle entities: - - uid: 299 + - uid: 378 components: - type: Transform pos: -0.5,14.5 parent: 1 -- proto: ComputerStationRecords +- proto: ComputerTabletopStationRecords entities: - - uid: 742 + - uid: 166 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,13.5 + pos: -1.5,13.5 parent: 1 - proto: DefibrillatorCabinetFilled entities: @@ -2174,381 +1920,898 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,12.5 parent: 1 -- proto: Dresser - entities: - - uid: 302 - components: - - type: Transform - pos: 4.5,-8.5 - parent: 1 -- proto: ExtinguisherCabinetFilled +- proto: DisposalBend entities: - - uid: 303 + - uid: 592 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-11.5 + pos: 1.5,-8.5 parent: 1 - - uid: 304 + - uid: 593 components: - type: Transform - pos: 2.5,-2.5 + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 parent: 1 - - uid: 305 + - uid: 753 components: - type: Transform - pos: -2.5,-2.5 + pos: 3.5,1.5 parent: 1 - - uid: 306 + - uid: 761 components: - type: Transform - pos: 2.5,7.5 + rot: 3.141592653589793 rad + pos: -4.5,1.5 parent: 1 - - uid: 307 + - uid: 771 components: - type: Transform - pos: -2.5,7.5 + rot: 1.5707963267948966 rad + pos: -4.5,5.5 parent: 1 - - uid: 308 + - uid: 772 components: - type: Transform - pos: 2.5,-10.5 + rot: -1.5707963267948966 rad + pos: -3.5,5.5 parent: 1 - - uid: 309 + - uid: 773 components: - type: Transform - pos: 3.5,12.5 + pos: -3.5,9.5 parent: 1 -- proto: FaxMachineShip +- proto: DisposalJunction entities: - - uid: 310 + - uid: 759 components: - type: Transform - pos: -1.5,14.5 + rot: 1.5707963267948966 rad + pos: -2.5,1.5 parent: 1 -- proto: FirelockGlass +- proto: DisposalJunctionFlipped entities: - - uid: 287 + - uid: 744 components: - type: Transform - pos: 4.5,6.5 + pos: 3.5,-6.5 parent: 1 - - uid: 290 +- proto: DisposalPipe + entities: + - uid: 573 components: - type: Transform - pos: 3.5,6.5 + rot: 3.141592653589793 rad + pos: 1.5,-16.5 parent: 1 - - uid: 311 + - uid: 574 components: - type: Transform - pos: 3.5,-7.5 + rot: 3.141592653589793 rad + pos: 1.5,-15.5 parent: 1 - - uid: 312 + - uid: 575 components: - type: Transform - pos: -5.5,-2.5 + rot: 3.141592653589793 rad + pos: 1.5,-14.5 parent: 1 - - uid: 313 + - uid: 577 components: - type: Transform - pos: -4.5,6.5 + rot: 3.141592653589793 rad + pos: 1.5,-13.5 parent: 1 - - uid: 314 + - uid: 578 components: - type: Transform - pos: -3.5,6.5 + rot: 3.141592653589793 rad + pos: 1.5,-12.5 parent: 1 - - uid: 317 + - uid: 580 components: - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-11.5 parent: 1 - - uid: 318 + - uid: 581 components: - type: Transform - pos: -1.5,-11.5 + rot: 3.141592653589793 rad + pos: 1.5,-10.5 parent: 1 - - uid: 319 + - uid: 589 components: - type: Transform - pos: -4.5,-2.5 + rot: 3.141592653589793 rad + pos: 1.5,-9.5 parent: 1 - - uid: 320 + - uid: 595 components: - type: Transform - pos: 3.5,-2.5 + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 parent: 1 - - uid: 321 + - uid: 597 components: - type: Transform - pos: -3.5,-7.5 + rot: 3.141592653589793 rad + pos: 3.5,-7.5 parent: 1 - - uid: 322 + - uid: 745 components: - type: Transform - pos: -3.5,-2.5 + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 parent: 1 - - uid: 323 + - uid: 746 components: - type: Transform - pos: 4.5,-2.5 + rot: 3.141592653589793 rad + pos: 3.5,-5.5 parent: 1 - - uid: 324 + - uid: 747 components: - type: Transform - pos: 5.5,-2.5 + rot: 3.141592653589793 rad + pos: 3.5,-4.5 parent: 1 - - uid: 325 + - uid: 748 components: - type: Transform - pos: -2.5,9.5 + rot: 3.141592653589793 rad + pos: 3.5,-3.5 parent: 1 - - uid: 326 + - uid: 749 components: - type: Transform - pos: 2.5,9.5 + rot: 3.141592653589793 rad + pos: 3.5,-2.5 parent: 1 - - uid: 327 + - uid: 750 components: - type: Transform - pos: 2.5,-8.5 + rot: 3.141592653589793 rad + pos: 3.5,-1.5 parent: 1 - - uid: 328 + - uid: 751 components: - type: Transform - pos: -2.5,-8.5 + rot: 3.141592653589793 rad + pos: 3.5,-0.5 parent: 1 -- proto: GasOutletInjector - entities: - - uid: 331 + - uid: 752 components: - type: Transform - pos: 0.5,-12.5 + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - uid: 754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - uid: 756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - uid: 760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - uid: 765 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 766 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 767 + components: + - type: Transform + pos: -3.5,6.5 parent: 1 + - uid: 768 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 769 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 770 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 +- proto: DisposalTrunk + entities: + - uid: 509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + - uid: 743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + - uid: 763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,9.5 + parent: 1 +- proto: DisposalUnit + entities: + - uid: 742 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 762 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 764 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 +- proto: Dresser + entities: + - uid: 302 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 +- proto: FaxMachineShip + entities: + - uid: 310 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 +- proto: FirelockGlass + entities: + - uid: 287 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1 +- proto: FloorDrain + entities: + - uid: 505 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: GasMixer + entities: + - uid: 333 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1 + - type: GasMixer + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 - type: AtmosDevice joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPassiveVent entities: - - uid: 332 + - uid: 123 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-12.5 + pos: 3.5,-17.5 parent: 1 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#990000FF' - proto: GasPipeBend entities: - - uid: 333 + - uid: 125 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-13.5 + pos: 1.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 349 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 353 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 374 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 2 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 148 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 174 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-8.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 334 + color: '#0055CCFF' + - uid: 206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,9.5 + pos: 3.5,-7.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 335 + color: '#990000FF' + - uid: 207 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,9.5 + pos: 3.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 336 + color: '#990000FF' + - uid: 211 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,9.5 + pos: 3.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 337 + color: '#990000FF' + - uid: 212 components: - type: Transform - pos: 3.5,9.5 + pos: 3.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' -- proto: GasPipeStraight - entities: - - uid: 338 + color: '#990000FF' + - uid: 213 components: - type: Transform - pos: -1.5,-11.5 + pos: 3.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 339 + color: '#990000FF' + - uid: 222 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-10.5 + pos: 1.5,-16.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 340 + color: '#990000FF' + - uid: 254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-9.5 + pos: 3.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 341 + color: '#990000FF' + - uid: 288 components: - type: Transform - pos: -3.5,-8.5 + pos: 3.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 342 + color: '#990000FF' + - uid: 291 components: - type: Transform - pos: -3.5,-7.5 + pos: 3.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 343 + color: '#990000FF' + - uid: 292 components: - type: Transform - pos: -3.5,-6.5 + pos: 3.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 344 + color: '#990000FF' + - uid: 295 components: - type: Transform - pos: -3.5,-5.5 + rot: 1.5707963267948966 rad + pos: -2.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 345 + color: '#0055CCFF' + - uid: 298 components: - type: Transform - pos: -3.5,-4.5 + rot: 1.5707963267948966 rad + pos: -1.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 346 + color: '#0055CCFF' + - uid: 331 components: - type: Transform - pos: -3.5,-3.5 + rot: 1.5707963267948966 rad + pos: 2.5,-8.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 347 + color: '#990000FF' + - uid: 338 components: - type: Transform - pos: -3.5,-2.5 + pos: -1.5,-11.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 348 + color: '#0055CCFF' + - uid: 342 components: - type: Transform - pos: -3.5,-1.5 + pos: -3.5,-7.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 349 + color: '#0055CCFF' + - uid: 343 components: - type: Transform - pos: 3.5,-1.5 + pos: -3.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 350 + color: '#0055CCFF' + - uid: 345 components: - type: Transform - pos: 3.5,-2.5 + pos: -3.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 351 + color: '#0055CCFF' + - uid: 346 components: - type: Transform - pos: 3.5,-3.5 + pos: -3.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 352 + color: '#0055CCFF' + - uid: 347 components: - type: Transform - pos: 3.5,-4.5 + pos: -3.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 353 + color: '#0055CCFF' + - uid: 348 components: - type: Transform - pos: 3.5,-5.5 + pos: -3.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 354 + color: '#0055CCFF' + - uid: 350 components: - type: Transform - pos: 3.5,-6.5 + pos: 3.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 355 + color: '#990000FF' + - uid: 351 components: - type: Transform - pos: 3.5,-7.5 + pos: 3.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 356 + color: '#990000FF' + - uid: 352 components: - type: Transform - pos: 3.5,-8.5 + rot: 3.141592653589793 rad + pos: -1.5,-13.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 357 + color: '#0055CCFF' + - uid: 354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-9.5 + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 358 + color: '#0055CCFF' + - uid: 357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-9.5 + pos: 3.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#990000FF' - uid: 359 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-9.5 + pos: -4.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - uid: 360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-9.5 + rot: 3.141592653589793 rad + pos: -1.5,-12.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - uid: 361 components: - type: Transform @@ -2556,7 +2819,7 @@ entities: pos: -3.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - uid: 362 components: - type: Transform @@ -2564,7 +2827,7 @@ entities: pos: -3.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - uid: 363 components: - type: Transform @@ -2572,7 +2835,7 @@ entities: pos: -3.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - uid: 364 components: - type: Transform @@ -2580,7 +2843,7 @@ entities: pos: -3.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - uid: 365 components: - type: Transform @@ -2588,15 +2851,7 @@ entities: pos: -3.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - uid: 367 components: - type: Transform @@ -2604,7 +2859,7 @@ entities: pos: -3.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - uid: 368 components: - type: Transform @@ -2612,7 +2867,7 @@ entities: pos: -3.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - uid: 369 components: - type: Transform @@ -2620,15 +2875,15 @@ entities: pos: -2.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - uid: 370 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,10.5 + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - uid: 371 components: - type: Transform @@ -2636,282 +2891,458 @@ entities: pos: -1.5,10.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - uid: 372 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,11.5 + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#990000FF' - uid: 373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 114 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,11.5 + pos: -1.5,-10.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 374 + color: '#0055CCFF' + - uid: 115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 141 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 172 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 175 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,9.5 + pos: -3.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 375 + color: '#0055CCFF' + - uid: 176 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,7.5 + pos: -3.5,-8.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 376 + color: '#0055CCFF' + - uid: 293 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,6.5 + rot: 1.5707963267948966 rad + pos: -3.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 377 + color: '#0055CCFF' + - uid: 341 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,5.5 + pos: -1.5,-14.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 378 + color: '#0055CCFF' + - uid: 366 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,4.5 + rot: 1.5707963267948966 rad + pos: 3.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 379 + color: '#990000FF' + - uid: 375 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,3.5 + rot: -1.5707963267948966 rad + pos: 3.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 380 + color: '#990000FF' + - uid: 388 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,2.5 + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 381 + color: '#0055CCFF' + - uid: 389 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,1.5 + rot: -1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPort + entities: + - uid: 332 + components: + - type: Transform + pos: 0.5,-12.5 parent: 1 + - type: AtmosDevice + joinedGrid: 1 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 382 + - uid: 358 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,0.5 + pos: -0.5,-12.5 parent: 1 + - type: AtmosDevice + joinedGrid: 1 - type: AtmosPipeColor color: '#03FCD3FF' -- proto: GasPipeTJunction +- proto: GasPressurePump entities: - - uid: 383 + - uid: 193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-12.5 + rot: -1.5707963267948966 rad + pos: -0.5,-14.5 parent: 1 + - type: AtmosDevice + joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 384 + color: '#0055CCFF' + - uid: 226 components: - type: Transform - pos: -1.5,-9.5 + pos: 1.5,-15.5 parent: 1 + - type: AtmosDevice + joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 385 + color: '#990000FF' +- proto: GasVentPump + entities: + - uid: 138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-9.5 + rot: -1.5707963267948966 rad + pos: -0.5,-8.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 379 + - type: AtmosDevice + joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 386 + color: '#0055CCFF' + - uid: 151 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-9.5 + pos: 4.5,-10.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 379 + - type: AtmosDevice + joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 387 + color: '#0055CCFF' + - uid: 171 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-0.5 + pos: -4.5,-8.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 379 + - type: AtmosDevice + joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 388 + color: '#0055CCFF' + - uid: 198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-0.5 + rot: 1.5707963267948966 rad + pos: -2.5,-14.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 379 + - type: AtmosDevice + joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 389 + color: '#0055CCFF' + - uid: 294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,8.5 + pos: -1.5,-4.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 379 + - type: AtmosDevice + joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 390 + color: '#0055CCFF' + - uid: 399 components: - type: Transform - pos: -1.5,11.5 + rot: 1.5707963267948966 rad + pos: -2.5,11.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 380 + - type: AtmosDevice + joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 391 + color: '#0055CCFF' + - uid: 401 components: - type: Transform - pos: 1.5,11.5 + rot: 1.5707963267948966 rad + pos: -4.5,8.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 379 + - type: AtmosDevice + joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 392 + color: '#0055CCFF' + - uid: 502 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,8.5 + pos: -5.5,-0.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 379 + - type: AtmosDevice + joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' -- proto: GasPort - entities: - - uid: 393 + color: '#0055CCFF' + - uid: 503 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-13.5 + pos: -0.5,4.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 380 - type: AtmosDevice joinedGrid: 1 -- proto: GasVentPump + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber entities: - - uid: 394 + - uid: 135 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-10.5 + rot: -1.5707963267948966 rad + pos: 2.5,-14.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 379 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 395 + color: '#990000FF' + - uid: 150 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-10.5 + rot: 1.5707963267948966 rad + pos: 0.5,-8.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 379 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 396 + color: '#990000FF' + - uid: 159 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-0.5 + pos: -4.5,-9.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 379 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 397 + color: '#990000FF' + - uid: 160 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-0.5 + pos: 4.5,-8.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 379 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 398 + color: '#990000FF' + - uid: 168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,11.5 + pos: 1.5,-4.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 379 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 399 + color: '#990000FF' + - uid: 478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,11.5 + rot: -1.5707963267948966 rad + pos: 2.5,11.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 380 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 400 + color: '#990000FF' + - uid: 479 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 379 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 401 + color: '#990000FF' + - uid: 480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,8.5 + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 379 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 402 + color: '#990000FF' + - uid: 504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-13.5 + rot: 3.141592653589793 rad + pos: 0.5,4.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 380 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#990000FF' - proto: GravityGeneratorMini entities: - - uid: 403 + - uid: 218 components: - type: Transform - pos: 2.5,-14.5 + pos: -2.5,-13.5 parent: 1 - proto: Grille entities: @@ -3373,6 +3804,13 @@ entities: - 0 - 0 - 0 +- proto: MaterialReclaimer + entities: + - uid: 22 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 - proto: MedicalBed entities: - uid: 469 @@ -3408,46 +3846,46 @@ entities: - type: Transform pos: 0.08593726,-4.3553824 parent: 1 -- proto: PaperCaptainsThoughts +- proto: NitrogenCanister entities: - - uid: 474 - components: - - type: Transform - pos: -1.7532775,14.734098 - parent: 1 - - uid: 475 - components: - - type: Transform - pos: -1.6751525,14.640348 - parent: 1 - - uid: 476 + - uid: 337 components: - type: Transform - pos: -1.4876525,14.687223 + anchored: True + pos: -0.5,-12.5 parent: 1 -- proto: PlasmaReinforcedWindowDirectional + - type: Physics + bodyType: Static + - type: AtmosDevice + joinedGrid: 1 +- proto: OxygenCanister entities: - - uid: 477 + - uid: 339 components: - type: Transform - pos: -0.5,-12.5 + anchored: True + pos: 0.5,-12.5 parent: 1 - - uid: 478 + - type: Physics + bodyType: Static + - type: AtmosDevice + joinedGrid: 1 +- proto: PaperCaptainsThoughts + entities: + - uid: 474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-12.5 + pos: -1.7532775,14.734098 parent: 1 - - uid: 479 + - uid: 475 components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-12.5 + - type: Transform + pos: -1.6751525,14.640348 parent: 1 - - uid: 480 + - uid: 476 components: - type: Transform - pos: 0.5,-12.5 + pos: -1.4876525,14.687223 parent: 1 - proto: PottedPlantRandom entities: @@ -3483,11 +3921,11 @@ entities: parent: 1 - proto: PowerCellRecharger entities: - - uid: 487 + - uid: 21 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-16.5 + pos: 2.5,-15.5 parent: 1 - uid: 488 components: @@ -3496,10 +3934,14 @@ entities: parent: 1 - proto: Poweredlight entities: + - uid: 377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1 - uid: 489 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,11.5 @@ -3508,8 +3950,6 @@ entities: powerLoad: 0 - uid: 490 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,11.5 @@ -3518,8 +3958,6 @@ entities: powerLoad: 0 - uid: 491 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,9.5 parent: 1 @@ -3527,8 +3965,6 @@ entities: powerLoad: 0 - uid: 492 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 3.5,4.5 @@ -3537,8 +3973,6 @@ entities: powerLoad: 0 - uid: 493 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -3.5,4.5 @@ -3547,8 +3981,6 @@ entities: powerLoad: 0 - uid: 494 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,-1.5 @@ -3557,8 +3989,6 @@ entities: powerLoad: 0 - uid: 495 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 @@ -3567,8 +3997,6 @@ entities: powerLoad: 0 - uid: 496 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-4.5 @@ -3577,8 +4005,6 @@ entities: powerLoad: 0 - uid: 497 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-4.5 @@ -3587,8 +4013,6 @@ entities: powerLoad: 0 - uid: 498 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-13.5 @@ -3597,8 +4021,6 @@ entities: powerLoad: 0 - uid: 499 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-13.5 @@ -3607,8 +4029,6 @@ entities: powerLoad: 0 - uid: 500 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-4.5 @@ -3617,54 +4037,12 @@ entities: powerLoad: 0 - uid: 501 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-4.5 parent: 1 - type: ApcPowerReceiver powerLoad: 0 - - uid: 502 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,6.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 503 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,6.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 504 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,7.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 505 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,7.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - proto: PoweredSmallLight entities: - uid: 506 @@ -3686,11 +4064,11 @@ entities: parent: 1 - proto: Rack entities: - - uid: 509 + - uid: 487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-17.5 + rot: 1.5707963267948966 rad + pos: -2.5,-14.5 parent: 1 - proto: RandomDrinkGlass entities: @@ -4063,26 +4441,11 @@ entities: parent: 1 - proto: SpawnPointLatejoin entities: - - uid: 578 - components: - - type: Transform - pos: -1.5,1.5 - parent: 1 - uid: 579 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 580 - components: - - type: Transform - pos: 0.5,1.5 - parent: 1 - - uid: 581 - components: - - type: Transform - pos: 1.5,1.5 - parent: 1 - proto: SpawnPointMercenary entities: - uid: 582 @@ -4124,11 +4487,6 @@ entities: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 589 - components: - - type: Transform - pos: -2.5,0.5 - parent: 1 - proto: SubstationWallBasic entities: - uid: 590 @@ -4164,29 +4522,11 @@ entities: - 0 - proto: SuitStorageEngi entities: - - uid: 592 + - uid: 403 components: - type: Transform - pos: 2.5,-15.5 + pos: 2.5,-14.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: SuitStorageMercenary entities: - uid: 315 @@ -4196,6 +4536,12 @@ entities: parent: 1 - proto: Table entities: + - uid: 523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 1 - uid: 594 components: - type: Transform @@ -4206,12 +4552,6 @@ entities: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 597 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-16.5 - parent: 1 - proto: TableGlass entities: - uid: 598 @@ -4283,6 +4623,29 @@ entities: parent: 1 - proto: TableReinforced entities: + - uid: 73 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -1.5,13.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,14.5 + parent: 1 + - uid: 165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 1 - uid: 610 components: - type: Transform @@ -4412,8 +4775,6 @@ entities: entities: - uid: 632 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -1.5,-2.5 parent: 1 @@ -4421,15 +4782,11 @@ entities: entities: - uid: 633 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 4.5,9.5 parent: 1 - uid: 634 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -5.5,-6.5 parent: 1 @@ -4437,8 +4794,6 @@ entities: entities: - uid: 635 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -2.5,14.5 parent: 1 @@ -4446,8 +4801,6 @@ entities: entities: - uid: 636 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 3.5,-12.5 parent: 1 @@ -4455,8 +4808,6 @@ entities: entities: - uid: 637 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 1.5,-4.5 parent: 1 @@ -4464,8 +4815,6 @@ entities: entities: - uid: 638 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 2.5,2.5 parent: 1 @@ -4473,8 +4822,6 @@ entities: entities: - uid: 639 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -2.5,2.5 parent: 1 @@ -4482,15 +4829,11 @@ entities: entities: - uid: 640 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -5.5,5.5 parent: 1 - uid: 641 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 5.5,5.5 parent: 1 @@ -4498,642 +4841,484 @@ entities: entities: - uid: 642 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 2.5,14.5 parent: 1 - proto: WallShuttle entities: + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 1 + - uid: 524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 1 - uid: 643 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-7.5 parent: 1 - uid: 644 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-7.5 parent: 1 - uid: 645 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-6.5 parent: 1 - uid: 646 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 6.5,6.5 parent: 1 - uid: 647 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 6.5,5.5 parent: 1 - uid: 648 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-2.5 parent: 1 - uid: 649 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 6.5,1.5 parent: 1 - uid: 650 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,6.5 parent: 1 - uid: 651 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,10.5 parent: 1 - uid: 652 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 4.5,10.5 parent: 1 - uid: 653 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 4.5,11.5 parent: 1 - uid: 654 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 4.5,12.5 parent: 1 - uid: 655 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,13.5 parent: 1 - uid: 656 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,12.5 parent: 1 - uid: 657 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,6.5 parent: 1 - uid: 658 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-11.5 parent: 1 - uid: 659 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-11.5 parent: 1 - uid: 660 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-13.5 parent: 1 - uid: 661 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,12.5 parent: 1 - uid: 662 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 1.5,3.5 parent: 1 - uid: 663 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,13.5 parent: 1 - uid: 664 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,7.5 parent: 1 - uid: 665 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -4.5,12.5 parent: 1 - uid: 666 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -4.5,11.5 parent: 1 - uid: 667 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -4.5,10.5 parent: 1 - uid: 668 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -5.5,10.5 parent: 1 - uid: 669 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -5.5,6.5 parent: 1 - uid: 670 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -6.5,6.5 parent: 1 - uid: 671 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -6.5,5.5 parent: 1 - uid: 672 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -6.5,1.5 parent: 1 - uid: 673 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 1 - uid: 674 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-6.5 parent: 1 - uid: 675 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-7.5 parent: 1 - uid: 676 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-11.5 parent: 1 - uid: 677 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-11.5 parent: 1 - uid: 678 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-13.5 parent: 1 - uid: 679 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-11.5 parent: 1 - uid: 680 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-11.5 parent: 1 - uid: 681 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-7.5 parent: 1 - uid: 682 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,10.5 parent: 1 - uid: 683 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,4.5 parent: 1 - uid: 684 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,10.5 parent: 1 - uid: 685 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,3.5 parent: 1 - uid: 686 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 0.5,3.5 parent: 1 - uid: 687 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,4.5 parent: 1 - uid: 688 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,3.5 parent: 1 - uid: 689 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,6.5 parent: 1 - uid: 690 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,7.5 parent: 1 - uid: 691 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,10.5 parent: 1 - uid: 692 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,10.5 parent: 1 - uid: 693 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,10.5 parent: 1 - uid: 694 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,10.5 parent: 1 - uid: 695 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -0.5,3.5 parent: 1 - uid: 696 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-2.5 parent: 1 - uid: 697 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-2.5 parent: 1 - uid: 698 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-11.5 parent: 1 - uid: 699 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-10.5 parent: 1 - uid: 700 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-10.5 parent: 1 - uid: 701 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-11.5 parent: 1 - uid: 702 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-7.5 parent: 1 - uid: 703 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-6.5 parent: 1 - uid: 704 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-7.5 parent: 1 - uid: 705 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-6.5 parent: 1 - uid: 706 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-3.5 parent: 1 - uid: 707 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-4.5 parent: 1 - uid: 708 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,8.5 parent: 1 - uid: 709 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,8.5 parent: 1 - uid: 710 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-4.5 parent: 1 - uid: 711 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-3.5 parent: 1 - uid: 712 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -1.5,-18.5 parent: 1 - uid: 713 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -1.5,3.5 parent: 1 - uid: 714 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -0.5,-18.5 parent: 1 - uid: 715 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-7.5 parent: 1 - uid: 716 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-7.5 parent: 1 - uid: 717 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-7.5 parent: 1 - uid: 718 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-7.5 parent: 1 - uid: 719 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-7.5 parent: 1 - uid: 720 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 0.5,-18.5 parent: 1 - uid: 721 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 0.5,-11.5 parent: 1 - uid: 722 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -0.5,-11.5 parent: 1 - uid: 723 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-7.5 parent: 1 - uid: 724 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-9.5 parent: 1 - uid: 725 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-9.5 parent: 1 - uid: 726 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 1.5,-18.5 @@ -5237,4 +5422,11 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-1.5 parent: 1 +- proto: WindoorSecure + entities: + - uid: 126 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1 ... diff --git a/Resources/Maps/_NF/Shuttles/dartx.yml b/Resources/Maps/_NF/Shuttles/dartx.yml index 772a5e1fcc8..c48c2817df3 100644 --- a/Resources/Maps/_NF/Shuttles/dartx.yml +++ b/Resources/Maps/_NF/Shuttles/dartx.yml @@ -10,14 +10,14 @@ tilemap: 37: FloorDarkPavement 38: FloorDarkPavementVertical 65: FloorMetalDiamond - 90: FloorSteel - 100: FloorSteelMini - 101: FloorSteelMono - 105: FloorTechMaint - 115: FloorWhiteOffset - 119: FloorWood - 121: Lattice - 122: Plating + 92: FloorSteel + 102: FloorSteelMini + 103: FloorSteelMono + 107: FloorTechMaint + 117: FloorWhiteOffset + 121: FloorWood + 124: Lattice + 125: Plating entities: - proto: "" entities: @@ -31,27 +31,27 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIgAAAAADIgAAAAACegAAAAAAegAAAAAAJgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIgAAAAAAIgAAAAABdwAAAAAAdwAAAAABJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIgAAAAADIgAAAAADdwAAAAAAdwAAAAAAJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIgAAAAAAIgAAAAADdwAAAAACdwAAAAABJgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIgAAAAAAIgAAAAAAdwAAAAAAdwAAAAACJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIgAAAAADIgAAAAABdwAAAAADdwAAAAABJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIgAAAAABIgAAAAAAdwAAAAACdwAAAAABJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAIgAAAAAAIgAAAAABdwAAAAABdwAAAAABJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAIgAAAAAAIgAAAAABegAAAAAAegAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAcwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAegAAAAAAHgAAAAABJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAegAAAAAAHgAAAAADJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAegAAAAAAegAAAAAAJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAIwAAAAACHgAAAAABJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAIwAAAAADHgAAAAADJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAIwAAAAAAHgAAAAADJgAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAIgAAAAADIgAAAAACfQAAAAAAfQAAAAAAJgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAIgAAAAAAIgAAAAABeQAAAAAAeQAAAAABJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAIgAAAAADIgAAAAADeQAAAAAAeQAAAAAAJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAIgAAAAAAIgAAAAADeQAAAAACeQAAAAABJgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAACJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAIgAAAAADIgAAAAABeQAAAAADeQAAAAABJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAIgAAAAABIgAAAAAAeQAAAAACeQAAAAABJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAIgAAAAAAIgAAAAABeQAAAAABeQAAAAABJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIgAAAAAAIgAAAAABfQAAAAAAfQAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAdQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAfQAAAAAAHgAAAAABJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAfQAAAAAAHgAAAAADJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAfQAAAAAAfQAAAAAAJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAIwAAAAACHgAAAAABJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAIwAAAAADHgAAAAADJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAIwAAAAAAHgAAAAADJgAAAAAB version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAegAAAAAAegAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAegAAAAAAdwAAAAADdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAegAAAAAAdwAAAAAAdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAcwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAJQAAAAADIQAAAAACegAAAAAAegAAAAAAJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAJQAAAAAAIQAAAAADJgAAAAAAJgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAJQAAAAAAJQAAAAAAIQAAAAACJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAJQAAAAAAJQAAAAACIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAfQAAAAAAfQAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAfQAAAAAAeQAAAAADeQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAfQAAAAAAeQAAAAAAeQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAdQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJQAAAAADIQAAAAACfQAAAAAAfQAAAAAAJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAIQAAAAADJgAAAAAAJgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAIQAAAAACJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAJQAAAAACIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: egAAAAAAegAAAAAAIgAAAAACIgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIgAAAAAAIgAAAAADIgAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIgAAAAACIgAAAAADIgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIgAAAAABIgAAAAACIgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIgAAAAADIgAAAAADIgAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADZAAAAAADZAAAAAAAZAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZAAAAAADZAAAAAADZAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAZAAAAAADZAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADIwAAAAAAWgAAAAACWgAAAAAAWgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADIwAAAAADWgAAAAADWgAAAAAAWgAAAAACaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACIwAAAAACWgAAAAACWgAAAAAAWgAAAAABaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAAIgAAAAACIgAAAAACfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIgAAAAAAIgAAAAADIgAAAAABfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIgAAAAACIgAAAAADIgAAAAACfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIgAAAAABIgAAAAACIgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIgAAAAADIgAAAAADIgAAAAABfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAADZgAAAAADZgAAAAAAZgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAZgAAAAADZgAAAAADZgAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAZgAAAAADZgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAfQAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAABfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAfQAAAAAAXAAAAAADXAAAAAADXAAAAAAAXAAAAAADfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAXAAAAAADXAAAAAACXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADIwAAAAAAXAAAAAACXAAAAAAAXAAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADIwAAAAADXAAAAAADXAAAAAAAXAAAAAACawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACIwAAAAACXAAAAAACXAAAAAAAXAAAAAABawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,0: ind: 0,0 - tiles: egAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIQAAAAABJQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACIQAAAAAAJQAAAAADegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAADJQAAAAACJQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABJQAAAAACegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAACfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAIQAAAAABJQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACIQAAAAAAJQAAAAADfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAADJQAAAAACJQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABJQAAAAACfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAJQAAAAAAJQAAAAACIQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIQAAAAAAJgAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAJQAAAAAAJQAAAAACIQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIQAAAAAAJgAAAAAD version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABJQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABJQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -76,288 +76,288 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 201: 3,-12 + 183: 3,-12 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 142: -4,4 - 197: 3,-16 + 128: -4,4 + 179: 3,-16 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 139: 2,4 - 194: 1,-15 - 195: 2,-16 + 125: 2,4 + 176: 1,-15 + 177: 2,-16 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 144: -4,5 + 130: -4,5 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 143: 2,5 - 196: 2,-15 + 129: 2,5 + 178: 2,-15 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 198: 3,-15 - 199: 3,-14 - 200: 3,-13 + 180: 3,-15 + 181: 3,-14 + 182: 3,-13 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 147: -3,7 - 148: -2,7 - 149: -1,7 - 150: 0,7 - 151: 1,7 + 133: -3,7 + 134: -2,7 + 135: -1,7 + 136: 0,7 + 137: 1,7 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 136: -1,5 - 137: 0,5 - 138: 1,5 - 140: 3,4 - 141: -5,4 - 145: -3,5 - 146: -2,5 + 122: -1,5 + 123: 0,5 + 124: 1,5 + 126: 3,4 + 127: -5,4 + 131: -3,5 + 132: -2,5 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 202: 1,-14 + 184: 1,-14 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 60: 3,-8 + 46: 3,-8 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 58: 1,-9 - 59: 2,-8 + 44: 1,-9 + 45: 2,-8 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 182: 3,-10 + 164: 3,-10 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 103: 2,-6 - 181: 1,-10 + 89: 2,-6 + 163: 1,-10 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 61: 2,-9 + 47: 2,-9 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 106: 5,-6 + 92: 5,-6 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 62: 3,-9 - 63: 3,-10 + 48: 3,-9 + 49: 3,-10 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 104: 3,-6 - 105: 4,-6 - 183: 2,-10 + 90: 3,-6 + 91: 4,-6 + 165: 2,-10 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 64: 1,-10 - 98: 2,-1 - 99: 2,-2 - 100: 2,-3 - 101: 2,-4 - 102: 2,-5 - 107: 5,-7 + 50: 1,-10 + 84: 2,-1 + 85: 2,-2 + 86: 2,-3 + 87: 2,-4 + 88: 2,-5 + 93: 5,-7 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 94: -4,2 + 80: -4,2 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: - 75: -4,2 + 61: -4,2 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 159: -4,4 + 145: -4,4 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 93: -4,-6 + 79: -4,-6 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 68: -4,-6 + 54: -4,-6 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 162: 2,4 + 148: 2,4 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 113: 2,-6 + 99: 2,-6 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 97: -7,2 + 83: -7,2 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 78: -7,2 + 64: -7,2 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 158: -4,5 + 144: -4,5 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 90: -7,-6 + 76: -7,-6 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe decals: - 71: -7,-6 + 57: -7,-6 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw decals: - 157: 2,5 + 143: 2,5 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: - 116: 5,-6 + 102: 5,-6 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 80: -4,-1 - 81: -4,-2 - 82: -4,-3 - 85: -4,-4 - 86: -4,-5 - 87: -4,1 - 88: -7,3 - 89: -7,-7 + 66: -4,-1 + 67: -4,-2 + 68: -4,-3 + 71: -4,-4 + 72: -4,-5 + 73: -4,1 + 74: -7,3 + 75: -7,-7 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 65: -4,-1 - 66: -4,-2 - 67: -4,-3 - 72: -7,-7 - 73: -4,0 - 74: -4,1 - 79: -7,3 - 83: -4,-4 - 84: -4,-5 + 51: -4,-1 + 52: -4,-2 + 53: -4,-3 + 58: -7,-7 + 59: -4,0 + 60: -4,1 + 65: -7,3 + 69: -4,-4 + 70: -4,-5 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 163: -3,7 - 164: -2,7 - 165: -1,7 - 166: 0,7 - 167: 1,7 + 149: -3,7 + 150: -2,7 + 151: -1,7 + 152: 0,7 + 153: 1,7 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 95: -5,2 - 96: -6,2 + 81: -5,2 + 82: -6,2 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 76: -5,2 - 77: -6,2 + 62: -5,2 + 63: -6,2 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 152: -3,5 - 153: -2,5 - 154: -1,5 - 155: 0,5 - 156: 1,5 - 160: -5,4 - 161: 3,4 + 138: -3,5 + 139: -2,5 + 140: -1,5 + 141: 0,5 + 142: 1,5 + 146: -5,4 + 147: 3,4 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 91: -6,-6 - 92: -5,-6 + 77: -6,-6 + 78: -5,-6 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 114: 3,-6 - 115: 4,-6 + 100: 3,-6 + 101: 4,-6 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 69: -5,-6 - 70: -6,-6 + 55: -5,-6 + 56: -6,-6 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 108: 2,-1 - 109: 2,-2 - 110: 2,-3 - 111: 2,-4 - 112: 2,-5 - 117: 5,-7 + 94: 2,-1 + 95: 2,-2 + 96: 2,-3 + 97: 2,-4 + 98: 2,-5 + 103: 5,-7 - node: color: '#5E7C16FF' id: MiniTileCheckerBOverlay decals: - 184: 3,-12 - 185: 3,-13 - 186: 3,-14 - 187: 2,-14 - 188: 1,-14 - 189: 1,-15 - 190: 2,-15 - 191: 3,-15 - 192: 3,-16 - 193: 2,-16 + 166: 3,-12 + 167: 3,-13 + 168: 3,-14 + 169: 2,-14 + 170: 1,-14 + 171: 1,-15 + 172: 2,-15 + 173: 3,-15 + 174: 3,-16 + 175: 2,-16 - node: color: '#79150096' id: MiniTileCheckerBOverlay @@ -384,57 +384,57 @@ entities: color: '#9FED5896' id: MiniTileCheckerBOverlay decals: - 42: 1,-10 - 43: 1,-9 - 44: 2,-9 - 45: 2,-10 - 46: 3,-10 - 47: 3,-9 - 48: 3,-8 - 49: 2,-8 + 34: 1,-10 + 35: 1,-9 + 36: 2,-9 + 37: 2,-10 + 38: 3,-10 + 39: 3,-9 + 40: 3,-8 + 41: 2,-8 - node: color: '#DE3A3A96' id: StandClearGreyscale decals: - 50: 0,-14 - 51: 0,-10 - 118: -3,-1 - 119: -3,-2 - 120: -3,-3 - 121: 1,-1 - 122: 1,-2 - 123: 1,-3 + 42: 0,-14 + 43: 0,-10 + 104: -3,-1 + 105: -3,-2 + 106: -3,-3 + 107: 1,-1 + 108: 1,-2 + 109: 1,-3 - node: color: '#DE3A3A96' id: WarnBox decals: - 174: 5,3 - 175: 5,2 - 176: 5,1 + 160: 5,3 + 161: 5,2 + 162: 5,1 - node: color: '#52B4E996' id: WarnBoxGreyscale decals: - 168: 2,2 - 169: 2,1 - 170: 2,0 - 171: 2,2 - 172: 2,1 - 173: 2,0 + 154: 2,2 + 155: 2,1 + 156: 2,0 + 157: 2,2 + 158: 2,1 + 159: 2,0 - node: color: '#EFB34196' id: WarnLineE decals: - 124: 0,-1 - 125: 0,-2 - 126: 0,-3 + 110: 0,-1 + 111: 0,-2 + 112: 0,-3 - node: color: '#EFB34196' id: WarnLineS decals: - 127: -2,-1 - 128: -2,-2 - 129: -2,-3 + 113: -2,-1 + 114: -2,-2 + 115: -2,-3 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe @@ -460,16 +460,16 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 130: -2,3 - 131: -1,3 - 132: 0,3 + 116: -2,3 + 117: -1,3 + 118: 0,3 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 133: -2,1 - 134: -1,1 - 135: 0,1 + 119: -2,1 + 120: -1,1 + 121: 0,1 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -494,53 +494,54 @@ entities: -3,-1: 0: 52428 -3,-2: - 0: 34952 + 1: 34952 -2,-3: - 0: 65262 + 1: 12834 + 0: 52428 -2,-2: - 0: 65503 - 1: 32 + 0: 65535 -2,-1: 0: 65535 -2,-4: - 0: 61166 + 1: 8738 + 0: 52428 -1,-4: 0: 65535 -1,-3: 0: 65535 -1,-2: - 0: 48063 - 1: 17472 + 0: 65535 -3,0: - 0: 34956 + 0: 12 + 1: 34944 -3,1: - 0: 8 + 1: 8 -2,0: - 0: 57343 - 1: 8192 + 0: 65535 -2,1: - 0: 36071 - 2: 8 + 0: 35023 + 1: 1056 -2,2: - 0: 8 + 1: 8 -1,2: 0: 15 0,-4: - 0: 32767 - 3: 32768 + 0: 65535 0,-3: - 0: 65527 - 4: 8 + 0: 65535 0,-2: 0: 65535 0,-1: 0: 65535 1,-4: - 0: 13107 + 0: 4369 + 1: 8738 1,-3: - 0: 29491 + 0: 4369 + 1: 25122 1,-2: - 0: 65535 + 0: 30583 + 1: 34952 1,-1: 0: 65535 2,-1: @@ -548,14 +549,16 @@ entities: 0,0: 0: 65535 0,1: - 0: 65527 - 1: 8 + 0: 65535 0,2: - 0: 15 + 0: 7 + 1: 8 1,0: - 0: 65535 + 0: 30591 + 1: 34944 1,1: - 0: 319 + 0: 23 + 1: 296 2,0: 0: 1 -3,-7: @@ -563,38 +566,45 @@ entities: -3,-6: 0: 52428 -3,-5: - 0: 140 + 1: 132 + 0: 8 -2,-7: 0: 61440 -2,-6: 0: 65535 -2,-5: - 0: 64511 - 1: 1024 + 0: 61439 + 1: 4096 -1,-7: - 0: 4096 + 1: 4096 -1,-6: - 0: 30513 + 0: 13073 + 1: 17440 -1,-5: - 0: 65535 + 0: 65523 + 1: 12 0,-6: - 0: 65516 + 1: 4384 + 0: 61132 0,-5: - 0: 65535 + 1: 1 + 0: 65534 0,-7: - 0: 49152 + 1: 16384 + 0: 32768 1,-7: 0: 61440 1,-6: 0: 65535 1,-5: - 0: 30719 + 0: 14207 + 1: 16512 2,-7: 0: 4096 2,-6: 0: 4369 2,-5: - 0: 1 + 1: 1 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -612,55 +622,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 19.950384 - - 75.051445 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.1499 + temperature: 293.15 moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 21.824879 - - 82.10312 - 0 - 0 - 0 @@ -679,44 +644,105 @@ entities: - type: GasTileOverlay - type: BecomesStation id: DartX +- proto: AirAlarm + entities: + - uid: 1003 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 1 + - type: DeviceList + devices: + - 301 + - 689 + - 302 + - 475 + - type: AtmosDevice + joinedGrid: 1 + - uid: 1004 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - type: DeviceList + devices: + - 239 + - 464 + - 691 + - 285 + - 284 + - 484 + - 711 + - 286 + - 486 + - 242 + - type: AtmosDevice + joinedGrid: 1 + - uid: 1005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + - type: DeviceList + devices: + - 309 + - 459 + - 723 + - 308 + - 497 + - 613 + - 276 + - 266 + - 790 + - 957 + - type: AtmosDevice + joinedGrid: 1 - proto: AirCanister entities: - uid: 45 components: - type: Transform + anchored: True pos: -5.5,-23.5 parent: 1 + - type: Physics + bodyType: Static - type: AtmosDevice joinedGrid: 1 - uid: 126 components: - type: Transform + anchored: True pos: 2.5,2.5 parent: 1 + - type: Physics + bodyType: Static - type: AtmosDevice joinedGrid: 1 - proto: Airlock entities: - uid: 765 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-9.5 parent: 1 +- proto: AirlockAtmosphericsGlass + entities: + - uid: 120 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 1 - proto: AirlockCommand entities: - uid: 117 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,0.5 parent: 1 - uid: 119 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,4.5 parent: 1 @@ -754,11 +780,6 @@ entities: parent: 1 - proto: AirlockEngineeringGlass entities: - - uid: 120 - components: - - type: Transform - pos: -2.5,-17.5 - parent: 1 - uid: 121 components: - type: Transform @@ -823,8 +844,6 @@ entities: entities: - uid: 426 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-13.5 parent: 1 @@ -848,8 +867,6 @@ entities: entities: - uid: 141 components: - - type: MetaData - flags: InContainer - type: Transform parent: 253 - type: Physics @@ -991,1256 +1008,1181 @@ entities: - type: Transform pos: 8.5,-2.5 parent: 1 -- proto: BarSign +- proto: AtmosFixBlockerMarker entities: - - uid: 917 + - uid: 785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-11.5 + pos: -8.5,-4.5 parent: 1 -- proto: Bed - entities: - - uid: 817 + - uid: 788 components: - type: Transform - pos: -1.5,3.5 + pos: -8.5,1.5 parent: 1 - - uid: 818 + - uid: 845 components: - type: Transform - pos: -1.5,1.5 + pos: 5.5,-8.5 parent: 1 - - uid: 819 + - uid: 846 components: - type: Transform - pos: -1.5,2.5 + pos: -6.5,-8.5 parent: 1 -- proto: BedsheetCaptain - entities: - - uid: 125 + - uid: 876 components: - type: Transform - pos: -1.5,3.5 + pos: 7.5,-4.5 parent: 1 -- proto: BedsheetClown - entities: - - uid: 123 + - uid: 877 components: - type: Transform - pos: -1.5,2.5 + pos: -8.5,2.5 parent: 1 -- proto: BedsheetMedical - entities: - - uid: 764 + - uid: 879 components: - type: Transform - pos: -4.5,2.5 + pos: -8.5,3.5 parent: 1 -- proto: BedsheetSpawner - entities: - - uid: 827 + - uid: 880 components: - type: Transform - pos: -1.5,1.5 + pos: -8.5,4.5 parent: 1 -- proto: BookAtmosWaste - entities: - - uid: 950 + - uid: 896 components: - type: Transform - pos: 3.3890526,-8.58493 + pos: -6.5,5.5 parent: 1 -- proto: BookshelfFilled - entities: - - uid: 336 + - uid: 901 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 0.5,3.5 + pos: -5.5,6.5 parent: 1 -- proto: BoozeDispenser - entities: - - uid: 629 + - uid: 902 components: - type: Transform - pos: -4.5,-7.5 + pos: -4.5,8.5 parent: 1 -- proto: BoxBeaker - entities: - - uid: 930 + - uid: 904 components: - type: Transform - pos: -4.3552256,-5.39901 + pos: 3.5,8.5 parent: 1 -- proto: BoxBottle - entities: - - uid: 339 + - uid: 905 components: - type: Transform - pos: -5.5739756,-5.258385 + pos: 4.5,6.5 parent: 1 -- proto: BoxPillCanister - entities: - - uid: 342 + - uid: 914 components: - type: Transform - pos: -5.3396006,-5.4693227 + pos: 5.5,5.5 parent: 1 -- proto: BoxSterileMask - entities: - - uid: 767 + - uid: 919 components: - type: Transform - pos: -3.3960376,1.6369917 + pos: 7.5,4.5 parent: 1 -- proto: CableApcExtension - entities: - - uid: 553 + - uid: 924 components: - type: Transform - pos: -1.5,4.5 + pos: 7.5,3.5 parent: 1 - - uid: 554 + - uid: 928 components: - type: Transform - pos: -1.5,5.5 + pos: 7.5,2.5 parent: 1 - - uid: 555 + - uid: 948 components: - type: Transform - pos: -1.5,6.5 + pos: 7.5,1.5 parent: 1 - - uid: 556 + - uid: 953 components: - type: Transform - pos: -1.5,7.5 + pos: 7.5,-5.5 parent: 1 - - uid: 557 + - uid: 954 components: - type: Transform - pos: -2.5,7.5 + pos: 7.5,-6.5 parent: 1 - - uid: 558 + - uid: 955 components: - type: Transform - pos: -0.5,7.5 + pos: 7.5,-7.5 parent: 1 - - uid: 559 + - uid: 956 components: - type: Transform - pos: 0.5,7.5 + pos: 6.5,-8.5 parent: 1 - - uid: 560 + - uid: 958 components: - type: Transform - pos: 1.5,7.5 + pos: 5.5,-9.5 parent: 1 - - uid: 561 + - uid: 959 components: - type: Transform - pos: -2.5,5.5 + pos: 5.5,-10.5 parent: 1 - - uid: 562 + - uid: 960 components: - type: Transform - pos: -3.5,5.5 + pos: 5.5,-11.5 parent: 1 - - uid: 563 + - uid: 961 components: - type: Transform - pos: -0.5,5.5 + pos: 5.5,-12.5 parent: 1 - - uid: 564 + - uid: 962 components: - type: Transform - pos: 0.5,5.5 + pos: 5.5,-13.5 parent: 1 - - uid: 565 + - uid: 963 components: - type: Transform - pos: 1.5,5.5 + pos: 5.5,-14.5 parent: 1 - - uid: 566 + - uid: 964 components: - type: Transform - pos: 2.5,5.5 + pos: 5.5,-15.5 parent: 1 - - uid: 567 + - uid: 965 components: - type: Transform - pos: -1.5,0.5 + pos: 6.5,-16.5 parent: 1 - - uid: 568 + - uid: 966 components: - type: Transform - pos: -1.5,-0.5 + pos: 7.5,-18.5 parent: 1 - - uid: 569 + - uid: 967 components: - type: Transform - pos: -1.5,1.5 + pos: 8.5,-19.5 parent: 1 - - uid: 570 + - uid: 968 components: - type: Transform - pos: -0.5,1.5 + pos: 2.5,-24.5 parent: 1 - - uid: 571 + - uid: 969 components: - type: Transform - pos: 0.5,1.5 + pos: 1.5,-22.5 parent: 1 - - uid: 572 + - uid: 970 components: - type: Transform - pos: -0.5,-0.5 + pos: 0.5,-21.5 parent: 1 - - uid: 573 + - uid: 971 components: - type: Transform - pos: 0.5,-0.5 + pos: 0.5,-20.5 parent: 1 - - uid: 574 + - uid: 972 components: - type: Transform - pos: 1.5,-0.5 + pos: 0.5,-19.5 parent: 1 - - uid: 575 + - uid: 973 components: - type: Transform - pos: 2.5,-0.5 + pos: -0.5,-19.5 parent: 1 - - uid: 576 + - uid: 974 components: - type: Transform - pos: 3.5,-0.5 + pos: -1.5,-19.5 parent: 1 - - uid: 577 + - uid: 975 components: - type: Transform - pos: 4.5,-0.5 + pos: -1.5,-20.5 parent: 1 - - uid: 578 + - uid: 976 components: - type: Transform - pos: 4.5,0.5 + pos: -1.5,-21.5 parent: 1 - - uid: 579 + - uid: 977 components: - type: Transform - pos: 4.5,1.5 + pos: -2.5,-22.5 parent: 1 - - uid: 580 + - uid: 978 components: - type: Transform - pos: 4.5,2.5 + pos: -3.5,-24.5 parent: 1 - - uid: 581 + - uid: 979 components: - type: Transform - pos: 5.5,2.5 + pos: -9.5,-19.5 parent: 1 - - uid: 582 + - uid: 980 components: - type: Transform - pos: 1.5,-18.5 + pos: -8.5,-18.5 parent: 1 - - uid: 583 + - uid: 981 components: - type: Transform - pos: 2.5,-18.5 + pos: -7.5,-16.5 parent: 1 - - uid: 584 + - uid: 982 components: - type: Transform - pos: 3.5,-18.5 + pos: -6.5,-15.5 parent: 1 - - uid: 585 + - uid: 983 components: - type: Transform - pos: 3.5,-19.5 + pos: -6.5,-14.5 parent: 1 - - uid: 586 + - uid: 984 components: - type: Transform - pos: 3.5,-20.5 + pos: -6.5,-13.5 parent: 1 - - uid: 587 + - uid: 985 components: - type: Transform - pos: 3.5,-21.5 + pos: -6.5,-12.5 parent: 1 - - uid: 588 + - uid: 986 components: - type: Transform - pos: 3.5,-22.5 + pos: -6.5,-11.5 parent: 1 - - uid: 589 + - uid: 987 components: - type: Transform - pos: 2.5,-20.5 + pos: -6.5,-10.5 parent: 1 - - uid: 590 + - uid: 988 components: - type: Transform - pos: 1.5,-20.5 + pos: -6.5,-9.5 parent: 1 - - uid: 591 + - uid: 990 components: - type: Transform - pos: 1.5,-17.5 + pos: -7.5,-8.5 parent: 1 - - uid: 592 + - uid: 991 components: - type: Transform - pos: 4.5,-18.5 + pos: -8.5,-7.5 parent: 1 - - uid: 593 + - uid: 992 components: - type: Transform - pos: 5.5,-18.5 + pos: -8.5,-6.5 parent: 1 - - uid: 594 + - uid: 993 components: - type: Transform - pos: 0.5,-17.5 + pos: -8.5,-5.5 parent: 1 - - uid: 595 +- proto: BarSign + entities: + - uid: 917 components: - type: Transform - pos: -0.5,-17.5 + rot: 1.5707963267948966 rad + pos: -5.5,-11.5 parent: 1 - - uid: 596 +- proto: Bed + entities: + - uid: 817 components: - type: Transform - pos: -1.5,-17.5 + pos: -1.5,3.5 parent: 1 - - uid: 597 + - uid: 818 components: - type: Transform - pos: -2.5,-17.5 + pos: -1.5,1.5 parent: 1 - - uid: 598 + - uid: 819 components: - type: Transform - pos: -3.5,-17.5 + pos: -1.5,2.5 parent: 1 - - uid: 599 +- proto: BedsheetCaptain + entities: + - uid: 125 components: - type: Transform - pos: -4.5,-17.5 + pos: -1.5,3.5 parent: 1 - - uid: 600 +- proto: BedsheetClown + entities: + - uid: 123 components: - type: Transform - pos: -4.5,-18.5 + pos: -1.5,2.5 parent: 1 - - uid: 601 +- proto: BedsheetMedical + entities: + - uid: 764 components: - type: Transform - pos: -4.5,-19.5 + pos: -4.5,2.5 parent: 1 - - uid: 602 +- proto: BedsheetSpawner + entities: + - uid: 827 components: - type: Transform - pos: -4.5,-20.5 + pos: -1.5,1.5 parent: 1 - - uid: 603 +- proto: BookAtmosWaste + entities: + - uid: 950 components: - type: Transform - pos: -4.5,-21.5 + pos: 3.3890526,-8.58493 parent: 1 - - uid: 604 +- proto: BookshelfFilled + entities: + - uid: 336 components: - type: Transform - pos: -4.5,-22.5 + pos: 0.5,3.5 parent: 1 - - uid: 605 +- proto: BoozeDispenser + entities: + - uid: 629 components: - type: Transform - pos: -3.5,-19.5 + pos: -4.5,-7.5 parent: 1 - - uid: 606 +- proto: BoxBeaker + entities: + - uid: 930 components: - type: Transform - pos: -2.5,-19.5 + pos: -4.3552256,-5.39901 parent: 1 - - uid: 607 +- proto: BoxBottle + entities: + - uid: 339 components: - type: Transform - pos: -3.5,-22.5 + pos: -5.5739756,-5.258385 parent: 1 - - uid: 608 +- proto: BoxPillCanister + entities: + - uid: 342 components: - type: Transform - pos: -5.5,-22.5 + pos: -5.3396006,-5.4693227 parent: 1 - - uid: 609 +- proto: BoxSterileMask + entities: + - uid: 767 components: - type: Transform - pos: -5.5,-23.5 + pos: -3.3960376,1.6369917 parent: 1 - - uid: 610 +- proto: CableApcExtension + entities: + - uid: 265 components: - type: Transform - pos: -6.5,-23.5 + pos: 4.5,-19.5 parent: 1 - - uid: 611 + - uid: 269 components: - type: Transform - pos: -7.5,-23.5 + pos: -6.5,-22.5 parent: 1 - - uid: 612 + - uid: 289 components: - type: Transform - pos: -8.5,-23.5 + pos: 3.5,-18.5 parent: 1 - - uid: 613 + - uid: 294 components: - type: Transform - pos: -5.5,-21.5 + pos: 2.5,-19.5 parent: 1 - - uid: 614 + - uid: 553 components: - type: Transform - pos: -6.5,-21.5 + pos: -1.5,4.5 parent: 1 - - uid: 615 + - uid: 554 components: - type: Transform - pos: -7.5,-21.5 + pos: -1.5,5.5 parent: 1 - - uid: 616 + - uid: 561 components: - type: Transform - pos: -8.5,-21.5 + pos: -2.5,5.5 parent: 1 - - uid: 645 + - uid: 562 components: - type: Transform - pos: -2.5,-0.5 + pos: -3.5,5.5 parent: 1 - - uid: 646 + - uid: 563 components: - type: Transform - pos: -3.5,-0.5 + pos: -0.5,5.5 parent: 1 - - uid: 647 + - uid: 564 components: - type: Transform - pos: -4.5,-0.5 + pos: 0.5,5.5 parent: 1 - - uid: 648 + - uid: 565 components: - type: Transform - pos: -5.5,-0.5 + pos: 1.5,5.5 parent: 1 - - uid: 649 + - uid: 566 components: - type: Transform - pos: -5.5,0.5 + pos: 2.5,5.5 parent: 1 - - uid: 650 + - uid: 567 components: - type: Transform - pos: -5.5,1.5 + pos: -1.5,0.5 parent: 1 - - uid: 651 + - uid: 568 components: - type: Transform - pos: -5.5,2.5 + pos: -1.5,-0.5 parent: 1 - - uid: 652 + - uid: 569 components: - type: Transform - pos: -6.5,2.5 + pos: -1.5,1.5 parent: 1 - - uid: 653 + - uid: 570 components: - type: Transform - pos: -5.5,-1.5 + pos: -0.5,1.5 parent: 1 - - uid: 654 + - uid: 571 components: - type: Transform - pos: -5.5,-2.5 + pos: 0.5,1.5 parent: 1 - - uid: 655 + - uid: 572 components: - type: Transform - pos: -5.5,-3.5 + pos: -0.5,-0.5 parent: 1 - - uid: 656 + - uid: 573 components: - type: Transform - pos: -5.5,-4.5 + pos: 0.5,-0.5 parent: 1 - - uid: 657 + - uid: 574 components: - type: Transform - pos: -5.5,-5.5 + pos: 1.5,-0.5 parent: 1 - - uid: 658 + - uid: 575 components: - type: Transform - pos: -0.5,-11.5 + pos: 2.5,-0.5 parent: 1 - - uid: 659 + - uid: 576 components: - type: Transform - pos: -0.5,-10.5 + pos: 3.5,-0.5 parent: 1 - - uid: 660 + - uid: 577 components: - type: Transform - pos: -0.5,-9.5 + pos: 4.5,-0.5 parent: 1 - - uid: 661 + - uid: 578 components: - type: Transform - pos: -0.5,-8.5 + pos: 4.5,0.5 parent: 1 - - uid: 662 + - uid: 579 components: - type: Transform - pos: -0.5,-7.5 + pos: 4.5,1.5 parent: 1 - - uid: 663 + - uid: 580 components: - type: Transform - pos: -0.5,-6.5 + pos: 4.5,2.5 parent: 1 - - uid: 664 + - uid: 581 components: - type: Transform - pos: -0.5,-5.5 + pos: 5.5,2.5 parent: 1 - - uid: 665 + - uid: 582 components: - type: Transform - pos: -0.5,-4.5 + pos: 1.5,-18.5 parent: 1 - - uid: 666 + - uid: 583 components: - type: Transform - pos: 0.5,-11.5 + pos: 2.5,-18.5 parent: 1 - - uid: 667 + - uid: 585 components: - type: Transform - pos: 0.5,-9.5 + pos: 3.5,-19.5 parent: 1 - - uid: 668 + - uid: 586 components: - type: Transform - pos: 1.5,-9.5 + pos: 3.5,-20.5 parent: 1 - - uid: 669 + - uid: 587 components: - type: Transform - pos: 2.5,-9.5 + pos: 3.5,-21.5 parent: 1 - - uid: 670 + - uid: 588 components: - type: Transform - pos: 3.5,-9.5 + pos: 3.5,-22.5 parent: 1 - - uid: 671 + - uid: 591 components: - type: Transform - pos: -1.5,-9.5 + pos: 1.5,-17.5 parent: 1 - - uid: 672 + - uid: 594 components: - type: Transform - pos: -2.5,-9.5 + pos: 0.5,-17.5 parent: 1 - - uid: 673 + - uid: 595 components: - type: Transform - pos: -3.5,-9.5 + pos: -0.5,-17.5 parent: 1 - - uid: 674 + - uid: 596 components: - type: Transform - pos: -4.5,-9.5 + pos: -1.5,-17.5 parent: 1 - - uid: 675 + - uid: 597 components: - type: Transform - pos: -0.5,-12.5 + pos: -2.5,-17.5 parent: 1 - - uid: 676 + - uid: 598 components: - type: Transform - pos: -0.5,-13.5 + pos: -3.5,-17.5 parent: 1 - - uid: 677 + - uid: 599 components: - type: Transform - pos: 0.5,-13.5 + pos: -4.5,-17.5 parent: 1 - - uid: 678 + - uid: 600 components: - type: Transform - pos: 1.5,-13.5 + pos: -4.5,-18.5 parent: 1 - - uid: 679 + - uid: 601 components: - type: Transform - pos: 2.5,-13.5 + pos: -4.5,-19.5 parent: 1 - - uid: 680 + - uid: 602 components: - type: Transform - pos: 3.5,-13.5 + pos: -4.5,-20.5 parent: 1 - - uid: 681 + - uid: 603 components: - type: Transform - pos: 3.5,-12.5 + pos: -4.5,-21.5 parent: 1 - - uid: 682 + - uid: 604 components: - type: Transform - pos: 3.5,-11.5 + pos: -4.5,-22.5 parent: 1 - - uid: 683 + - uid: 605 components: - type: Transform - pos: 3.5,-10.5 + pos: -3.5,-19.5 parent: 1 - - uid: 684 + - uid: 608 components: - type: Transform - pos: 4.5,-11.5 + pos: -5.5,-22.5 parent: 1 - - uid: 685 + - uid: 645 components: - type: Transform - pos: -1.5,-13.5 + pos: -2.5,-0.5 parent: 1 - - uid: 686 + - uid: 646 components: - type: Transform - pos: -2.5,-13.5 + pos: -3.5,-0.5 parent: 1 - - uid: 687 + - uid: 647 components: - type: Transform - pos: -3.5,-13.5 + pos: -4.5,-0.5 parent: 1 - - uid: 688 + - uid: 648 components: - type: Transform - pos: -4.5,-13.5 + pos: -5.5,-0.5 parent: 1 - - uid: 689 + - uid: 649 components: - type: Transform - pos: -4.5,-12.5 + pos: -5.5,0.5 parent: 1 - - uid: 690 + - uid: 650 components: - type: Transform - pos: -4.5,-11.5 + pos: -5.5,1.5 parent: 1 - - uid: 691 + - uid: 651 components: - type: Transform - pos: -4.5,-10.5 + pos: -5.5,2.5 parent: 1 - - uid: 692 + - uid: 652 components: - type: Transform - pos: -5.5,-11.5 + pos: -6.5,2.5 parent: 1 - - uid: 693 + - uid: 653 components: - type: Transform - pos: -6.5,-1.5 + pos: -5.5,-1.5 parent: 1 - - uid: 694 + - uid: 654 components: - type: Transform - pos: -7.5,-1.5 + pos: -5.5,-2.5 parent: 1 - - uid: 695 + - uid: 655 components: - type: Transform - pos: -8.5,-1.5 + pos: -5.5,-3.5 parent: 1 - - uid: 696 + - uid: 656 components: - type: Transform - pos: 4.5,-1.5 + pos: -5.5,-4.5 parent: 1 - - uid: 697 + - uid: 657 components: - type: Transform - pos: 4.5,-2.5 + pos: -5.5,-5.5 parent: 1 - - uid: 698 + - uid: 658 components: - type: Transform - pos: 4.5,-3.5 + pos: -0.5,-11.5 parent: 1 - - uid: 699 + - uid: 659 components: - type: Transform - pos: 4.5,-4.5 + pos: -0.5,-10.5 parent: 1 - - uid: 700 + - uid: 660 components: - type: Transform - pos: 4.5,-5.5 + pos: -0.5,-9.5 parent: 1 - - uid: 701 + - uid: 661 components: - type: Transform - pos: 5.5,-1.5 + pos: -0.5,-8.5 parent: 1 - - uid: 702 + - uid: 662 components: - type: Transform - pos: 6.5,-1.5 + pos: -0.5,-7.5 parent: 1 - - uid: 703 + - uid: 663 components: - type: Transform - pos: 7.5,-1.5 + pos: -0.5,-6.5 parent: 1 - - uid: 710 + - uid: 664 components: - type: Transform - pos: -3.5,-23.5 + pos: -0.5,-5.5 parent: 1 - - uid: 711 + - uid: 665 components: - type: Transform - pos: 2.5,-23.5 + pos: -0.5,-4.5 parent: 1 - - uid: 712 + - uid: 666 components: - type: Transform - pos: 2.5,-22.5 + pos: 0.5,-11.5 parent: 1 - - uid: 713 + - uid: 667 components: - type: Transform - pos: 2.5,-23.5 + pos: 0.5,-9.5 parent: 1 - - uid: 718 + - uid: 668 components: - type: Transform - pos: -6.5,3.5 + pos: 1.5,-9.5 parent: 1 - - uid: 719 + - uid: 669 components: - type: Transform - pos: -7.5,3.5 + pos: 2.5,-9.5 parent: 1 - - uid: 720 + - uid: 670 components: - type: Transform - pos: 5.5,3.5 + pos: 3.5,-9.5 parent: 1 - - uid: 721 + - uid: 671 components: - type: Transform - pos: 6.5,3.5 + pos: -1.5,-9.5 parent: 1 - - uid: 914 + - uid: 672 components: - type: Transform - pos: 2.5,-19.5 + pos: -2.5,-9.5 parent: 1 - - uid: 937 + - uid: 673 components: - type: Transform - pos: -6.5,-5.5 + pos: -3.5,-9.5 parent: 1 - - uid: 940 + - uid: 674 components: - type: Transform - pos: -6.5,-6.5 + pos: -4.5,-9.5 parent: 1 - - uid: 943 + - uid: 675 components: - type: Transform - pos: 5.5,-5.5 + pos: -0.5,-12.5 parent: 1 - - uid: 944 + - uid: 676 components: - type: Transform - pos: 5.5,-6.5 + pos: -0.5,-13.5 parent: 1 - - uid: 945 + - uid: 677 components: - type: Transform - pos: 3.5,-8.5 + pos: 0.5,-13.5 parent: 1 - - uid: 946 + - uid: 678 components: - type: Transform - pos: 3.5,-7.5 + pos: 1.5,-13.5 parent: 1 - - uid: 947 + - uid: 679 components: - type: Transform - pos: -4.5,-8.5 + pos: 2.5,-13.5 parent: 1 - - uid: 948 + - uid: 680 components: - type: Transform - pos: -4.5,-7.5 + pos: 3.5,-13.5 parent: 1 -- proto: CableApcStack - entities: - - uid: 129 + - uid: 681 components: - type: Transform - pos: 2.5934253,-18.47779 + pos: 3.5,-12.5 parent: 1 - - uid: 258 + - uid: 682 components: - type: Transform - pos: 2.3473477,-4.9529724 + pos: 3.5,-11.5 parent: 1 -- proto: CableHV - entities: - - uid: 429 + - uid: 685 components: - type: Transform - pos: 6.5,-22.5 + pos: -1.5,-13.5 parent: 1 - - uid: 430 + - uid: 686 components: - type: Transform - pos: 5.5,-22.5 + pos: -2.5,-13.5 parent: 1 - - uid: 431 + - uid: 687 components: - type: Transform - pos: 4.5,-22.5 + pos: -3.5,-13.5 parent: 1 - - uid: 432 + - uid: 688 components: - type: Transform - pos: 3.5,-22.5 + pos: -4.5,-13.5 parent: 1 - - uid: 433 + - uid: 693 components: - type: Transform - pos: 3.5,-21.5 + pos: -6.5,-1.5 parent: 1 - - uid: 434 + - uid: 694 components: - type: Transform - pos: 3.5,-20.5 + pos: -7.5,-1.5 parent: 1 - - uid: 438 + - uid: 695 components: - type: Transform - pos: 2.5,-20.5 + pos: -8.5,-1.5 parent: 1 - - uid: 439 + - uid: 696 components: - type: Transform - pos: 2.5,-19.5 + pos: 4.5,-1.5 parent: 1 - - uid: 440 + - uid: 697 components: - type: Transform - pos: 5.5,-21.5 + pos: 4.5,-2.5 parent: 1 - - uid: 441 + - uid: 698 components: - type: Transform - pos: 5.5,-20.5 + pos: 4.5,-3.5 parent: 1 - - uid: 442 + - uid: 699 components: - type: Transform - pos: 5.5,-19.5 + pos: 4.5,-4.5 parent: 1 - - uid: 443 + - uid: 700 components: - type: Transform - pos: 5.5,-18.5 + pos: 4.5,-5.5 parent: 1 - - uid: 446 + - uid: 701 components: - type: Transform - pos: 4.5,-18.5 + pos: 5.5,-1.5 parent: 1 - - uid: 447 + - uid: 702 components: - type: Transform - pos: 4.5,-17.5 + pos: 6.5,-1.5 parent: 1 - - uid: 448 + - uid: 703 components: - type: Transform - pos: 4.5,-16.5 + pos: 7.5,-1.5 parent: 1 - - uid: 449 + - uid: 718 components: - type: Transform - pos: 4.5,-15.5 + pos: -6.5,3.5 parent: 1 - - uid: 450 + - uid: 720 components: - type: Transform - pos: 4.5,-14.5 + pos: 5.5,3.5 parent: 1 - - uid: 451 + - uid: 937 components: - type: Transform - pos: 4.5,-13.5 + pos: -6.5,-5.5 parent: 1 - - uid: 452 + - uid: 940 components: - type: Transform - pos: 4.5,-12.5 + pos: -6.5,-6.5 parent: 1 - - uid: 453 + - uid: 943 components: - type: Transform - pos: 4.5,-11.5 + pos: 5.5,-5.5 parent: 1 - - uid: 454 + - uid: 944 components: - type: Transform - pos: 4.5,-10.5 + pos: 5.5,-6.5 parent: 1 - - uid: 455 + - uid: 945 components: - type: Transform - pos: 4.5,-9.5 + pos: 3.5,-8.5 parent: 1 - - uid: 456 + - uid: 946 components: - type: Transform - pos: 4.5,-8.5 + pos: 3.5,-7.5 parent: 1 - - uid: 457 + - uid: 947 components: - type: Transform - pos: 4.5,-7.5 + pos: -4.5,-8.5 parent: 1 - - uid: 458 +- proto: CableApcStack + entities: + - uid: 129 components: - type: Transform - pos: 5.5,-7.5 + pos: 2.5934253,-18.47779 parent: 1 - - uid: 459 + - uid: 258 components: - type: Transform - pos: 6.5,-7.5 + pos: 2.3473477,-4.9529724 parent: 1 - - uid: 460 +- proto: CableHV + entities: + - uid: 241 components: - type: Transform - pos: 6.5,-6.5 + pos: 2.5,-20.5 parent: 1 - - uid: 461 + - uid: 282 components: - type: Transform - pos: 6.5,-5.5 + pos: -0.5,-4.5 parent: 1 - - uid: 462 + - uid: 287 components: - type: Transform - pos: 6.5,-4.5 + pos: 3.5,-17.5 parent: 1 - - uid: 463 + - uid: 386 components: - type: Transform - pos: 6.5,-3.5 + pos: 4.5,-19.5 parent: 1 - - uid: 464 + - uid: 387 components: - type: Transform - pos: 6.5,-2.5 + pos: 4.5,-18.5 parent: 1 - - uid: 465 + - uid: 388 components: - type: Transform - pos: 6.5,-1.5 + pos: 4.5,-17.5 parent: 1 - - uid: 466 + - uid: 389 components: - type: Transform - pos: 6.5,-0.5 + pos: 2.5,-17.5 parent: 1 - - uid: 467 + - uid: 390 components: - type: Transform - pos: 6.5,0.5 + pos: 1.5,-17.5 parent: 1 - - uid: 468 + - uid: 391 components: - type: Transform - pos: 6.5,1.5 + pos: 0.5,-17.5 parent: 1 - - uid: 469 + - uid: 392 components: - type: Transform - pos: 6.5,2.5 + pos: -0.5,-17.5 parent: 1 - - uid: 470 + - uid: 393 components: - type: Transform - pos: 6.5,3.5 + pos: -0.5,-16.5 parent: 1 - - uid: 471 + - uid: 394 components: - type: Transform - pos: 6.5,4.5 + pos: -0.5,-15.5 parent: 1 - - uid: 472 + - uid: 395 components: - type: Transform - pos: 5.5,4.5 + pos: -0.5,-14.5 parent: 1 - - uid: 473 + - uid: 396 components: - type: Transform - pos: 4.5,4.5 + pos: -0.5,-13.5 parent: 1 - - uid: 474 + - uid: 397 components: - type: Transform - pos: 4.5,5.5 + pos: -0.5,-12.5 parent: 1 - - uid: 475 + - uid: 398 components: - type: Transform - pos: 3.5,5.5 + pos: -0.5,-11.5 parent: 1 - - uid: 476 + - uid: 399 components: - type: Transform - pos: 3.5,6.5 + pos: -0.5,-10.5 parent: 1 - - uid: 477 + - uid: 400 components: - type: Transform - pos: 3.5,7.5 + pos: -0.5,-9.5 parent: 1 - - uid: 478 + - uid: 401 components: - type: Transform - pos: 2.5,7.5 + pos: -0.5,-8.5 parent: 1 - - uid: 479 + - uid: 402 components: - type: Transform - pos: 2.5,8.5 + pos: -0.5,-7.5 parent: 1 - - uid: 480 + - uid: 404 components: - type: Transform - pos: 1.5,8.5 + pos: -0.5,-6.5 parent: 1 - - uid: 481 + - uid: 405 components: - type: Transform - pos: 0.5,8.5 + pos: -0.5,-5.5 parent: 1 - - uid: 482 + - uid: 406 components: - type: Transform - pos: -0.5,8.5 + pos: -0.5,-3.5 parent: 1 - - uid: 483 + - uid: 407 components: - type: Transform - pos: -1.5,8.5 + pos: -0.5,-2.5 parent: 1 - - uid: 484 + - uid: 408 components: - type: Transform - pos: -2.5,8.5 + pos: -0.5,-1.5 parent: 1 - - uid: 485 + - uid: 409 components: - type: Transform - pos: -3.5,8.5 + pos: -0.5,-0.5 parent: 1 - - uid: 486 + - uid: 410 components: - type: Transform - pos: -3.5,7.5 + pos: -0.5,0.5 parent: 1 - - uid: 487 + - uid: 411 components: - type: Transform - pos: -4.5,7.5 + pos: -0.5,1.5 parent: 1 - - uid: 488 + - uid: 429 components: - type: Transform - pos: -4.5,6.5 + pos: -0.5,2.5 parent: 1 - - uid: 489 + - uid: 431 components: - type: Transform - pos: -4.5,5.5 + pos: 4.5,-20.5 parent: 1 - - uid: 490 + - uid: 432 components: - type: Transform - pos: -5.5,5.5 + pos: 3.5,-22.5 parent: 1 - - uid: 491 + - uid: 433 components: - type: Transform - pos: -5.5,4.5 + pos: 3.5,-21.5 parent: 1 - - uid: 492 + - uid: 434 components: - type: Transform - pos: -6.5,4.5 + pos: 3.5,-20.5 parent: 1 - - uid: 493 + - uid: 439 components: - type: Transform - pos: -7.5,4.5 + pos: 2.5,-19.5 parent: 1 - - uid: 494 + - uid: 995 components: - type: Transform - pos: -7.5,3.5 + pos: -0.5,3.5 parent: 1 - - uid: 495 + - uid: 996 components: - type: Transform - pos: -7.5,2.5 + pos: -0.5,4.5 parent: 1 - - uid: 496 + - uid: 997 components: - type: Transform - pos: -7.5,1.5 + pos: -0.5,5.5 parent: 1 - - uid: 497 + - uid: 998 components: - type: Transform - pos: -7.5,0.5 + pos: 0.5,5.5 parent: 1 - - uid: 498 + - uid: 999 components: - type: Transform - pos: -7.5,-0.5 + pos: 1.5,5.5 parent: 1 - - uid: 499 + - uid: 1000 components: - type: Transform - pos: -7.5,-1.5 + pos: 2.5,5.5 parent: 1 - - uid: 500 + - uid: 1001 components: - type: Transform - pos: -7.5,-2.5 + pos: 2.5,6.5 parent: 1 - - uid: 501 + - uid: 1020 components: - type: Transform - pos: -7.5,-3.5 + pos: 3.5,-19.5 parent: 1 - - uid: 502 +- proto: CableHVStack + entities: + - uid: 798 components: - type: Transform - pos: -7.5,-4.5 + pos: 2.4147115,-4.6982293 parent: 1 - - uid: 503 +- proto: CableMV + entities: + - uid: 521 components: - type: Transform - pos: -7.5,-5.5 + pos: 2.5,-19.5 parent: 1 - - uid: 504 - components: - - type: Transform - pos: -7.5,-6.5 - parent: 1 - - uid: 505 - components: - - type: Transform - pos: -7.5,-7.5 - parent: 1 - - uid: 506 - components: - - type: Transform - pos: -6.5,-7.5 - parent: 1 - - uid: 507 - components: - - type: Transform - pos: -5.5,-7.5 - parent: 1 - - uid: 508 - components: - - type: Transform - pos: -5.5,-8.5 - parent: 1 - - uid: 509 - components: - - type: Transform - pos: -5.5,-9.5 - parent: 1 - - uid: 510 - components: - - type: Transform - pos: -5.5,-10.5 - parent: 1 - - uid: 511 - components: - - type: Transform - pos: -5.5,-11.5 - parent: 1 - - uid: 512 - components: - - type: Transform - pos: -5.5,-12.5 - parent: 1 - - uid: 513 - components: - - type: Transform - pos: -5.5,-13.5 - parent: 1 - - uid: 514 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 1 - - uid: 515 - components: - - type: Transform - pos: -5.5,-15.5 - parent: 1 - - uid: 516 - components: - - type: Transform - pos: -5.5,-16.5 - parent: 1 -- proto: CableHVStack - entities: - - uid: 798 - components: - - type: Transform - pos: 2.4147115,-4.6982293 - parent: 1 -- proto: CableMV - entities: - - uid: 521 - components: - - type: Transform - pos: 2.5,-19.5 - parent: 1 - - uid: 522 + - uid: 522 components: - type: Transform pos: 2.5,-18.5 @@ -2250,11 +2192,6 @@ entities: - type: Transform pos: 1.5,-18.5 parent: 1 - - uid: 524 - components: - - type: Transform - pos: 2.5,-17.5 - parent: 1 - uid: 525 components: - type: Transform @@ -2434,6 +2371,18 @@ entities: parent: 1 - proto: Catwalk entities: + - uid: 438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-21.5 + parent: 1 + - uid: 440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-21.5 + parent: 1 - uid: 839 components: - type: Transform @@ -2464,21 +2413,6 @@ entities: - type: Transform pos: 3.5,-21.5 parent: 1 - - uid: 845 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 1 - - uid: 846 - components: - - type: Transform - pos: -4.5,-20.5 - parent: 1 - - uid: 847 - components: - - type: Transform - pos: -3.5,-20.5 - parent: 1 - uid: 848 components: - type: Transform @@ -2569,8 +2503,6 @@ entities: entities: - uid: 797 components: - - type: MetaData - flags: InContainer - type: Transform parent: 234 - type: Physics @@ -2594,8 +2526,6 @@ entities: entities: - uid: 861 components: - - type: MetaData - flags: InContainer - type: Transform parent: 641 - type: GroupExamine @@ -2636,38 +2566,63 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,2.5 parent: 1 -- proto: ComputerRadar +- proto: ComputerTabletopCrewMonitoring entities: - - uid: 340 + - uid: 448 components: - type: Transform - pos: 1.5,7.5 + rot: 1.5707963267948966 rad + pos: -3.5,6.5 parent: 1 - - uid: 341 +- proto: ComputerTabletopPowerMonitoring + entities: + - uid: 776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 +- proto: ComputerTabletopRadar + entities: + - uid: 443 components: - type: Transform pos: -2.5,7.5 parent: 1 -- proto: ComputerSalvageExpedition + - uid: 447 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 +- proto: ComputerTabletopSalvageExpedition entities: - - uid: 128 + - uid: 471 components: - type: Transform - pos: -1.5,7.5 + rot: 1.5707963267948966 rad + pos: -1.5,6.5 parent: 1 -- proto: ComputerShuttle +- proto: ComputerTabletopShuttle entities: - - uid: 70 + - uid: 454 components: - type: Transform pos: -0.5,7.5 parent: 1 -- proto: ComputerStationRecords +- proto: ComputerTabletopStationRecords entities: - - uid: 124 + - uid: 470 components: - type: Transform - pos: 0.5,7.5 + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 +- proto: ComputerTelevision + entities: + - uid: 1006 + components: + - type: Transform + pos: -2.5,-8.5 parent: 1 - proto: CrayonBox entities: @@ -2706,135 +2661,300 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-6.5 parent: 1 -- proto: Dresser +- proto: DisposalBend entities: - - uid: 262 + - uid: 13 components: - type: Transform - pos: 0.5,1.5 + rot: 3.141592653589793 rad + pos: 4.5,-5.5 parent: 1 -- proto: DrinkGlass - entities: - - uid: 831 + - uid: 20 components: - type: Transform - pos: -2.7066321,-8.285901 + pos: 5.5,-5.5 parent: 1 - - uid: 832 + - uid: 370 components: - type: Transform - pos: -2.4566321,-8.508124 + rot: -1.5707963267948966 rad + pos: -0.5,-14.5 parent: 1 - - uid: 833 + - uid: 371 components: - type: Transform - pos: -2.3177416,-8.313679 + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 parent: 1 -- proto: DrinkShaker - entities: - - uid: 834 + - uid: 372 components: - type: Transform - pos: -2.6788535,-8.563679 + pos: 4.5,-2.5 parent: 1 -- proto: DrinkShotGlass +- proto: DisposalPipe entities: - - uid: 835 + - uid: 70 components: - type: Transform - pos: -2.6788535,-10.480346 + pos: 4.5,-4.5 parent: 1 - - uid: 836 + - uid: 124 components: - type: Transform - pos: -2.4566321,-10.341457 + pos: 4.5,-3.5 parent: 1 -- proto: Dropper - entities: - - uid: 423 + - uid: 128 components: - type: Transform - pos: -5.081788,-5.30526 + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 parent: 1 - - uid: 763 + - uid: 177 components: - type: Transform - pos: -4.941163,-5.445885 + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 parent: 1 -- proto: EmergencyLight - entities: - - uid: 884 + - uid: 340 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-5.5 + pos: -3.5,-14.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 885 + - uid: 341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-10.5 + rot: 1.5707963267948966 rad + pos: -2.5,-14.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 886 + - uid: 369 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-17.5 + pos: -1.5,-14.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 887 + - uid: 373 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-17.5 + pos: 1.5,-2.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 889 + - uid: 374 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-15.5 + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 890 + - uid: 375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-3.5 + rot: 3.141592653589793 rad + pos: -0.5,-3.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 891 + - uid: 376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-3.5 + rot: 3.141592653589793 rad + pos: -0.5,-4.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 892 + - uid: 377 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,5.5 + pos: -0.5,-5.5 parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight + - uid: 378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 1 + - uid: 379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 1 + - uid: 380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 1 + - uid: 381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 1 + - uid: 382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-10.5 + parent: 1 + - uid: 383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-11.5 + parent: 1 + - uid: 384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 1 + - uid: 385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-13.5 + parent: 1 +- proto: DisposalTrunk + entities: + - uid: 323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 1 +- proto: DisposalUnit + entities: + - uid: 324 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 1 +- proto: Dresser + entities: + - uid: 262 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 +- proto: DrinkGlass + entities: + - uid: 831 + components: + - type: Transform + pos: -2.2334526,-10.03784 + parent: 1 + - uid: 832 + components: + - type: Transform + pos: -2.2490776,-9.553465 + parent: 1 + - uid: 833 + components: + - type: Transform + pos: -2.4834526,-9.53784 + parent: 1 +- proto: DrinkShaker + entities: + - uid: 834 + components: + - type: Transform + pos: -2.7022026,-9.647215 + parent: 1 +- proto: DrinkShotGlass + entities: + - uid: 835 + components: + - type: Transform + pos: -2.6788535,-10.480346 + parent: 1 + - uid: 836 + components: + - type: Transform + pos: -2.4566321,-10.341457 + parent: 1 +- proto: Dropper + entities: + - uid: 423 + components: + - type: Transform + pos: -5.081788,-5.30526 + parent: 1 + - uid: 763 + components: + - type: Transform + pos: -4.941163,-5.445885 + parent: 1 +- proto: EmergencyLight + entities: + - uid: 884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-17.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-15.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight - proto: EmergencyRollerBed entities: - uid: 127 @@ -2844,18 +2964,34 @@ entities: parent: 1 - proto: FaxMachineShip entities: - - uid: 242 + - uid: 473 components: - type: Transform - pos: 2.5,6.5 + pos: 0.5,7.5 parent: 1 - proto: Firelock entities: + - uid: 311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 - uid: 418 components: - type: Transform pos: -2.5,-0.5 parent: 1 + - uid: 449 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 450 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 - uid: 898 components: - type: Transform @@ -2871,37 +3007,91 @@ entities: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 901 + - uid: 903 components: - type: Transform - pos: 1.5,-1.5 + pos: -0.5,4.5 parent: 1 - - type: Door - secondsUntilStateChange: -522.38904 - state: Closing - - uid: 902 +- proto: FirelockGlass + entities: + - uid: 312 components: - type: Transform - pos: 1.5,-2.5 + rot: -1.5707963267948966 rad + pos: -6.5,-2.5 parent: 1 - - type: Door - secondsUntilStateChange: -535.50543 - state: Closing - - uid: 903 + - uid: 313 components: - type: Transform - pos: -0.5,4.5 + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 parent: 1 - - uid: 904 + - uid: 314 components: - type: Transform - pos: -0.5,-7.5 + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 parent: 1 - - uid: 905 + - uid: 315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-17.5 + parent: 1 + - uid: 320 components: - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,-15.5 parent: 1 + - uid: 321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 1 + - uid: 322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-13.5 + parent: 1 + - uid: 451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + - uid: 452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 1 - proto: FloorDrain entities: - uid: 237 @@ -2919,6 +3109,14 @@ entities: parent: 1 - type: Fixtures fixtures: {} + - uid: 310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + - type: Fixtures + fixtures: {} - proto: FoodBoxDonkpocketHonk entities: - uid: 633 @@ -2938,688 +3136,935 @@ entities: - uid: 923 components: - type: Transform - pos: -2.630557,-9.925222 + pos: -2.630557,-9.925222 + parent: 1 +- proto: GasAnalyzer + entities: + - uid: 761 + components: + - type: Transform + pos: -3.358872,-18.372757 + parent: 1 +- proto: GasMixer + entities: + - uid: 751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-21.5 + parent: 1 + - type: GasMixer + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPassiveVent + entities: + - uid: 556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-19.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 296 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 329 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-23.5 + parent: 1 +- proto: GasPipeFourway + entities: + - uid: 555 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 560 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 616 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 712 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 725 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 766 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 268 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 270 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 271 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 273 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-4.5 parent: 1 -- proto: GasAnalyzer - entities: - - uid: 761 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 278 components: - type: Transform - pos: -3.358872,-18.372757 + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 parent: 1 -- proto: GasMixer - entities: - - uid: 751 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-21.5 + rot: 3.141592653589793 rad + pos: 3.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: GasPassiveVent - entities: - - uid: 407 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 280 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-19.5 + pos: 3.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPipeBend - entities: - - uid: 268 + color: '#0055CCFF' + - uid: 283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-17.5 + pos: -1.5,4.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 278 + - uid: 288 components: - type: Transform - pos: 4.5,-17.5 + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 280 + color: '#990000FF' + - uid: 290 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-19.5 + pos: 2.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 292 + - uid: 291 components: - type: Transform - pos: 0.5,5.5 + rot: 1.5707963267948966 rad + pos: 0.5,-16.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 329 + - uid: 292 components: - type: Transform - pos: 3.5,2.5 + rot: 1.5707963267948966 rad + pos: -0.5,-16.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 330 + - uid: 293 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,3.5 + pos: -2.5,-16.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 370 + color: '#0055CCFF' + - uid: 295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 + rot: 1.5707963267948966 rad + pos: 1.5,-16.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 385 + color: '#0055CCFF' + - uid: 297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,6.5 + pos: 2.5,-17.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 398 + color: '#0055CCFF' + - uid: 298 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-14.5 + pos: -4.5,-19.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 399 + color: '#0055CCFF' + - uid: 300 components: - type: Transform - pos: -0.5,-14.5 + pos: -4.5,-17.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 410 + color: '#0055CCFF' + - uid: 303 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-2.5 + pos: -1.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 927 + color: '#0055CCFF' + - uid: 304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-23.5 + rot: 3.141592653589793 rad + pos: -1.5,-6.5 parent: 1 -- proto: GasPipeFourway - entities: - - uid: 287 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 305 components: - type: Transform - pos: 0.5,-13.5 + rot: 3.141592653589793 rad + pos: -1.5,-7.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 288 + - uid: 306 components: - type: Transform - pos: 0.5,-9.5 + rot: -1.5707963267948966 rad + pos: -6.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 290 + color: '#990000FF' + - uid: 307 components: - type: Transform - pos: 0.5,-1.5 + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 376 + color: '#990000FF' + - uid: 333 components: - type: Transform - pos: -1.5,-2.5 + pos: 4.5,0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' -- proto: GasPipeStraight - entities: - - uid: 177 + - uid: 455 components: - type: Transform - pos: -0.5,-18.5 + rot: -1.5707963267948966 rad + pos: -4.5,-17.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 265 + - uid: 456 components: - type: Transform - pos: -5.5,-20.5 + rot: -1.5707963267948966 rad + pos: -2.5,-17.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 267 + color: '#990000FF' + - uid: 457 components: - type: Transform - pos: -5.5,-18.5 + rot: 3.141592653589793 rad + pos: -3.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 269 + color: '#990000FF' + - uid: 458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-17.5 + rot: 3.141592653589793 rad + pos: -1.5,-13.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 270 + - uid: 460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-17.5 + rot: 3.141592653589793 rad + pos: -0.5,-12.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 271 + color: '#990000FF' + - uid: 461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-17.5 + rot: 3.141592653589793 rad + pos: -0.5,-14.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 273 + color: '#990000FF' + - uid: 462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-17.5 + pos: -1.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 274 + - uid: 463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-17.5 + rot: 3.141592653589793 rad + pos: -0.5,-8.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 275 + color: '#990000FF' + - uid: 465 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-17.5 + pos: 1.5,-8.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 276 + - uid: 466 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-17.5 + pos: 2.5,-14.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 277 + - uid: 467 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-17.5 + pos: 0.5,-17.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 279 + color: '#990000FF' + - uid: 477 components: - type: Transform - pos: 4.5,-18.5 + pos: -5.5,-18.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 285 + color: '#990000FF' + - uid: 478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 479 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-15.5 + pos: -0.5,-15.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 286 + color: '#990000FF' + - uid: 480 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-14.5 + pos: -0.5,-11.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 293 + color: '#990000FF' + - uid: 481 components: - type: Transform - pos: 0.5,-12.5 + rot: 1.5707963267948966 rad + pos: 0.5,-13.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 294 + color: '#990000FF' + - uid: 482 components: - type: Transform - pos: 0.5,-11.5 + rot: 1.5707963267948966 rad + pos: 0.5,-9.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 295 + color: '#990000FF' + - uid: 483 components: - type: Transform - pos: 0.5,-10.5 + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 296 + color: '#990000FF' + - uid: 485 components: - type: Transform - pos: 0.5,-8.5 + rot: -1.5707963267948966 rad + pos: -1.5,-19.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 297 + color: '#990000FF' + - uid: 487 components: - type: Transform - pos: 0.5,-7.5 + rot: 3.141592653589793 rad + pos: -0.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 298 + color: '#990000FF' + - uid: 488 components: - type: Transform - pos: 0.5,-6.5 + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 299 + color: '#990000FF' + - uid: 489 components: - type: Transform - pos: 0.5,-5.5 + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 300 + color: '#990000FF' + - uid: 490 components: - type: Transform - pos: 0.5,-4.5 + rot: 3.141592653589793 rad + pos: -1.5,-9.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 301 + - uid: 491 components: - type: Transform - pos: 0.5,-3.5 + rot: 1.5707963267948966 rad + pos: 2.5,-8.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 302 + - uid: 492 components: - type: Transform - pos: 0.5,-2.5 + rot: 1.5707963267948966 rad + pos: 0.5,-14.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 303 + - uid: 495 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-1.5 + pos: -1.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 304 + - uid: 498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-1.5 + rot: 3.141592653589793 rad + pos: -0.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 305 + color: '#990000FF' + - uid: 499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-1.5 + rot: 3.141592653589793 rad + pos: -0.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 306 + color: '#990000FF' + - uid: 501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-1.5 + rot: 3.141592653589793 rad + pos: -0.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 307 + color: '#990000FF' + - uid: 502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-1.5 + rot: 3.141592653589793 rad + pos: -0.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 308 + color: '#990000FF' + - uid: 503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 + rot: 3.141592653589793 rad + pos: -0.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 309 + color: '#990000FF' + - uid: 504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 + rot: 3.141592653589793 rad + pos: -1.5,-11.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 320 + - uid: 505 components: - type: Transform - pos: 0.5,-0.5 + rot: 3.141592653589793 rad + pos: -1.5,-10.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 321 + - uid: 506 components: - type: Transform - pos: 0.5,1.5 + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 322 + - uid: 507 components: - type: Transform - pos: 0.5,0.5 + rot: 1.5707963267948966 rad + pos: 0.5,-8.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 323 + - uid: 508 components: - type: Transform - pos: 0.5,3.5 + rot: 1.5707963267948966 rad + pos: 1.5,-14.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 324 + - uid: 509 components: - type: Transform - pos: 0.5,4.5 + rot: 1.5707963267948966 rad + pos: -0.5,-14.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 333 + - uid: 510 components: - type: Transform - pos: 4.5,0.5 + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 369 + - uid: 513 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-1.5 + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 372 + - uid: 515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-2.5 + rot: 3.141592653589793 rad + pos: 4.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 373 + - uid: 516 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-2.5 + pos: 0.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 374 + - uid: 557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-2.5 + rot: -1.5707963267948966 rad + pos: -2.5,-19.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 375 + - uid: 558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-2.5 + rot: -1.5707963267948966 rad + pos: -3.5,-19.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 377 + - uid: 559 components: - type: Transform - pos: -1.5,-1.5 + rot: 1.5707963267948966 rad + pos: 2.5,-13.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 378 + - uid: 584 components: - type: Transform - pos: -1.5,-0.5 + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 379 + - uid: 589 components: - type: Transform - pos: -1.5,0.5 + rot: 1.5707963267948966 rad + pos: 3.5,-17.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 380 + - uid: 590 components: - type: Transform - pos: -1.5,1.5 + rot: 1.5707963267948966 rad + pos: 1.5,-17.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 381 + - uid: 592 components: - type: Transform - pos: -1.5,2.5 + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 382 + - uid: 593 components: - type: Transform - pos: -1.5,3.5 + pos: -1.5,-15.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 383 + color: '#0055CCFF' + - uid: 606 components: - type: Transform - pos: -1.5,4.5 + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 384 + color: '#0055CCFF' + - uid: 610 components: - type: Transform - pos: -1.5,5.5 + rot: 3.141592653589793 rad + pos: -0.5,-16.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 388 + - uid: 611 components: - type: Transform - pos: -1.5,-3.5 + rot: 3.141592653589793 rad + pos: -0.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 389 + - uid: 612 components: - type: Transform - pos: -1.5,-4.5 + rot: 3.141592653589793 rad + pos: -0.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 390 + - uid: 614 components: - type: Transform - pos: -1.5,-5.5 + rot: 3.141592653589793 rad + pos: -1.5,-12.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 391 + color: '#0055CCFF' + - uid: 615 components: - type: Transform - pos: -1.5,-6.5 + rot: 1.5707963267948966 rad + pos: 1.5,-13.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 392 + - uid: 644 components: - type: Transform - pos: -1.5,-7.5 + pos: -7.5,-22.5 parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 393 + - uid: 684 components: - type: Transform - pos: -1.5,-8.5 + rot: -1.5707963267948966 rad + pos: -1.5,-17.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 394 + - uid: 690 components: - type: Transform - pos: -1.5,-9.5 + rot: 3.141592653589793 rad + pos: -0.5,-4.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 397 + - uid: 692 components: - type: Transform - pos: -1.5,-13.5 + rot: 3.141592653589793 rad + pos: -0.5,-7.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 400 + - uid: 710 components: - type: Transform - pos: -0.5,-15.5 + rot: 3.141592653589793 rad + pos: -0.5,-10.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 401 + - uid: 713 components: - type: Transform - pos: -0.5,-16.5 + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 402 + color: '#0055CCFF' + - uid: 719 components: - type: Transform - pos: -0.5,-17.5 + rot: 3.141592653589793 rad + pos: -0.5,0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 404 + - uid: 721 components: - type: Transform - pos: -1.5,-11.5 + rot: 3.141592653589793 rad + pos: 2.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 408 + - uid: 726 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-2.5 + pos: 2.5,-9.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 409 + - uid: 759 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-2.5 + pos: -1.5,-13.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 644 + - uid: 825 components: - type: Transform - pos: -7.5,-22.5 + pos: -1.5,5.5 parent: 1 -- proto: GasPipeTJunction - entities: - - uid: 266 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-19.5 + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 272 + - uid: 862 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-17.5 + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 284 + - uid: 989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-16.5 + rot: 1.5707963267948966 rad + pos: -3.5,-16.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 289 + - uid: 994 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-5.5 + pos: -0.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 291 +- proto: GasPipeTJunction + entities: + - uid: 272 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,2.5 + rot: 1.5707963267948966 rad + pos: -1.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 310 + - uid: 281 components: - type: Transform - rot: 3.141592653589793 rad + rot: -1.5707963267948966 rad pos: 3.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 327 components: - type: Transform @@ -3652,41 +4097,90 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 371 + - uid: 453 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-2.5 + pos: -0.5,-17.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 395 + - uid: 493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 494 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-10.5 + pos: -1.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 396 + - uid: 511 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 512 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 524 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-12.5 + pos: -0.5,-6.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 786 + - uid: 609 components: - type: Transform - pos: -6.5,-21.5 + rot: 3.141592653589793 rad + pos: -5.5,-19.5 parent: 1 - - uid: 928 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 643 components: - type: Transform - rot: -1.5707963267948966 rad pos: -5.5,-21.5 parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 786 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPort entities: - uid: 145 @@ -3804,174 +4298,336 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' -- proto: GasVentPump - entities: - - uid: 281 + - uid: 474 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: -4.5,-19.5 parent: 1 - type: AtmosDevice joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-20.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 282 +- proto: GasVentPump + entities: + - uid: 239 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-19.5 + pos: -2.5,-8.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 1004 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 283 + - uid: 242 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-16.5 + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 1004 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 311 + - uid: 266 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-5.5 + rot: 3.141592653589793 rad + pos: 3.5,-5.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 1005 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 312 + - uid: 276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-9.5 + pos: -3.5,0.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 1005 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 313 + - uid: 284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1004 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 285 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-13.5 + pos: -2.5,-14.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 1004 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 314 + - uid: 286 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-13.5 + pos: 3.5,-8.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 1004 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 315 + - uid: 301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-18.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1003 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 302 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-9.5 + pos: -3.5,-18.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 1003 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 316 + - uid: 790 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-1.5 + pos: 0.5,1.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 1005 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 317 + - uid: 957 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1005 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1005 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 309 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-1.5 + pos: -7.5,-2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1005 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1005 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1004 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-19.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1003 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-13.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 1004 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 318 + color: '#990000FF' + - uid: 486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,2.5 + rot: -1.5707963267948966 rad + pos: 0.5,-6.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 1004 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 319 + color: '#990000FF' + - uid: 497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,5.5 + rot: -1.5707963267948966 rad + pos: 0.5,3.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 1005 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasVentScrubber - entities: - - uid: 386 + color: '#990000FF' + - uid: 613 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,6.5 + pos: 0.5,6.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 1005 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 387 + - uid: 689 components: - type: Transform - pos: 3.5,-1.5 + rot: -1.5707963267948966 rad + pos: 4.5,-17.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 1003 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 405 + - uid: 691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-10.5 + rot: 1.5707963267948966 rad + pos: -2.5,-13.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 1004 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 406 + - uid: 711 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-12.5 + pos: 3.5,-9.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 1004 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 411 + - uid: 723 components: - type: Transform - pos: -4.5,-1.5 + rot: 3.141592653589793 rad + pos: 2.5,-4.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 1005 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor @@ -3986,6 +4642,8 @@ entities: parent: 1 - type: AtmosDevice joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 750 components: - type: Transform @@ -3994,6 +4652,8 @@ entities: parent: 1 - type: AtmosDevice joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GravityGeneratorMini entities: - uid: 722 @@ -4173,8 +4833,6 @@ entities: entities: - uid: 805 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-8.5 parent: 1 @@ -4188,6 +4846,7 @@ entities: - uid: 821 components: - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,2.5 parent: 1 - uid: 822 @@ -4222,10 +4881,10 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-12.5 parent: 1 - - uid: 726 + - uid: 875 components: - type: Transform - pos: 2.5,7.5 + pos: 3.5,5.5 parent: 1 - proto: KitchenMicrowave entities: @@ -4466,8 +5125,6 @@ entities: entities: - uid: 895 components: - - type: MetaData - flags: InContainer - type: Transform parent: 234 - type: Physics @@ -4508,22 +5165,36 @@ entities: - type: Transform pos: 3.5,-6.5 parent: 1 -- proto: PaperCaptainsThoughts +- proto: NitrogenCanister entities: - - uid: 759 + - uid: 949 components: - type: Transform - pos: -3.4624982,6.646891 + anchored: True + pos: -8.5,-23.5 parent: 1 - - uid: 788 + - type: Physics + bodyType: Static + - type: AtmosDevice + joinedGrid: 1 +- proto: OxygenCanister + entities: + - uid: 789 components: - type: Transform - pos: -3.6968732,6.740641 + anchored: True + pos: -8.5,-21.5 parent: 1 - - uid: 792 + - type: Physics + bodyType: Static + - type: AtmosDevice + joinedGrid: 1 +- proto: PaperBin10 + entities: + - uid: 472 components: - type: Transform - pos: -3.6499982,6.553141 + pos: -1.5,7.5 parent: 1 - proto: PaperOffice entities: @@ -4553,8 +5224,25 @@ entities: - type: Transform pos: 5.5,3.5 parent: 1 +- proto: PottedPlantRandom + entities: + - uid: 1007 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 1008 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 - proto: PowerCellRecharger entities: + - uid: 771 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 - uid: 826 components: - type: Transform @@ -4564,23 +5252,17 @@ entities: entities: - uid: 639 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-11.5 parent: 1 - uid: 768 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,-9.5 parent: 1 - uid: 857 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-21.5 @@ -4589,8 +5271,6 @@ entities: powerLoad: 0 - uid: 858 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-17.5 parent: 1 @@ -4598,8 +5278,6 @@ entities: powerLoad: 0 - uid: 859 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-17.5 parent: 1 @@ -4607,8 +5285,6 @@ entities: powerLoad: 0 - uid: 860 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-21.5 @@ -4617,8 +5293,6 @@ entities: powerLoad: 0 - uid: 863 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-11.5 @@ -4627,8 +5301,6 @@ entities: powerLoad: 0 - uid: 864 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-11.5 @@ -4637,8 +5309,6 @@ entities: powerLoad: 0 - uid: 865 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-5.5 @@ -4647,8 +5317,6 @@ entities: powerLoad: 0 - uid: 866 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -3.5,1.5 @@ -4657,8 +5325,6 @@ entities: powerLoad: 0 - uid: 867 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-4.5 @@ -4667,8 +5333,6 @@ entities: powerLoad: 0 - uid: 868 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-4.5 @@ -4677,8 +5341,6 @@ entities: powerLoad: 0 - uid: 869 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 2.5,1.5 @@ -4687,8 +5349,6 @@ entities: powerLoad: 0 - uid: 870 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-0.5 parent: 1 @@ -4696,93 +5356,13 @@ entities: powerLoad: 0 - uid: 871 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,-0.5 parent: 1 - type: ApcPowerReceiver powerLoad: 0 - - uid: 872 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,1.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 873 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,1.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 874 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,-4.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 875 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,-4.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 876 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,-8.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 877 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,-8.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 879 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-20.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 880 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-20.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 881 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 0.5,2.5 @@ -4791,8 +5371,6 @@ entities: powerLoad: 0 - uid: 882 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 1.5,5.5 @@ -4801,8 +5379,6 @@ entities: powerLoad: 0 - uid: 883 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,5.5 @@ -4811,8 +5387,6 @@ entities: powerLoad: 0 - uid: 920 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-0.5 parent: 1 @@ -4820,8 +5394,6 @@ entities: powerLoad: 0 - uid: 921 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-0.5 parent: 1 @@ -4877,6 +5449,13 @@ entities: - type: Transform pos: -3.5,-18.5 parent: 1 +- proto: RandomPosterAny + entities: + - uid: 1009 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 - proto: RandomSoap entities: - uid: 800 @@ -5040,6 +5619,51 @@ entities: - type: Transform pos: -1.5,-18.5 parent: 1 +- proto: SignAtmos + entities: + - uid: 1016 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 1 +- proto: SignBridge + entities: + - uid: 1017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 +- proto: SignChem + entities: + - uid: 1019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 +- proto: SignElectricalMed + entities: + - uid: 1014 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 1 +- proto: SignEngine + entities: + - uid: 1015 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1 +- proto: SignMedical + entities: + - uid: 1018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 - proto: SinkEmpty entities: - uid: 240 @@ -5114,18 +5738,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,2.5 parent: 1 - - uid: 723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,3.5 - parent: 1 - - uid: 725 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,1.5 - parent: 1 - proto: SpawnPointMercenary entities: - uid: 952 @@ -5260,8 +5872,6 @@ entities: entities: - uid: 642 components: - - type: MetaData - flags: InContainer - type: Transform parent: 641 - type: Physics @@ -5274,33 +5884,65 @@ entities: - type: Transform pos: 3.5,-8.5 parent: 1 -- proto: TableReinforced - entities: - - uid: 132 +- proto: TableReinforced + entities: + - uid: 132 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + - uid: 442 components: - type: Transform - pos: 2.5,-3.5 + rot: -1.5707963267948966 rad + pos: -2.5,7.5 parent: 1 - - uid: 133 + - uid: 445 components: - type: Transform - pos: 2.5,-4.5 + pos: 5.5,-18.5 parent: 1 - - uid: 134 + - uid: 446 components: - type: Transform - pos: 2.5,-5.5 + pos: -0.5,7.5 parent: 1 - - uid: 171 + - uid: 469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-14.5 + pos: -1.5,7.5 parent: 1 - - uid: 445 + - uid: 607 components: - type: Transform - pos: 5.5,-18.5 + pos: 0.5,6.5 parent: 1 - uid: 617 components: @@ -5362,23 +6004,38 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-15.5 parent: 1 -- proto: TableReinforcedGlass - entities: - - uid: 118 + - uid: 683 components: - type: Transform - pos: -3.5,-3.5 + pos: 0.5,7.5 parent: 1 - - uid: 239 + - uid: 769 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 872 components: - type: Transform pos: 2.5,6.5 parent: 1 - - uid: 241 + - uid: 873 components: - type: Transform pos: -3.5,6.5 parent: 1 + - uid: 874 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 118 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 - uid: 636 components: - type: Transform @@ -5530,8 +6187,6 @@ entities: entities: - uid: 628 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -4.5,-10.5 parent: 1 @@ -5539,8 +6194,6 @@ entities: entities: - uid: 638 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -3.5,-5.5 parent: 1 @@ -5548,8 +6201,6 @@ entities: entities: - uid: 755 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -6.5,-19.5 parent: 1 @@ -5557,8 +6208,6 @@ entities: entities: - uid: 747 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -3.5,-19.5 parent: 1 @@ -5573,15 +6222,11 @@ entities: entities: - uid: 782 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 3.5,-5.5 parent: 1 - uid: 783 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -4.5,-22.5 parent: 1 @@ -5589,8 +6234,6 @@ entities: entities: - uid: 424 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 0.5,-5.5 parent: 1 @@ -5598,16 +6241,12 @@ entities: entities: - uid: 138 components: - - type: MetaData - flags: SessionSpecific - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-3.5 parent: 1 - uid: 139 components: - - type: MetaData - flags: SessionSpecific - type: Transform rot: 1.5707963267948966 rad pos: -6.5,0.5 @@ -5623,8 +6262,6 @@ entities: entities: - uid: 746 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -3.5,-20.5 parent: 1 @@ -5632,1136 +6269,804 @@ entities: entities: - uid: 12 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,8.5 parent: 1 - - uid: 13 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,7.5 - parent: 1 - uid: 14 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,7.5 parent: 1 - uid: 19 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 20 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,7.5 - parent: 1 - uid: 21 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,7.5 parent: 1 - uid: 22 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,5.5 parent: 1 - uid: 23 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,5.5 parent: 1 - uid: 24 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,4.5 parent: 1 - uid: 25 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,5.5 parent: 1 - uid: 26 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,5.5 parent: 1 - uid: 27 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,4.5 parent: 1 - uid: 28 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,4.5 parent: 1 - uid: 29 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,4.5 parent: 1 - uid: 30 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,4.5 parent: 1 - uid: 31 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,4.5 parent: 1 - uid: 32 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,3.5 parent: 1 - uid: 33 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,3.5 parent: 1 - uid: 34 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,3.5 parent: 1 - uid: 35 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,4.5 parent: 1 - uid: 36 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,4.5 parent: 1 - uid: 37 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,4.5 parent: 1 - uid: 38 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,3.5 parent: 1 - uid: 39 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,3.5 parent: 1 - uid: 40 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,3.5 parent: 1 - uid: 41 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,3.5 parent: 1 - uid: 42 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,3.5 parent: 1 - uid: 49 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,0.5 parent: 1 - uid: 50 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,0.5 parent: 1 - uid: 51 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,0.5 parent: 1 - uid: 52 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,0.5 parent: 1 - uid: 53 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,0.5 parent: 1 - uid: 54 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,0.5 parent: 1 - uid: 55 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-3.5 parent: 1 - uid: 56 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-3.5 parent: 1 - uid: 57 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-3.5 parent: 1 - uid: 58 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-3.5 parent: 1 - uid: 59 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,-3.5 parent: 1 - uid: 60 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-3.5 parent: 1 - uid: 61 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,4.5 parent: 1 - uid: 62 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,2.5 parent: 1 - uid: 63 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,1.5 parent: 1 - uid: 64 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,0.5 parent: 1 - uid: 65 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,2.5 parent: 1 - uid: 66 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,1.5 parent: 1 - uid: 67 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,0.5 parent: 1 - uid: 68 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,0.5 parent: 1 - uid: 69 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,0.5 parent: 1 - uid: 75 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-3.5 parent: 1 - uid: 76 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-3.5 parent: 1 - uid: 77 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-3.5 parent: 1 - uid: 78 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-3.5 parent: 1 - uid: 79 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-4.5 parent: 1 - uid: 80 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-5.5 parent: 1 - uid: 81 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-6.5 parent: 1 - uid: 82 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-7.5 parent: 1 - uid: 83 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-7.5 parent: 1 - uid: 84 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-7.5 parent: 1 - uid: 85 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-7.5 parent: 1 - uid: 86 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-6.5 parent: 1 - uid: 87 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-5.5 parent: 1 - uid: 88 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-4.5 parent: 1 - uid: 89 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-6.5 parent: 1 - uid: 90 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-6.5 parent: 1 - uid: 91 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,-6.5 parent: 1 - uid: 92 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,-7.5 parent: 1 - uid: 93 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-7.5 parent: 1 - uid: 94 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-7.5 parent: 1 - uid: 98 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-6.5 parent: 1 - uid: 99 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-6.5 parent: 1 - uid: 100 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-6.5 parent: 1 - uid: 101 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-7.5 parent: 1 - uid: 102 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-7.5 parent: 1 - uid: 103 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-7.5 parent: 1 - uid: 112 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -6.5,0.5 parent: 1 - uid: 113 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-3.5 parent: 1 - uid: 114 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-3.5 parent: 1 - uid: 115 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 5.5,0.5 parent: 1 - uid: 152 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-10.5 parent: 1 - uid: 155 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,-15.5 parent: 1 - uid: 156 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,-16.5 parent: 1 - uid: 157 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-16.5 parent: 1 - uid: 158 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-16.5 parent: 1 - uid: 159 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-16.5 parent: 1 - uid: 160 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-15.5 parent: 1 - uid: 161 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-15.5 parent: 1 - uid: 162 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-15.5 parent: 1 - uid: 163 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-15.5 parent: 1 - uid: 164 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-16.5 parent: 1 - uid: 165 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-16.5 parent: 1 - uid: 166 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-16.5 parent: 1 - uid: 167 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-16.5 parent: 1 - uid: 168 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-15.5 parent: 1 - uid: 169 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-11.5 parent: 1 - uid: 173 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-10.5 parent: 1 - uid: 174 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-8.5 parent: 1 - uid: 178 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-18.5 parent: 1 - uid: 179 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-19.5 parent: 1 - uid: 180 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-20.5 parent: 1 - uid: 181 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-21.5 parent: 1 - uid: 182 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-21.5 parent: 1 - uid: 183 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-22.5 parent: 1 - uid: 184 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-23.5 parent: 1 - uid: 185 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-23.5 parent: 1 - uid: 186 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-24.5 parent: 1 - uid: 187 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-24.5 parent: 1 - uid: 188 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-16.5 parent: 1 - uid: 189 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-17.5 parent: 1 - uid: 190 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-17.5 parent: 1 - uid: 191 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-18.5 parent: 1 - uid: 192 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-19.5 parent: 1 - uid: 193 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-19.5 parent: 1 - uid: 194 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-20.5 parent: 1 - uid: 195 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-18.5 parent: 1 - uid: 196 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-21.5 parent: 1 - uid: 197 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-22.5 parent: 1 - uid: 198 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-23.5 parent: 1 - uid: 199 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-24.5 parent: 1 - uid: 200 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-24.5 parent: 1 - uid: 201 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-24.5 parent: 1 - uid: 202 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-24.5 parent: 1 - uid: 203 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-20.5 parent: 1 - uid: 204 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-14.5 parent: 1 - uid: 205 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-11.5 parent: 1 - uid: 206 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-12.5 parent: 1 - uid: 207 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,-11.5 parent: 1 - uid: 208 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-19.5 parent: 1 - uid: 209 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-20.5 parent: 1 - uid: 210 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-21.5 parent: 1 - uid: 211 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-21.5 parent: 1 - uid: 212 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-22.5 parent: 1 - uid: 213 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-23.5 parent: 1 - uid: 214 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-23.5 parent: 1 - uid: 215 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-24.5 parent: 1 - uid: 216 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,-24.5 parent: 1 - uid: 217 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-24.5 parent: 1 - uid: 218 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-24.5 parent: 1 - uid: 219 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,-24.5 parent: 1 - uid: 220 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-24.5 parent: 1 - uid: 221 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-23.5 parent: 1 - uid: 222 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-22.5 parent: 1 - uid: 223 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-21.5 parent: 1 - uid: 224 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-20.5 parent: 1 - uid: 225 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,-20.5 parent: 1 - uid: 226 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,-19.5 parent: 1 - uid: 227 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-19.5 parent: 1 - uid: 228 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-18.5 parent: 1 - uid: 229 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-17.5 parent: 1 - uid: 230 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-17.5 parent: 1 - uid: 231 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-16.5 parent: 1 - uid: 232 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,-22.5 parent: 1 - uid: 235 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-20.5 parent: 1 - uid: 236 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-20.5 parent: 1 - uid: 348 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,-10.5 parent: 1 - uid: 349 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -7.5,3.5 parent: 1 - uid: 352 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 6.5,3.5 parent: 1 - uid: 361 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-12.5 parent: 1 - uid: 364 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,-12.5 parent: 1 - uid: 772 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 1.5,-10.5 parent: 1 - uid: 774 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,-10.5 parent: 1 - uid: 775 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 3.5,-10.5 @@ -6880,6 +7185,34 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-15.5 parent: 1 +- proto: WarningAir + entities: + - uid: 1012 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 1 +- proto: WarningN2 + entities: + - uid: 1011 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 1 +- proto: WarningO2 + entities: + - uid: 1010 + components: + - type: Transform + pos: -8.5,-20.5 + parent: 1 +- proto: WarningWaste + entities: + - uid: 1013 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 1 - proto: WarpPointShip entities: - uid: 758 @@ -6904,4 +7237,11 @@ entities: - type: Transform pos: 3.5,-14.5 parent: 1 +- proto: WindoorSecure + entities: + - uid: 1002 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 ... diff --git a/Resources/Maps/_NF/Shuttles/empress.yml b/Resources/Maps/_NF/Shuttles/empress.yml deleted file mode 100644 index efb4d0e5a37..00000000000 --- a/Resources/Maps/_NF/Shuttles/empress.yml +++ /dev/null @@ -1,17913 +0,0 @@ -meta: - format: 6 - postmapinit: false -tilemap: - 0: Space - 28: FloorDark - 32: FloorDarkMini - 35: FloorDarkPavement - 36: FloorDarkPavementVertical - 43: FloorFreezer - 44: FloorGlass - 63: FloorMetalDiamond - 72: FloorRGlass - 86: FloorSteelCheckerDark - 97: FloorTechMaint - 101: FloorWhite - 111: FloorWood - 113: Lattice - 114: Plating -entities: -- proto: "" - entities: - - uid: 1 - components: - - type: MetaData - - pos: -14.611727,10.611694 - parent: invalid - type: Transform - - type: StationEmpImmune - - chunks: - 0,0: - ind: 0,0 - tiles: HAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAASAAAAAAASAAAAAAASAAAAAAAIwAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAASAAAAAAASAAAAAAASAAAAAAAIwAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAASAAAAAAASAAAAAAASAAAAAAAIwAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,0: - ind: -1,0 - tiles: cgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAPwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAPwAAAAAAIwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAPwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcgAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAKwAAAAAAKwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAcQAAAAAAcgAAAAAA - version: 6 - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAALAAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAALAAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAALAAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAALAAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAALAAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAALAAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAALAAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAALAAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAALAAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAALAAAAAAALAAAAAAALAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAA - version: 6 - 1,0: - ind: 1,0 - tiles: cgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAbwAAAAAAbwAAAAAAZQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAIAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAIAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAKwAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,-1: - ind: 1,-1 - tiles: cgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAA - version: 6 - 2,0: - ind: 2,0 - tiles: cgAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKwAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,-1: - ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -2,0: - ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -2,-1: - ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAA - version: 6 - type: MapGrid - - type: Broadphase - - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures - - type: OccluderTree - - type: SpreaderGrid - - type: Shuttle - - type: GridPathfinding - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - color: '#B02E26FF' - id: 1 - decals: - 380: 26,1 - 381: 26,1 - - node: - color: '#0096FFFF' - id: 2 - decals: - 492: -8.481779,7.3964577 - - node: - color: '#B02E26FF' - id: 2 - decals: - 376: 20,1 - - node: - color: '#FF0000FF' - id: 2 - decals: - 490: -8.497404,5.4433327 - - node: - color: '#B02E26FF' - id: 3 - decals: - 377: 6,1 - - node: - color: '#B02E26FF' - id: 4 - decals: - 378: 0,1 - - node: - color: '#B02E26FF' - id: BotGreyscale - decals: - 123: 34,4 - 255: -4,-5 - 358: 33,4 - 359: 35,6 - 360: 34,6 - 361: 33,6 - 362: 32,6 - 363: 32,5 - 364: 0,0 - 391: 17,8 - - node: - color: '#B02E26FF' - id: BotLeft - decals: - 384: 26,1 - 385: 20,1 - 494: 12,3 - 495: 14,3 - 496: 14,5 - - node: - color: '#B02E26FF' - id: BotRight - decals: - 386: 6,1 - 387: 0,1 - - node: - color: '#B02E26FF' - id: Box - decals: - 52: 12,7 - 256: -5,-3 - 257: -5,-2 - 258: -5,-1 - - node: - color: '#B02E26FF' - id: BoxGreyscale - decals: - 124: 35,6 - 125: 34,6 - 126: 32,6 - 393: 17,7 - 487: -5,-3 - 488: -5,-2 - 489: -5,-1 - - node: - color: '#B02E26FF' - id: BrickTileDarkCornerNe - decals: - 265: 16,-1 - 279: 16,-7 - - node: - color: '#B02E26FF' - id: BrickTileDarkCornerNw - decals: - 266: 12,-1 - 278: 12,-7 - - node: - color: '#B02E26FF' - id: BrickTileDarkCornerSe - decals: - 267: 16,-5 - 280: 16,-15 - - node: - color: '#B02E26FF' - id: BrickTileDarkCornerSw - decals: - 268: 12,-5 - 281: 12,-15 - - node: - color: '#B02E26FF' - id: BrickTileDarkLineE - decals: - 259: 16,-2 - 260: 16,-3 - 261: 16,-4 - 282: 16,-14 - 283: 16,-13 - 284: 16,-11 - 285: 16,-11 - 286: 16,-10 - 287: 16,-10 - 288: 16,-9 - 289: 16,-8 - 290: 16,-8 - 291: 16,-11 - 292: 16,-12 - - node: - color: '#B02E26FF' - id: BrickTileDarkLineN - decals: - 269: 13,-1 - 270: 14,-1 - 271: 15,-1 - 293: 13,-7 - 294: 14,-7 - 295: 15,-7 - - node: - color: '#B02E26FF' - id: BrickTileDarkLineS - decals: - 272: 13,-5 - 273: 14,-5 - 274: 15,-5 - 275: 13,-15 - 276: 14,-15 - 277: 15,-15 - - node: - color: '#B02E26FF' - id: BrickTileDarkLineW - decals: - 262: 12,-4 - 263: 12,-3 - 264: 12,-2 - 296: 12,-14 - 297: 12,-13 - 298: 12,-12 - 299: 12,-12 - 300: 12,-10 - 301: 12,-8 - 302: 12,-11 - 333: 12,-9 - - node: - color: '#B02E26FF' - id: BrickTileSteelCornerNe - decals: - 72: 30,6 - 74: 25,10 - - node: - color: '#B02E26FF' - id: BrickTileSteelCornerNw - decals: - 73: 24,10 - 89: 18,2 - - node: - color: '#B02E26FF' - id: BrickTileSteelCornerSe - decals: - 70: 29,1 - - node: - color: '#B02E26FF' - id: BrickTileSteelCornerSw - decals: - 71: 18,1 - - node: - color: '#B02E26FF' - id: BrickTileSteelInnerNw - decals: - 105: 24,2 - - node: - color: '#B02E26FF' - id: BrickTileSteelLineE - decals: - 79: 25,7 - 80: 25,8 - 81: 25,9 - 106: 29,2 - 107: 29,3 - 382: 29,4 - 383: 29,3 - - node: - color: '#B02E26FF' - id: BrickTileSteelLineN - decals: - 75: 29,6 - 76: 28,6 - 77: 27,6 - 78: 26,6 - 100: 19,2 - 101: 21,2 - 102: 22,2 - 103: 23,2 - 104: 20,2 - - node: - color: '#B02E26FF' - id: BrickTileSteelLineS - decals: - 90: 19,1 - 91: 20,1 - 92: 21,1 - 93: 23,1 - 94: 22,1 - 95: 24,1 - 96: 25,1 - 97: 26,1 - 98: 28,1 - 99: 27,1 - - node: - color: '#B02E26FF' - id: BrickTileSteelLineW - decals: - 82: 24,9 - 83: 24,8 - 84: 24,7 - 85: 24,6 - 86: 24,5 - 87: 24,4 - 88: 24,3 - - node: - color: '#B02E26FF' - id: BrickTileWhiteCornerNe - decals: - 23: 18,10 - 56: 14,10 - 242: -4,-1 - - node: - color: '#B02E26FF' - id: BrickTileWhiteCornerNw - decals: - 22: 16,10 - 27: 12,5 - 53: 12,10 - 243: -6,-1 - - node: - color: '#B02E26FF' - id: BrickTileWhiteCornerSe - decals: - 24: 16,1 - 25: 18,4 - 54: 14,7 - 57: 14,3 - 245: -4,-5 - - node: - color: '#B02E26FF' - id: BrickTileWhiteCornerSw - decals: - 26: 12,1 - 55: 12,7 - 244: -6,-5 - - node: - color: '#B02E26FF' - id: BrickTileWhiteInnerNw - decals: - 46: 16,5 - - node: - color: '#B02E26FF' - id: BrickTileWhiteInnerSe - decals: - 47: 16,4 - - node: - color: '#B02E26FF' - id: BrickTileWhiteLineE - decals: - 29: 18,9 - 30: 18,8 - 31: 18,7 - 32: 18,6 - 33: 18,5 - 43: 16,2 - 44: 16,3 - 58: 14,5 - 62: 14,8 - 63: 14,9 - 246: -4,-4 - 247: -4,-3 - 248: -4,-2 - - node: - color: '#B02E26FF' - id: BrickTileWhiteLineN - decals: - 28: 17,10 - 38: 13,5 - 39: 14,5 - 51: 15,5 - 61: 13,10 - 253: -5,-1 - - node: - color: '#B02E26FF' - id: BrickTileWhiteLineS - decals: - 40: 13,1 - 41: 14,1 - 42: 15,1 - 45: 17,4 - 59: 12,3 - 60: 13,7 - 249: -5,-5 - - node: - color: '#B02E26FF' - id: BrickTileWhiteLineW - decals: - 34: 16,9 - 35: 16,8 - 36: 16,7 - 37: 16,6 - 48: 12,2 - 49: 12,3 - 50: 12,4 - 64: 12,8 - 65: 12,9 - 250: -6,-4 - 251: -6,-3 - 252: -6,-2 - - node: - color: '#B02E26FF' - id: CheckerNWSE - decals: - 0: 28,8 - 1: 26,7 - 2: 26,8 - 3: 27,8 - 4: 27,9 - 5: 26,9 - 6: 26,10 - 7: 27,10 - 8: 29,10 - 9: 28,10 - 10: 28,9 - 11: 29,9 - 12: 29,8 - 13: 30,8 - 14: 30,9 - 15: 30,10 - 16: 30,10 - 17: 30,7 - 18: 28,7 - 19: 28,7 - 20: 27,7 - 21: 29,7 - - node: - color: '#B02E26FF' - id: ConcreteTrimCornerSe - decals: - 127: 22,4 - - node: - color: '#B02E26FF' - id: ConcreteTrimCornerSw - decals: - 128: 20,4 - - node: - color: '#B02E26FF' - id: ConcreteTrimInnerNe - decals: - 142: 25,6 - 371: 20,9 - - node: - color: '#B02E26FF' - id: ConcreteTrimInnerNw - decals: - 370: 22,9 - - node: - color: '#B02E26FF' - id: ConcreteTrimLineE - decals: - 131: 22,5 - 132: 22,8 - 133: 22,9 - 138: 22,10 - 139: 22,11 - 140: 22,6 - 152: 30,5 - 367: 20,10 - 368: 20,11 - - node: - color: '#B02E26FF' - id: ConcreteTrimLineN - decals: - 369: 21,9 - - node: - color: '#B02E26FF' - id: ConcreteTrimLineS - decals: - 130: 21,4 - - node: - color: '#B02E26FF' - id: ConcreteTrimLineW - decals: - 129: 20,5 - 134: 20,8 - 135: 20,9 - 136: 20,10 - 137: 20,11 - 141: 20,6 - 365: 22,10 - 366: 22,11 - - node: - color: '#B02E26FF' - id: Delivery - decals: - 66: 6,0 - 67: 0,0 - 68: 20,0 - 254: -5,-5 - 373: -3,2 - 374: 18,10 - 375: 25,10 - 379: 26,0 - - node: - color: '#B02E26FF' - id: DeliveryGreyscale - decals: - 119: 31,3 - 120: 31,4 - 151: 30,5 - 204: -1,3 - 372: 12,-7 - 392: 17,9 - 394: 18,10 - 395: -3,2 - 486: -5,-5 - - node: - color: '#B02E26FF' - id: MiniTileDarkCornerNe - decals: - 307: 15,-8 - 334: 35,6 - - node: - color: '#B02E26FF' - id: MiniTileDarkCornerNw - decals: - 303: 13,-8 - 335: 32,6 - 336: 31,4 - - node: - color: '#B02E26FF' - id: MiniTileDarkCornerSe - decals: - 304: 15,-14 - 337: 35,3 - - node: - color: '#B02E26FF' - id: MiniTileDarkCornerSw - decals: - 305: 13,-14 - 338: 31,3 - - node: - color: '#B02E26FF' - id: MiniTileDarkInnerNe - decals: - 354: 32,3 - - node: - color: '#B02E26FF' - id: MiniTileDarkInnerNw - decals: - 344: 32,4 - 357: 35,3 - - node: - color: '#B02E26FF' - id: MiniTileDarkInnerSe - decals: - 355: 32,5 - - node: - color: '#B02E26FF' - id: MiniTileDarkInnerSw - decals: - 356: 35,5 - - node: - color: '#B02E26FF' - id: MiniTileDarkLineE - decals: - 308: 15,-9 - 309: 15,-10 - 310: 15,-10 - 311: 15,-12 - 312: 15,-12 - 313: 15,-11 - 314: 15,-13 - 327: 15,-4 - 328: 15,-3 - 329: 15,-2 - 347: 35,4 - 348: 35,5 - 353: 32,4 - - node: - color: '#B02E26FF' - id: MiniTileDarkLineN - decals: - 306: 14,-8 - 330: 13,-2 - 331: 14,-2 - 332: 15,-2 - 342: 33,6 - 343: 34,6 - 350: 34,3 - 351: 33,3 - - node: - color: '#B02E26FF' - id: MiniTileDarkLineS - decals: - 320: 14,-14 - 321: 14,-4 - 322: 15,-4 - 323: 13,-4 - 339: 32,3 - 340: 33,3 - 341: 34,3 - 345: 33,5 - 346: 34,5 - - node: - color: '#B02E26FF' - id: MiniTileDarkLineW - decals: - 315: 13,-13 - 316: 13,-12 - 317: 13,-11 - 318: 13,-10 - 319: 13,-9 - 324: 13,-4 - 325: 13,-3 - 326: 13,-2 - 349: 35,4 - 352: 32,5 - - node: - color: '#B02E26FF' - id: MiniTileSteelCornerNe - decals: - 108: 35,6 - 143: 27,4 - 159: 9,4 - 180: 10,5 - 396: 38,3 - 441: 44,2 - 442: 34,-1 - 443: 40,-4 - 444: 44,-1 - 445: 41,5 - 446: 40,6 - 447: 39,8 - 465: 41,5 - 466: 40,6 - - node: - color: '#B02E26FF' - id: MiniTileSteelCornerNw - decals: - 110: 32,6 - 115: 31,4 - 144: 25,4 - 160: 7,4 - 185: 0,5 - 426: 32,-1 - 427: 38,-4 - 428: 40,-1 - 429: 40,2 - 430: 37,8 - 454: 37,8 - 502: 32,-4 - 507: 32,-4 - - node: - color: '#B02E26FF' - id: MiniTileSteelCornerSe - decals: - 121: 35,3 - 145: 27,2 - 158: 9,2 - 431: 40,-5 - 432: 44,-2 - 433: 42,-3 - 434: 40,-5 - 435: 34,-5 - 440: 44,1 - - node: - color: '#B02E26FF' - id: MiniTileSteelCornerSw - decals: - 116: 31,3 - 146: 25,2 - 157: 7,2 - 418: 35,0 - 436: 38,-5 - 437: 40,-2 - 438: 42,-3 - 439: 40,1 - 452: 40,4 - 453: 37,5 - 501: 32,-2 - 506: 32,-5 - - node: - color: '#B02E26FF' - id: MiniTileSteelEndS - decals: - 413: 36,-3 - - node: - color: '#B02E26FF' - id: MiniTileSteelEndW - decals: - 497: 31,1 - - node: - color: '#B02E26FF' - id: MiniTileSteelInnerNe - decals: - 448: 39,6 - 449: 40,5 - 462: 40,5 - 463: 39,6 - 464: 39,7 - - node: - color: '#B02E26FF' - id: MiniTileSteelInnerNw - decals: - 117: 32,4 - 206: 0,3 - 422: 37,1 - 503: 33,-4 - - node: - color: '#B02E26FF' - id: MiniTileSteelInnerSe - decals: - 228: 0,4 - 421: 36,-2 - 478: 42,-2 - - node: - color: '#B02E26FF' - id: MiniTileSteelInnerSw - decals: - 229: 6,4 - 419: 35,1 - 420: 36,0 - 461: 40,5 - 479: 42,-2 - 504: 33,-2 - - node: - color: '#B02E26FF' - id: MiniTileSteelLineE - decals: - 109: 35,5 - 122: 35,4 - 150: 27,3 - 156: 9,3 - 181: 10,4 - 182: 10,3 - 183: 10,2 - 184: 10,1 - 216: 0,1 - 217: 0,2 - 218: 0,3 - 397: 38,2 - 398: 38,1 - 399: 38,0 - 400: 38,-1 - 401: 38,-2 - 450: 39,7 - 451: 41,4 - 498: 34,-4 - 499: 34,-3 - 500: 34,-2 - - node: - color: '#B02E26FF' - id: MiniTileSteelLineN - decals: - 111: 34,6 - 149: 26,4 - 153: 8,4 - 186: 1,5 - 187: 2,5 - 188: 4,5 - 189: 3,5 - 190: 5,5 - 191: 6,5 - 192: 7,5 - 193: 8,5 - 194: 9,5 - 207: -1,3 - 402: 31,1 - 403: 34,1 - 404: 32,1 - 405: 33,1 - 406: 36,1 - 407: 35,1 - 408: 36,1 - 425: 37,3 - 455: 38,8 - 467: 41,2 - 468: 42,2 - 469: 43,2 - 475: 41,-1 - 476: 42,-1 - 477: 43,-1 - 480: 33,-1 - 481: 39,-4 - - node: - color: '#B02E26FF' - id: MiniTileSteelLineS - decals: - 112: 32,3 - 113: 33,3 - 114: 34,3 - 148: 26,2 - 155: 8,2 - 195: 7,1 - 196: 8,1 - 197: 9,1 - 198: 10,1 - 199: 0,1 - 200: -1,1 - 219: 1,4 - 220: 3,4 - 221: 2,4 - 222: 4,4 - 223: 5,4 - 227: 6,1 - 409: 31,1 - 410: 32,1 - 411: 33,1 - 412: 34,1 - 414: 37,-2 - 415: 38,-2 - 458: 38,5 - 459: 39,5 - 460: 41,4 - 470: 41,1 - 471: 42,1 - 472: 43,1 - 473: 41,-2 - 474: 43,-2 - 482: 33,-5 - 483: 39,-5 - 484: 42,1 - 485: 43,1 - - node: - color: '#B02E26FF' - id: MiniTileSteelLineW - decals: - 147: 25,3 - 154: 7,3 - 201: -1,1 - 202: -1,2 - 203: 0,4 - 205: -1,3 - 224: 6,3 - 225: 6,2 - 226: 6,1 - 416: 36,-2 - 417: 36,-1 - 423: 37,2 - 424: 37,3 - 456: 37,7 - 457: 37,6 - 505: 33,-3 - - node: - color: '#B02E26FF' - id: MiniTileWhiteCornerNe - decals: - 213: 15,-2 - 231: 5,2 - 233: 4,3 - - node: - color: '#B02E26FF' - id: MiniTileWhiteCornerNw - decals: - 214: 13,-2 - 230: 1,2 - 232: 2,3 - - node: - color: '#B02E26FF' - id: MiniTileWhiteCornerSe - decals: - 215: 15,-4 - 234: 5,1 - - node: - color: '#B02E26FF' - id: MiniTileWhiteCornerSw - decals: - 208: 13,-4 - 235: 1,1 - - node: - color: '#B02E26FF' - id: MiniTileWhiteInnerNe - decals: - 240: 4,2 - - node: - color: '#B02E26FF' - id: MiniTileWhiteInnerNw - decals: - 239: 2,2 - - node: - color: '#B02E26FF' - id: MiniTileWhiteLineE - decals: - 210: 15,-3 - - node: - color: '#B02E26FF' - id: MiniTileWhiteLineN - decals: - 209: 14,-2 - 241: 3,3 - - node: - color: '#B02E26FF' - id: MiniTileWhiteLineS - decals: - 212: 14,-4 - 236: 2,1 - 237: 3,1 - 238: 4,1 - - node: - color: '#B02E26FF' - id: MiniTileWhiteLineW - decals: - 211: 13,-3 - - node: - color: '#B02E26FF' - id: WarnFullGreyscale - decals: - 118: 32,4 - - node: - color: '#B02E26FF' - id: WarnLineGreyscaleE - decals: - 170: 2,8 - 171: 2,9 - 172: 6,8 - 173: 6,9 - - node: - color: '#B02E26FF' - id: WarnLineGreyscaleN - decals: - 174: 9,10 - 175: 5,10 - 176: 1,10 - 177: -1,10 - 178: -3,10 - 179: -5,10 - - node: - color: '#B02E26FF' - id: WarnLineGreyscaleS - decals: - 161: 10,7 - 162: 6,7 - 163: 2,7 - 164: 1,7 - 165: 0,7 - 388: 20,8 - 389: 21,8 - 390: 22,8 - - node: - color: '#B02E26FF' - id: WarnLineGreyscaleW - decals: - 166: 4,8 - 167: 4,9 - 168: 8,8 - 169: 8,9 - - node: - color: '#B02E26FF' - id: cyka - decals: - 69: -2,10 - - node: - color: '#FF0000FF' - id: n - decals: - 491: -8.888029,5.4433327 - - node: - color: '#0096FFFF' - id: o - decals: - 493: -8.872404,7.3964577 - type: DecalGrid - - version: 2 - data: - tiles: - 0,0: - 0: 65471 - 1: 64 - 1,0: - 0: 65535 - -1,0: - 0: 65535 - -1,-1: - 0: 62259 - 0,1: - 0: 65535 - 0,2: - 0: 65531 - 2: 4 - 1,1: - 0: 57343 - 1: 8192 - 1,2: - 0: 65535 - 2,0: - 0: 65535 - 2,1: - 0: 57343 - 1: 8192 - 2,2: - 0: 65535 - 3,0: - 0: 65535 - 3,1: - 0: 65535 - 3,2: - 0: 65519 - 1: 16 - -4,0: - 0: 65535 - -4,1: - 0: 35951 - 3: 128 - -3,0: - 0: 65023 - 4: 512 - -3,1: - 0: 57343 - 5: 8192 - -3,2: - 0: 2287 - -2,0: - 0: 65535 - -2,1: - 0: 65535 - -2,2: - 0: 61439 - -1,1: - 0: 28669 - 6: 36864 - 7: 2 - -1,2: - 0: 65535 - -4,-1: - 0: 65534 - -4,-2: - 0: 51328 - -3,-2: - 0: 65535 - -3,-1: - 1: 1 - 8: 64 - 9: 32768 - 0: 30486 - 10: 8 - 4: 32 - 11: 128 - 7: 2048 - -3,-3: - 0: 60416 - -2,-3: - 0: 65280 - -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-3: - 0: 12544 - -1,-2: - 0: 13107 - 2,-4: - 0: 34952 - 2,-3: - 0: 34952 - 2,-2: - 0: 34952 - 2,-1: - 0: 63624 - 3,-4: - 0: 65535 - 3,-3: - 0: 65535 - 3,-2: - 0: 12287 - 4: 4096 - 12: 16384 - 6: 32768 - 3,-1: - 0: 65535 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65023 - 7: 512 - 5,0: - 0: 65535 - 5,1: - 0: 65535 - 5,2: - 0: 65535 - 6,0: - 0: 64511 - 6: 1024 - 6,1: - 0: 65535 - 6,2: - 0: 65527 - 1: 8 - 7,0: - 0: 32767 - 7: 32768 - 7,1: - 0: 65527 - 7: 8 - 7,2: - 0: 65535 - 4,-4: - 0: 13107 - 4,-3: - 0: 13107 - 4,-2: - 0: 9011 - 4: 4096 - 4,-1: - 0: 62259 - 7,-3: - 0: 32768 - 7,-2: - 0: 34952 - 7,-1: - 0: 63624 - 8,0: - 0: 65535 - 8,1: - 0: 65531 - 7: 4 - 8,2: - 0: 65405 - 6: 130 - 9,0: - 0: 65535 - 9,1: - 0: 65503 - 2: 32 - 9,2: - 0: 1023 - 10,0: - 0: 65279 - 6: 256 - 10,1: - 2: 1 - 0: 14334 - 10,2: - 0: 1 - 11,0: - 0: 12851 - 2: 256 - 11,1: - 0: 1 - 8,-3: - 0: 65280 - 8,-2: - 0: 65535 - 8,-1: - 0: 65535 - 9,-3: - 0: 63232 - 9,-2: - 0: 65535 - 9,-1: - 0: 65535 - 10,-2: - 0: 29489 - 10,-1: - 0: 65535 - 11,-1: - 0: 13072 - 4,3: - 0: 14 - 5,3: - 0: 15 - -5,0: - 0: 34952 - -5,-1: - 0: 34816 - 0,-1: - 0: 61440 - 1,-1: - 0: 61440 - 6,3: - 0: 3 - 5,-1: - 0: 61440 - 6,-1: - 0: 61440 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.823984 - - 82.09976 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 19.950384 - - 75.051445 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.813705 - - 82.06108 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14993 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14993 - moles: - - 18.472576 - - 69.49208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.06861 - - 75.49619 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: GasTileOverlay - - type: RadiationGridResistance -- proto: AirlockArmoryLocked - entities: - - uid: 129 - components: - - pos: 39.5,1.5 - parent: 1 - type: Transform -- proto: AirlockBrigGlassLocked - entities: - - uid: 466 - components: - - pos: -0.5,5.5 - parent: 1 - type: Transform - - links: - - 149 - type: DeviceLinkSink - - uid: 467 - components: - - pos: 4.5,6.5 - parent: 1 - type: Transform - - links: - - 232 - type: DeviceLinkSink - - uid: 468 - components: - - pos: 8.5,6.5 - parent: 1 - type: Transform - - links: - - 174 - type: DeviceLinkSink -- proto: AirlockCommandGlass - entities: - - uid: 1252 - components: - - pos: 13.5,-5.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlass - entities: - - uid: 159 - components: - - pos: 22.5,10.5 - parent: 1 - type: Transform - - uid: 745 - components: - - pos: 20.5,10.5 - parent: 1 - type: Transform -- proto: AirlockGlass - entities: - - uid: 1210 - components: - - rot: 3.141592653589793 rad - pos: 31.5,9.5 - parent: 1 - type: Transform -- proto: AirlockGlassShuttle - entities: - - uid: 1430 - components: - - rot: 3.141592653589793 rad - pos: 20.5,12.5 - parent: 1 - type: Transform - - uid: 1447 - components: - - rot: 3.141592653589793 rad - pos: 22.5,12.5 - parent: 1 - type: Transform - - uid: 2385 - components: - - pos: 20.5,-0.5 - parent: 1 - type: Transform - - uid: 2386 - components: - - pos: 26.5,-0.5 - parent: 1 - type: Transform - - uid: 2387 - components: - - pos: 6.5,-0.5 - parent: 1 - type: Transform - - uid: 2388 - components: - - pos: 0.5,-0.5 - parent: 1 - type: Transform -- proto: AirlockHeadOfSecurityLocked - entities: - - uid: 142 - components: - - pos: 38.5,4.5 - parent: 1 - type: Transform -- proto: AirlockMaintGlassLocked - entities: - - uid: 1705 - components: - - rot: 3.141592653589793 rad - pos: -7.5,0.5 - parent: 1 - type: Transform -- proto: AirlockMedicalGlass - entities: - - uid: 1703 - components: - - rot: 3.141592653589793 rad - pos: 15.5,10.5 - parent: 1 - type: Transform - - uid: 1704 - components: - - rot: 3.141592653589793 rad - pos: -3.5,0.5 - parent: 1 - type: Transform -- proto: AirlockSecurityGlassLocked - entities: - - uid: 469 - components: - - pos: 11.5,1.5 - parent: 1 - type: Transform - - uid: 470 - components: - - pos: -1.5,1.5 - parent: 1 - type: Transform - - uid: 1321 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,7.5 - parent: 1 - type: Transform - - uid: 1438 - components: - - pos: 30.5,1.5 - parent: 1 - type: Transform - - uid: 1441 - components: - - pos: 17.5,2.5 - parent: 1 - type: Transform - - uid: 2014 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,0.5 - parent: 1 - type: Transform -- proto: AirlockSecurityLocked - entities: - - uid: 608 - components: - - pos: 38.5,-2.5 - parent: 1 - type: Transform - - uid: 1254 - components: - - pos: 35.5,-1.5 - parent: 1 - type: Transform - - uid: 1433 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,4.5 - parent: 1 - type: Transform - - uid: 1442 - components: - - pos: 39.5,-0.5 - parent: 1 - type: Transform - - uid: 1444 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,4.5 - parent: 1 - type: Transform -- proto: AmeController - entities: - - uid: 76 - components: - - pos: -14.5,3.5 - parent: 1 - type: Transform - - injectionAmount: 4 - injecting: True - type: AmeController - - containers: - AmeFuel: !type:ContainerSlot - showEnts: False - occludes: True - ent: 77 - type: ContainerContainer -- proto: AmeJar - entities: - - uid: 77 - components: - - flags: InContainer - type: MetaData - - parent: 76 - type: Transform - - canCollide: False - type: Physics - - uid: 725 - components: - - pos: -11.712221,2.562519 - parent: 1 - type: Transform - - uid: 762 - components: - - pos: -11.503887,2.5999584 - parent: 1 - type: Transform - - uid: 763 - components: - - pos: -11.305971,2.5582914 - parent: 1 - type: Transform -- proto: AmeShielding - entities: - - uid: 684 - components: - - rot: 3.141592653589793 rad - pos: -14.5,1.5 - parent: 1 - type: Transform - - radius: 2 - enabled: True - type: PointLight - - uid: 685 - components: - - rot: 3.141592653589793 rad - pos: -14.5,2.5 - parent: 1 - type: Transform - - uid: 686 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-0.5 - parent: 1 - type: Transform - - uid: 687 - components: - - rot: 3.141592653589793 rad - pos: -15.5,0.5 - parent: 1 - type: Transform - - uid: 688 - components: - - rot: 3.141592653589793 rad - pos: -15.5,1.5 - parent: 1 - type: Transform - - uid: 689 - components: - - rot: 3.141592653589793 rad - pos: -14.5,0.5 - parent: 1 - type: Transform - - radius: 2 - enabled: True - type: PointLight - - uid: 690 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-0.5 - parent: 1 - type: Transform - - uid: 692 - components: - - rot: 3.141592653589793 rad - pos: -15.5,2.5 - parent: 1 - type: Transform - - uid: 694 - components: - - rot: 3.141592653589793 rad - pos: -13.5,1.5 - parent: 1 - type: Transform - - uid: 695 - components: - - rot: 3.141592653589793 rad - pos: -13.5,2.5 - parent: 1 - type: Transform - - uid: 702 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-0.5 - parent: 1 - type: Transform - - uid: 704 - components: - - rot: 3.141592653589793 rad - pos: -13.5,0.5 - parent: 1 - type: Transform -- proto: APCBasic - entities: - - uid: 2045 - components: - - pos: 12.5,-5.5 - parent: 1 - type: Transform - - startingCharge: 150000 - maxCharge: 150000 - type: Battery - - uid: 2046 - components: - - rot: 3.141592653589793 rad - pos: -5.5,0.5 - parent: 1 - type: Transform - - startingCharge: 150000 - maxCharge: 150000 - type: Battery - - uid: 2047 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,5.5 - parent: 1 - type: Transform - - startingCharge: 150000 - maxCharge: 150000 - type: Battery - - uid: 2048 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,6.5 - parent: 1 - type: Transform - - startingCharge: 150000 - maxCharge: 150000 - type: Battery - - uid: 2049 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-2.5 - parent: 1 - type: Transform - - startingCharge: 150000 - maxCharge: 150000 - type: Battery - - uid: 2051 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,4.5 - parent: 1 - type: Transform - - startingCharge: 150000 - maxCharge: 150000 - type: Battery - - uid: 2052 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,2.5 - parent: 1 - type: Transform - - uid: 2056 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,9.5 - parent: 1 - type: Transform - - startingCharge: 150000 - maxCharge: 150000 - type: Battery - - uid: 2058 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-3.5 - parent: 1 - type: Transform - - startingCharge: 150000 - maxCharge: 150000 - type: Battery - - uid: 2061 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,3.5 - parent: 1 - type: Transform - - startingCharge: 150000 - maxCharge: 150000 - type: Battery - - uid: 2358 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,3.5 - parent: 1 - type: Transform - - startingCharge: 150000 - maxCharge: 150000 - type: Battery -- proto: AtmosDeviceFanTiny - entities: - - uid: 492 - components: - - pos: 20.5,12.5 - parent: 1 - type: Transform - - uid: 493 - components: - - pos: 22.5,12.5 - parent: 1 - type: Transform - - uid: 2379 - components: - - pos: 0.5,-0.5 - parent: 1 - type: Transform - - uid: 2382 - components: - - pos: 6.5,-0.5 - parent: 1 - type: Transform - - uid: 2383 - components: - - pos: 20.5,-0.5 - parent: 1 - type: Transform - - uid: 2384 - components: - - pos: 26.5,-0.5 - parent: 1 - type: Transform -- proto: AtmosFixNitrogenMarker - entities: - - uid: 850 - components: - - pos: -12.5,5.5 - parent: 1 - type: Transform -- proto: AtmosFixOxygenMarker - entities: - - uid: 849 - components: - - pos: -10.5,7.5 - parent: 1 - type: Transform -- proto: Autolathe - entities: - - uid: 1037 - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform -- proto: BannerSecurity - entities: - - uid: 2629 - components: - - pos: 21.5,8.5 - parent: 1 - type: Transform -- proto: BarSign - entities: - - uid: 292 - components: - - pos: 29.5,11.5 - parent: 1 - type: Transform -- proto: Bed - entities: - - uid: 144 - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform - - uid: 987 - components: - - pos: 32.5,-0.5 - parent: 1 - type: Transform - - uid: 988 - components: - - pos: 32.5,-4.5 - parent: 1 - type: Transform - - uid: 989 - components: - - pos: 40.5,-4.5 - parent: 1 - type: Transform - - uid: 990 - components: - - pos: 43.5,-1.5 - parent: 1 - type: Transform - - uid: 991 - components: - - pos: 43.5,2.5 - parent: 1 - type: Transform - - uid: 992 - components: - - pos: 39.5,7.5 - parent: 1 - type: Transform - - uid: 1013 - components: - - pos: -5.5,5.5 - parent: 1 - type: Transform - - uid: 2029 - components: - - pos: 6.5,8.5 - parent: 1 - type: Transform - - uid: 2030 - components: - - pos: 10.5,8.5 - parent: 1 - type: Transform -- proto: BedsheetHOS - entities: - - uid: 770 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,7.5 - parent: 1 - type: Transform -- proto: BedsheetSpawner - entities: - - uid: 994 - components: - - pos: 43.5,2.5 - parent: 1 - type: Transform - - uid: 995 - components: - - pos: 43.5,-1.5 - parent: 1 - type: Transform - - uid: 997 - components: - - pos: 32.5,-4.5 - parent: 1 - type: Transform - - uid: 998 - components: - - pos: 32.5,-0.5 - parent: 1 - type: Transform - - uid: 1406 - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform - - uid: 1407 - components: - - pos: -5.5,5.5 - parent: 1 - type: Transform - - uid: 2027 - components: - - pos: 6.5,8.5 - parent: 1 - type: Transform - - uid: 2028 - components: - - pos: 10.5,8.5 - parent: 1 - type: Transform - - uid: 2414 - components: - - pos: 40.5,-4.5 - parent: 1 - type: Transform -- proto: BiomassReclaimer - entities: - - uid: 556 - components: - - pos: -3.5,-4.5 - parent: 1 - type: Transform -- proto: BlastDoorExterior1Open - entities: - - uid: 409 - components: - - pos: 32.5,11.5 - parent: 1 - type: Transform - - uid: 410 - components: - - pos: 33.5,11.5 - parent: 1 - type: Transform - - uid: 411 - components: - - pos: 34.5,11.5 - parent: 1 - type: Transform - - uid: 412 - components: - - pos: 29.5,0.5 - parent: 1 - type: Transform - - uid: 414 - components: - - pos: 16.5,11.5 - parent: 1 - type: Transform - - uid: 415 - components: - - pos: 14.5,11.5 - parent: 1 - type: Transform - - uid: 416 - components: - - pos: 13.5,11.5 - parent: 1 - type: Transform - - uid: 418 - components: - - pos: 22.5,0.5 - parent: 1 - type: Transform - - uid: 419 - components: - - pos: 23.5,0.5 - parent: 1 - type: Transform - - uid: 484 - components: - - pos: 24.5,0.5 - parent: 1 - type: Transform - - uid: 486 - components: - - pos: 9.5,11.5 - parent: 1 - type: Transform - - uid: 511 - components: - - pos: 5.5,11.5 - parent: 1 - type: Transform - - uid: 512 - components: - - pos: 1.5,11.5 - parent: 1 - type: Transform - - uid: 513 - components: - - pos: 27.5,11.5 - parent: 1 - type: Transform - - uid: 514 - components: - - pos: 26.5,11.5 - parent: 1 - type: Transform - - uid: 578 - components: - - pos: 25.5,11.5 - parent: 1 - type: Transform - - uid: 600 - components: - - pos: 17.5,11.5 - parent: 1 - type: Transform - - uid: 809 - components: - - pos: 28.5,0.5 - parent: 1 - type: Transform - - uid: 810 - components: - - pos: -0.5,11.5 - parent: 1 - type: Transform - - uid: 1183 - components: - - pos: -2.5,11.5 - parent: 1 - type: Transform - - uid: 1327 - components: - - pos: 31.5,-3.5 - parent: 1 - type: Transform - - uid: 1334 - components: - - pos: -4.5,11.5 - parent: 1 - type: Transform - - uid: 1335 - components: - - pos: -7.5,9.5 - parent: 1 - type: Transform - - uid: 1336 - components: - - pos: 11.5,-8.5 - parent: 1 - type: Transform - - uid: 1337 - components: - - pos: 11.5,-10.5 - parent: 1 - type: Transform - - uid: 1338 - components: - - pos: 11.5,-11.5 - parent: 1 - type: Transform - - uid: 1339 - components: - - pos: 17.5,-10.5 - parent: 1 - type: Transform - - uid: 1340 - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform - - uid: 1341 - components: - - pos: -7.5,-5.5 - parent: 1 - type: Transform - - uid: 1342 - components: - - pos: -11.5,-5.5 - parent: 1 - type: Transform - - uid: 1343 - components: - - pos: 17.5,-13.5 - parent: 1 - type: Transform - - uid: 1344 - components: - - pos: 17.5,-11.5 - parent: 1 - type: Transform - - uid: 1345 - components: - - pos: 17.5,-8.5 - parent: 1 - type: Transform - - uid: 1346 - components: - - pos: 17.5,-9.5 - parent: 1 - type: Transform - - uid: 1347 - components: - - pos: 15.5,-15.5 - parent: 1 - type: Transform - - uid: 1348 - components: - - pos: 11.5,-7.5 - parent: 1 - type: Transform - - uid: 1349 - components: - - pos: 17.5,-7.5 - parent: 1 - type: Transform - - uid: 1350 - components: - - pos: 17.5,-3.5 - parent: 1 - type: Transform - - uid: 1351 - components: - - pos: 17.5,-2.5 - parent: 1 - type: Transform - - uid: 1352 - components: - - pos: 17.5,-1.5 - parent: 1 - type: Transform - - uid: 1353 - components: - - pos: 11.5,-1.5 - parent: 1 - type: Transform - - uid: 1354 - components: - - pos: 11.5,-2.5 - parent: 1 - type: Transform - - uid: 1355 - components: - - pos: 11.5,-3.5 - parent: 1 - type: Transform - - uid: 1356 - components: - - pos: 9.5,0.5 - parent: 1 - type: Transform - - uid: 1357 - components: - - pos: 8.5,0.5 - parent: 1 - type: Transform - - uid: 1358 - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform - - uid: 1359 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 1360 - components: - - pos: -2.5,-1.5 - parent: 1 - type: Transform - - uid: 1361 - components: - - pos: 31.5,-1.5 - parent: 1 - type: Transform - - uid: 1362 - components: - - pos: -2.5,-3.5 - parent: 1 - type: Transform - - uid: 1363 - components: - - pos: 13.5,-15.5 - parent: 1 - type: Transform - - uid: 1364 - components: - - pos: 11.5,-9.5 - parent: 1 - type: Transform - - uid: 1365 - components: - - pos: 11.5,-13.5 - parent: 1 - type: Transform -- proto: BlastDoorExterior2Open - entities: - - uid: 417 - components: - - pos: 36.5,-5.5 - parent: 1 - type: Transform - - uid: 1367 - components: - - pos: 43.5,-3.5 - parent: 1 - type: Transform - - uid: 1368 - components: - - pos: 42.5,-3.5 - parent: 1 - type: Transform - - uid: 1369 - components: - - pos: 40.5,-5.5 - parent: 1 - type: Transform - - uid: 1370 - components: - - pos: 43.5,-2.5 - parent: 1 - type: Transform - - uid: 1371 - components: - - pos: 45.5,-0.5 - parent: 1 - type: Transform - - uid: 1372 - components: - - pos: 45.5,1.5 - parent: 1 - type: Transform - - uid: 1373 - components: - - pos: 45.5,2.5 - parent: 1 - type: Transform - - uid: 1374 - components: - - pos: 41.5,6.5 - parent: 1 - type: Transform - - uid: 1375 - components: - - pos: 41.5,7.5 - parent: 1 - type: Transform - - uid: 1376 - components: - - pos: 40.5,7.5 - parent: 1 - type: Transform - - uid: 1377 - components: - - pos: 38.5,9.5 - parent: 1 - type: Transform -- proto: BlastDoorOpen - entities: - - uid: 494 - components: - - pos: 20.5,11.5 - parent: 1 - type: Transform - - links: - - 70 - type: DeviceLinkSink - - uid: 495 - components: - - pos: 22.5,11.5 - parent: 1 - type: Transform - - links: - - 70 - type: DeviceLinkSink - - uid: 2389 - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform - - links: - - 2393 - type: DeviceLinkSink - - uid: 2390 - components: - - pos: 6.5,0.5 - parent: 1 - type: Transform - - links: - - 2394 - type: DeviceLinkSink - - uid: 2391 - components: - - pos: 20.5,0.5 - parent: 1 - type: Transform - - links: - - 2395 - type: DeviceLinkSink - - uid: 2392 - components: - - pos: 26.5,0.5 - parent: 1 - type: Transform - - links: - - 2396 - type: DeviceLinkSink -- proto: BlockGameArcade - entities: - - uid: 1388 - components: - - pos: -1.5,10.5 - parent: 1 - type: Transform -- proto: BookChemicalCompendium - entities: - - uid: 782 - components: - - pos: 12.54523,8.543186 - parent: 1 - type: Transform -- proto: BookshelfFilled - entities: - - uid: 2625 - components: - - pos: 10.5,9.5 - parent: 1 - type: Transform - - uid: 2626 - components: - - pos: 6.5,9.5 - parent: 1 - type: Transform -- proto: BoxCartridgeCap - entities: - - uid: 2584 - components: - - flags: InContainer - type: MetaData - - parent: 2580 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2585 - components: - - flags: InContainer - type: MetaData - - parent: 2580 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxDonkSoftBox - entities: - - uid: 2583 - components: - - flags: InContainer - type: MetaData - - parent: 2580 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2589 - components: - - flags: InContainer - type: MetaData - - parent: 2580 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxFlashbang - entities: - - uid: 252 - components: - - flags: InContainer - type: MetaData - - parent: 162 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxFolderBlue - entities: - - uid: 2579 - components: - - pos: 14.420858,-14.334344 - parent: 1 - type: Transform -- proto: BoxFolderRed - entities: - - uid: 2578 - components: - - pos: 14.748983,-14.568719 - parent: 1 - type: Transform -- proto: BoxLethalshot - entities: - - uid: 1114 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1115 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxMagazinePistol - entities: - - uid: 746 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxMagazineRifle - entities: - - uid: 1112 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1149 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxMouthSwab - entities: - - uid: 549 - components: - - flags: InContainer - type: MetaData - - parent: 577 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 563 - components: - - flags: InContainer - type: MetaData - - parent: 1296 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxShotgunIncendiary - entities: - - uid: 1116 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1117 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxShotgunSlug - entities: - - uid: 1110 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1111 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxZiptie - entities: - - uid: 406 - components: - - flags: InContainer - type: MetaData - - parent: 162 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: Bucket - entities: - - uid: 423 - components: - - flags: InContainer - type: MetaData - - parent: 577 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 547 - components: - - flags: InContainer - type: MetaData - - parent: 577 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 554 - components: - - flags: InContainer - type: MetaData - - parent: 1296 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 557 - components: - - flags: InContainer - type: MetaData - - parent: 1296 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ButchCleaver - entities: - - uid: 1256 - components: - - flags: InContainer - type: MetaData - - parent: 573 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: CableApcExtension - entities: - - uid: 158 - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform - - uid: 2050 - components: - - pos: -6.5,-3.5 - parent: 1 - type: Transform - - uid: 2059 - components: - - pos: -7.5,-3.5 - parent: 1 - type: Transform - - uid: 2067 - components: - - pos: 11.5,5.5 - parent: 1 - type: Transform - - uid: 2069 - components: - - pos: 10.5,5.5 - parent: 1 - type: Transform - - uid: 2070 - components: - - pos: 9.5,5.5 - parent: 1 - type: Transform - - uid: 2071 - components: - - pos: 8.5,5.5 - parent: 1 - type: Transform - - uid: 2072 - components: - - pos: 7.5,5.5 - parent: 1 - type: Transform - - uid: 2073 - components: - - pos: 6.5,5.5 - parent: 1 - type: Transform - - uid: 2074 - components: - - pos: 5.5,5.5 - parent: 1 - type: Transform - - uid: 2075 - components: - - pos: 4.5,5.5 - parent: 1 - type: Transform - - uid: 2076 - components: - - pos: 3.5,5.5 - parent: 1 - type: Transform - - uid: 2077 - components: - - pos: 2.5,5.5 - parent: 1 - type: Transform - - uid: 2078 - components: - - pos: 1.5,5.5 - parent: 1 - type: Transform - - uid: 2079 - components: - - pos: 0.5,5.5 - parent: 1 - type: Transform - - uid: 2080 - components: - - pos: -0.5,5.5 - parent: 1 - type: Transform - - uid: 2081 - components: - - pos: -1.5,5.5 - parent: 1 - type: Transform - - uid: 2082 - components: - - pos: -2.5,5.5 - parent: 1 - type: Transform - - uid: 2083 - components: - - pos: -2.5,6.5 - parent: 1 - type: Transform - - uid: 2084 - components: - - pos: -2.5,7.5 - parent: 1 - type: Transform - - uid: 2085 - components: - - pos: -2.5,8.5 - parent: 1 - type: Transform - - uid: 2086 - components: - - pos: -2.5,9.5 - parent: 1 - type: Transform - - uid: 2087 - components: - - pos: -1.5,9.5 - parent: 1 - type: Transform - - uid: 2088 - components: - - pos: -0.5,9.5 - parent: 1 - type: Transform - - uid: 2089 - components: - - pos: 0.5,9.5 - parent: 1 - type: Transform - - uid: 2090 - components: - - pos: 1.5,9.5 - parent: 1 - type: Transform - - uid: 2091 - components: - - pos: 4.5,6.5 - parent: 1 - type: Transform - - uid: 2092 - components: - - pos: 4.5,7.5 - parent: 1 - type: Transform - - uid: 2093 - components: - - pos: 4.5,8.5 - parent: 1 - type: Transform - - uid: 2094 - components: - - pos: 4.5,9.5 - parent: 1 - type: Transform - - uid: 2095 - components: - - pos: 5.5,9.5 - parent: 1 - type: Transform - - uid: 2096 - components: - - pos: 6.5,9.5 - parent: 1 - type: Transform - - uid: 2097 - components: - - pos: 8.5,6.5 - parent: 1 - type: Transform - - uid: 2098 - components: - - pos: 8.5,7.5 - parent: 1 - type: Transform - - uid: 2099 - components: - - pos: 8.5,8.5 - parent: 1 - type: Transform - - uid: 2100 - components: - - pos: 8.5,9.5 - parent: 1 - type: Transform - - uid: 2101 - components: - - pos: 9.5,9.5 - parent: 1 - type: Transform - - uid: 2102 - components: - - pos: 10.5,9.5 - parent: 1 - type: Transform - - uid: 2103 - components: - - pos: -5.5,0.5 - parent: 1 - type: Transform - - uid: 2104 - components: - - pos: -5.5,1.5 - parent: 1 - type: Transform - - uid: 2105 - components: - - pos: -5.5,2.5 - parent: 1 - type: Transform - - uid: 2106 - components: - - pos: -4.5,2.5 - parent: 1 - type: Transform - - uid: 2107 - components: - - pos: -3.5,2.5 - parent: 1 - type: Transform - - uid: 2108 - components: - - pos: -3.5,1.5 - parent: 1 - type: Transform - - uid: 2109 - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform - - uid: 2110 - components: - - pos: -3.5,-0.5 - parent: 1 - type: Transform - - uid: 2111 - components: - - pos: -3.5,-1.5 - parent: 1 - type: Transform - - uid: 2112 - components: - - pos: -3.5,-2.5 - parent: 1 - type: Transform - - uid: 2113 - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform - - uid: 2114 - components: - - pos: -6.5,2.5 - parent: 1 - type: Transform - - uid: 2115 - components: - - pos: -7.5,2.5 - parent: 1 - type: Transform - - uid: 2116 - components: - - pos: -8.5,2.5 - parent: 1 - type: Transform - - uid: 2117 - components: - - pos: -8.5,3.5 - parent: 1 - type: Transform - - uid: 2118 - components: - - pos: -8.5,4.5 - parent: 1 - type: Transform - - uid: 2119 - components: - - pos: -8.5,5.5 - parent: 1 - type: Transform - - uid: 2120 - components: - - pos: -8.5,6.5 - parent: 1 - type: Transform - - uid: 2121 - components: - - pos: -8.5,7.5 - parent: 1 - type: Transform - - uid: 2122 - components: - - pos: -8.5,8.5 - parent: 1 - type: Transform - - uid: 2123 - components: - - pos: -9.5,2.5 - parent: 1 - type: Transform - - uid: 2124 - components: - - pos: -10.5,2.5 - parent: 1 - type: Transform - - uid: 2125 - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform - - uid: 2126 - components: - - pos: -12.5,2.5 - parent: 1 - type: Transform - - uid: 2127 - components: - - pos: -6.5,-3.5 - parent: 1 - type: Transform - - uid: 2128 - components: - - pos: -7.5,-3.5 - parent: 1 - type: Transform - - uid: 2129 - components: - - pos: -7.5,-2.5 - parent: 1 - type: Transform - - uid: 2130 - components: - - pos: -7.5,-1.5 - parent: 1 - type: Transform - - uid: 2131 - components: - - pos: -7.5,-0.5 - parent: 1 - type: Transform - - uid: 2132 - components: - - pos: -8.5,-3.5 - parent: 1 - type: Transform - - uid: 2133 - components: - - pos: -9.5,-3.5 - parent: 1 - type: Transform - - uid: 2134 - components: - - pos: -10.5,-3.5 - parent: 1 - type: Transform - - uid: 2135 - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform - - uid: 2136 - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform - - uid: 2137 - components: - - pos: -7.5,-5.5 - parent: 1 - type: Transform - - uid: 2138 - components: - - pos: -8.5,-5.5 - parent: 1 - type: Transform - - uid: 2139 - components: - - pos: -8.5,-6.5 - parent: 1 - type: Transform - - uid: 2140 - components: - - pos: -9.5,-6.5 - parent: 1 - type: Transform - - uid: 2141 - components: - - pos: -9.5,-7.5 - parent: 1 - type: Transform - - uid: 2142 - components: - - pos: -9.5,-8.5 - parent: 1 - type: Transform - - uid: 2143 - components: - - pos: -8.5,-8.5 - parent: 1 - type: Transform - - uid: 2144 - components: - - pos: -8.5,-9.5 - parent: 1 - type: Transform - - uid: 2145 - components: - - pos: -7.5,-9.5 - parent: 1 - type: Transform - - uid: 2146 - components: - - pos: -6.5,-9.5 - parent: 1 - type: Transform - - uid: 2147 - components: - - pos: -5.5,-9.5 - parent: 1 - type: Transform - - uid: 2148 - components: - - pos: -4.5,-9.5 - parent: 1 - type: Transform - - uid: 2149 - components: - - pos: -4.5,-8.5 - parent: 1 - type: Transform - - uid: 2150 - components: - - pos: -3.5,-8.5 - parent: 1 - type: Transform - - uid: 2151 - components: - - pos: -3.5,-7.5 - parent: 1 - type: Transform - - uid: 2152 - components: - - pos: -3.5,-6.5 - parent: 1 - type: Transform - - uid: 2153 - components: - - pos: -4.5,-6.5 - parent: 1 - type: Transform - - uid: 2154 - components: - - pos: -6.5,-5.5 - parent: 1 - type: Transform - - uid: 2155 - components: - - pos: -6.5,-6.5 - parent: 1 - type: Transform - - uid: 2156 - components: - - pos: -6.5,-7.5 - parent: 1 - type: Transform - - uid: 2157 - components: - - pos: -6.5,-8.5 - parent: 1 - type: Transform - - uid: 2158 - components: - - pos: 35.5,-2.5 - parent: 1 - type: Transform - - uid: 2160 - components: - - pos: 36.5,-3.5 - parent: 1 - type: Transform - - uid: 2161 - components: - - pos: 36.5,-4.5 - parent: 1 - type: Transform - - uid: 2162 - components: - - pos: 36.5,-5.5 - parent: 1 - type: Transform - - uid: 2163 - components: - - pos: 35.5,-5.5 - parent: 1 - type: Transform - - uid: 2164 - components: - - pos: 37.5,-5.5 - parent: 1 - type: Transform - - uid: 2165 - components: - - pos: 37.5,-6.5 - parent: 1 - type: Transform - - uid: 2166 - components: - - pos: 38.5,-6.5 - parent: 1 - type: Transform - - uid: 2167 - components: - - pos: 38.5,-7.5 - parent: 1 - type: Transform - - uid: 2168 - components: - - pos: 38.5,-8.5 - parent: 1 - type: Transform - - uid: 2169 - components: - - pos: 37.5,-8.5 - parent: 1 - type: Transform - - uid: 2170 - components: - - pos: 37.5,-9.5 - parent: 1 - type: Transform - - uid: 2171 - components: - - pos: 36.5,-9.5 - parent: 1 - type: Transform - - uid: 2172 - components: - - pos: 35.5,-9.5 - parent: 1 - type: Transform - - uid: 2173 - components: - - pos: 34.5,-9.5 - parent: 1 - type: Transform - - uid: 2174 - components: - - pos: 33.5,-9.5 - parent: 1 - type: Transform - - uid: 2175 - components: - - pos: 33.5,-8.5 - parent: 1 - type: Transform - - uid: 2176 - components: - - pos: 32.5,-8.5 - parent: 1 - type: Transform - - uid: 2177 - components: - - pos: 32.5,-7.5 - parent: 1 - type: Transform - - uid: 2178 - components: - - pos: 32.5,-6.5 - parent: 1 - type: Transform - - uid: 2179 - components: - - pos: 33.5,-6.5 - parent: 1 - type: Transform - - uid: 2180 - components: - - pos: 35.5,-5.5 - parent: 1 - type: Transform - - uid: 2181 - components: - - pos: 35.5,-6.5 - parent: 1 - type: Transform - - uid: 2182 - components: - - pos: 35.5,-7.5 - parent: 1 - type: Transform - - uid: 2183 - components: - - pos: 35.5,-8.5 - parent: 1 - type: Transform - - uid: 2184 - components: - - pos: 35.5,-3.5 - parent: 1 - type: Transform - - uid: 2185 - components: - - pos: 34.5,-3.5 - parent: 1 - type: Transform - - uid: 2186 - components: - - pos: 33.5,-3.5 - parent: 1 - type: Transform - - uid: 2187 - components: - - pos: 32.5,-3.5 - parent: 1 - type: Transform - - uid: 2188 - components: - - pos: 37.5,-4.5 - parent: 1 - type: Transform - - uid: 2189 - components: - - pos: 38.5,-4.5 - parent: 1 - type: Transform - - uid: 2190 - components: - - pos: 39.5,-4.5 - parent: 1 - type: Transform - - uid: 2191 - components: - - pos: 40.5,-4.5 - parent: 1 - type: Transform - - uid: 2192 - components: - - pos: 35.5,-1.5 - parent: 1 - type: Transform - - uid: 2193 - components: - - pos: 34.5,-1.5 - parent: 1 - type: Transform - - uid: 2194 - components: - - pos: 33.5,-1.5 - parent: 1 - type: Transform - - uid: 2195 - components: - - pos: 32.5,-1.5 - parent: 1 - type: Transform - - uid: 2196 - components: - - pos: 39.5,2.5 - parent: 1 - type: Transform - - uid: 2197 - components: - - pos: 38.5,2.5 - parent: 1 - type: Transform - - uid: 2198 - components: - - pos: 38.5,3.5 - parent: 1 - type: Transform - - uid: 2199 - components: - - pos: 38.5,4.5 - parent: 1 - type: Transform - - uid: 2200 - components: - - pos: 38.5,5.5 - parent: 1 - type: Transform - - uid: 2201 - components: - - pos: 38.5,6.5 - parent: 1 - type: Transform - - uid: 2202 - components: - - pos: 38.5,7.5 - parent: 1 - type: Transform - - uid: 2203 - components: - - pos: 39.5,5.5 - parent: 1 - type: Transform - - uid: 2204 - components: - - pos: 40.5,5.5 - parent: 1 - type: Transform - - uid: 2205 - components: - - pos: 41.5,5.5 - parent: 1 - type: Transform - - uid: 2206 - components: - - pos: 41.5,4.5 - parent: 1 - type: Transform - - uid: 2207 - components: - - pos: 40.5,2.5 - parent: 1 - type: Transform - - uid: 2208 - components: - - pos: 40.5,1.5 - parent: 1 - type: Transform - - uid: 2209 - components: - - pos: 41.5,1.5 - parent: 1 - type: Transform - - uid: 2210 - components: - - pos: 42.5,1.5 - parent: 1 - type: Transform - - uid: 2211 - components: - - pos: 43.5,1.5 - parent: 1 - type: Transform - - uid: 2212 - components: - - pos: 44.5,1.5 - parent: 1 - type: Transform - - uid: 2213 - components: - - pos: 38.5,1.5 - parent: 1 - type: Transform - - uid: 2214 - components: - - pos: 38.5,0.5 - parent: 1 - type: Transform - - uid: 2215 - components: - - pos: 38.5,-0.5 - parent: 1 - type: Transform - - uid: 2216 - components: - - pos: 39.5,-0.5 - parent: 1 - type: Transform - - uid: 2217 - components: - - pos: 40.5,-0.5 - parent: 1 - type: Transform - - uid: 2218 - components: - - pos: 41.5,-0.5 - parent: 1 - type: Transform - - uid: 2219 - components: - - pos: 42.5,-0.5 - parent: 1 - type: Transform - - uid: 2220 - components: - - pos: 43.5,-0.5 - parent: 1 - type: Transform - - uid: 2221 - components: - - pos: 42.5,-1.5 - parent: 1 - type: Transform - - uid: 2222 - components: - - pos: 37.5,1.5 - parent: 1 - type: Transform - - uid: 2223 - components: - - pos: 36.5,1.5 - parent: 1 - type: Transform - - uid: 2224 - components: - - pos: 35.5,1.5 - parent: 1 - type: Transform - - uid: 2225 - components: - - pos: 34.5,1.5 - parent: 1 - type: Transform - - uid: 2226 - components: - - pos: 33.5,1.5 - parent: 1 - type: Transform - - uid: 2227 - components: - - pos: 32.5,1.5 - parent: 1 - type: Transform - - uid: 2230 - components: - - pos: 35.5,4.5 - parent: 1 - type: Transform - - uid: 2231 - components: - - pos: 36.5,4.5 - parent: 1 - type: Transform - - uid: 2233 - components: - - pos: 35.5,5.5 - parent: 1 - type: Transform - - uid: 2234 - components: - - pos: 34.5,5.5 - parent: 1 - type: Transform - - uid: 2235 - components: - - pos: 33.5,5.5 - parent: 1 - type: Transform - - uid: 2236 - components: - - pos: 32.5,5.5 - parent: 1 - type: Transform - - uid: 2237 - components: - - pos: 35.5,3.5 - parent: 1 - type: Transform - - uid: 2238 - components: - - pos: 34.5,3.5 - parent: 1 - type: Transform - - uid: 2239 - components: - - pos: 33.5,3.5 - parent: 1 - type: Transform - - uid: 2240 - components: - - pos: 32.5,3.5 - parent: 1 - type: Transform - - uid: 2242 - components: - - pos: 23.5,3.5 - parent: 1 - type: Transform - - uid: 2243 - components: - - pos: 23.5,2.5 - parent: 1 - type: Transform - - uid: 2244 - components: - - pos: 22.5,2.5 - parent: 1 - type: Transform - - uid: 2245 - components: - - pos: 21.5,2.5 - parent: 1 - type: Transform - - uid: 2246 - components: - - pos: 20.5,2.5 - parent: 1 - type: Transform - - uid: 2247 - components: - - pos: 19.5,2.5 - parent: 1 - type: Transform - - uid: 2248 - components: - - pos: 24.5,2.5 - parent: 1 - type: Transform - - uid: 2249 - components: - - pos: 25.5,2.5 - parent: 1 - type: Transform - - uid: 2250 - components: - - pos: 26.5,2.5 - parent: 1 - type: Transform - - uid: 2251 - components: - - pos: 27.5,2.5 - parent: 1 - type: Transform - - uid: 2252 - components: - - pos: 28.5,2.5 - parent: 1 - type: Transform - - uid: 2253 - components: - - pos: 29.5,2.5 - parent: 1 - type: Transform - - uid: 2254 - components: - - pos: 23.5,4.5 - parent: 1 - type: Transform - - uid: 2255 - components: - - pos: 22.5,4.5 - parent: 1 - type: Transform - - uid: 2256 - components: - - pos: 21.5,4.5 - parent: 1 - type: Transform - - uid: 2257 - components: - - pos: 21.5,5.5 - parent: 1 - type: Transform - - uid: 2258 - components: - - pos: 21.5,6.5 - parent: 1 - type: Transform - - uid: 2259 - components: - - pos: 21.5,7.5 - parent: 1 - type: Transform - - uid: 2260 - components: - - pos: 21.5,8.5 - parent: 1 - type: Transform - - uid: 2261 - components: - - pos: 21.5,9.5 - parent: 1 - type: Transform - - uid: 2262 - components: - - pos: 20.5,9.5 - parent: 1 - type: Transform - - uid: 2263 - components: - - pos: 20.5,9.5 - parent: 1 - type: Transform - - uid: 2264 - components: - - pos: 20.5,10.5 - parent: 1 - type: Transform - - uid: 2265 - components: - - pos: 22.5,9.5 - parent: 1 - type: Transform - - uid: 2266 - components: - - pos: 22.5,10.5 - parent: 1 - type: Transform - - uid: 2267 - components: - - pos: 31.5,6.5 - parent: 1 - type: Transform - - uid: 2268 - components: - - pos: 30.5,6.5 - parent: 1 - type: Transform - - uid: 2269 - components: - - pos: 29.5,6.5 - parent: 1 - type: Transform - - uid: 2270 - components: - - pos: 28.5,6.5 - parent: 1 - type: Transform - - uid: 2271 - components: - - pos: 27.5,6.5 - parent: 1 - type: Transform - - uid: 2272 - components: - - pos: 26.5,6.5 - parent: 1 - type: Transform - - uid: 2273 - components: - - pos: 25.5,6.5 - parent: 1 - type: Transform - - uid: 2274 - components: - - pos: 24.5,6.5 - parent: 1 - type: Transform - - uid: 2275 - components: - - pos: 24.5,7.5 - parent: 1 - type: Transform - - uid: 2276 - components: - - pos: 24.5,8.5 - parent: 1 - type: Transform - - uid: 2277 - components: - - pos: 24.5,9.5 - parent: 1 - type: Transform - - uid: 2278 - components: - - pos: 24.5,10.5 - parent: 1 - type: Transform - - uid: 2279 - components: - - pos: 26.5,5.5 - parent: 1 - type: Transform - - uid: 2280 - components: - - pos: 26.5,4.5 - parent: 1 - type: Transform - - uid: 2281 - components: - - pos: 29.5,7.5 - parent: 1 - type: Transform - - uid: 2282 - components: - - pos: 29.5,8.5 - parent: 1 - type: Transform - - uid: 2283 - components: - - pos: 29.5,9.5 - parent: 1 - type: Transform - - uid: 2284 - components: - - pos: 28.5,9.5 - parent: 1 - type: Transform - - uid: 2285 - components: - - pos: 27.5,9.5 - parent: 1 - type: Transform - - uid: 2286 - components: - - pos: 26.5,9.5 - parent: 1 - type: Transform - - uid: 2287 - components: - - pos: 30.5,9.5 - parent: 1 - type: Transform - - uid: 2288 - components: - - pos: 31.5,9.5 - parent: 1 - type: Transform - - uid: 2289 - components: - - pos: 32.5,9.5 - parent: 1 - type: Transform - - uid: 2290 - components: - - pos: 33.5,9.5 - parent: 1 - type: Transform - - uid: 2291 - components: - - pos: 34.5,9.5 - parent: 1 - type: Transform - - uid: 2292 - components: - - pos: 35.5,9.5 - parent: 1 - type: Transform - - uid: 2293 - components: - - pos: 35.5,8.5 - parent: 1 - type: Transform - - uid: 2294 - components: - - pos: 15.5,9.5 - parent: 1 - type: Transform - - uid: 2295 - components: - - pos: 16.5,9.5 - parent: 1 - type: Transform - - uid: 2296 - components: - - pos: 16.5,8.5 - parent: 1 - type: Transform - - uid: 2297 - components: - - pos: 16.5,7.5 - parent: 1 - type: Transform - - uid: 2298 - components: - - pos: 16.5,6.5 - parent: 1 - type: Transform - - uid: 2299 - components: - - pos: 16.5,5.5 - parent: 1 - type: Transform - - uid: 2300 - components: - - pos: 16.5,4.5 - parent: 1 - type: Transform - - uid: 2301 - components: - - pos: 16.5,3.5 - parent: 1 - type: Transform - - uid: 2302 - components: - - pos: 16.5,2.5 - parent: 1 - type: Transform - - uid: 2303 - components: - - pos: 15.5,2.5 - parent: 1 - type: Transform - - uid: 2304 - components: - - pos: 14.5,2.5 - parent: 1 - type: Transform - - uid: 2305 - components: - - pos: 13.5,2.5 - parent: 1 - type: Transform - - uid: 2306 - components: - - pos: 12.5,2.5 - parent: 1 - type: Transform - - uid: 2307 - components: - - pos: 13.5,3.5 - parent: 1 - type: Transform - - uid: 2308 - components: - - pos: 13.5,4.5 - parent: 1 - type: Transform - - uid: 2309 - components: - - pos: 13.5,5.5 - parent: 1 - type: Transform - - uid: 2310 - components: - - pos: 13.5,1.5 - parent: 1 - type: Transform - - uid: 2311 - components: - - pos: 17.5,6.5 - parent: 1 - type: Transform - - uid: 2312 - components: - - pos: 18.5,6.5 - parent: 1 - type: Transform - - uid: 2313 - components: - - pos: 18.5,7.5 - parent: 1 - type: Transform - - uid: 2314 - components: - - pos: 18.5,8.5 - parent: 1 - type: Transform - - uid: 2315 - components: - - pos: 18.5,9.5 - parent: 1 - type: Transform - - uid: 2316 - components: - - pos: 18.5,10.5 - parent: 1 - type: Transform - - uid: 2317 - components: - - pos: 14.5,9.5 - parent: 1 - type: Transform - - uid: 2318 - components: - - pos: 13.5,9.5 - parent: 1 - type: Transform - - uid: 2319 - components: - - pos: 13.5,10.5 - parent: 1 - type: Transform - - uid: 2320 - components: - - pos: 13.5,8.5 - parent: 1 - type: Transform - - uid: 2321 - components: - - pos: 13.5,7.5 - parent: 1 - type: Transform - - uid: 2322 - components: - - pos: 12.5,-5.5 - parent: 1 - type: Transform - - uid: 2323 - components: - - pos: 12.5,-4.5 - parent: 1 - type: Transform - - uid: 2324 - components: - - pos: 12.5,-3.5 - parent: 1 - type: Transform - - uid: 2325 - components: - - pos: 12.5,-3.5 - parent: 1 - type: Transform - - uid: 2326 - components: - - pos: 12.5,-2.5 - parent: 1 - type: Transform - - uid: 2327 - components: - - pos: 12.5,-1.5 - parent: 1 - type: Transform - - uid: 2328 - components: - - pos: 12.5,-0.5 - parent: 1 - type: Transform - - uid: 2329 - components: - - pos: 13.5,-0.5 - parent: 1 - type: Transform - - uid: 2330 - components: - - pos: 14.5,-0.5 - parent: 1 - type: Transform - - uid: 2331 - components: - - pos: 15.5,-0.5 - parent: 1 - type: Transform - - uid: 2332 - components: - - pos: 16.5,-0.5 - parent: 1 - type: Transform - - uid: 2333 - components: - - pos: 13.5,-4.5 - parent: 1 - type: Transform - - uid: 2334 - components: - - pos: 14.5,-4.5 - parent: 1 - type: Transform - - uid: 2335 - components: - - pos: 15.5,-4.5 - parent: 1 - type: Transform - - uid: 2336 - components: - - pos: 15.5,-3.5 - parent: 1 - type: Transform - - uid: 2337 - components: - - pos: 15.5,-2.5 - parent: 1 - type: Transform - - uid: 2338 - components: - - pos: 12.5,-6.5 - parent: 1 - type: Transform - - uid: 2339 - components: - - pos: 12.5,-7.5 - parent: 1 - type: Transform - - uid: 2340 - components: - - pos: 12.5,-8.5 - parent: 1 - type: Transform - - uid: 2341 - components: - - pos: 12.5,-9.5 - parent: 1 - type: Transform - - uid: 2342 - components: - - pos: 12.5,-10.5 - parent: 1 - type: Transform - - uid: 2343 - components: - - pos: 12.5,-11.5 - parent: 1 - type: Transform - - uid: 2344 - components: - - pos: 12.5,-12.5 - parent: 1 - type: Transform - - uid: 2345 - components: - - pos: 12.5,-13.5 - parent: 1 - type: Transform - - uid: 2346 - components: - - pos: 13.5,-7.5 - parent: 1 - type: Transform - - uid: 2347 - components: - - pos: 14.5,-7.5 - parent: 1 - type: Transform - - uid: 2348 - components: - - pos: 15.5,-7.5 - parent: 1 - type: Transform - - uid: 2349 - components: - - pos: 15.5,-8.5 - parent: 1 - type: Transform - - uid: 2350 - components: - - pos: 15.5,-9.5 - parent: 1 - type: Transform - - uid: 2351 - components: - - pos: 15.5,-10.5 - parent: 1 - type: Transform - - uid: 2352 - components: - - pos: 15.5,-11.5 - parent: 1 - type: Transform - - uid: 2353 - components: - - pos: 15.5,-12.5 - parent: 1 - type: Transform - - uid: 2354 - components: - - pos: 15.5,-13.5 - parent: 1 - type: Transform - - uid: 2355 - components: - - pos: 15.5,-14.5 - parent: 1 - type: Transform - - uid: 2356 - components: - - pos: 12.5,-14.5 - parent: 1 - type: Transform - - uid: 2357 - components: - - pos: 13.5,-14.5 - parent: 1 - type: Transform - - uid: 2360 - components: - - pos: 5.5,3.5 - parent: 1 - type: Transform - - uid: 2361 - components: - - pos: 6.5,3.5 - parent: 1 - type: Transform - - uid: 2362 - components: - - pos: 7.5,3.5 - parent: 1 - type: Transform - - uid: 2363 - components: - - pos: 8.5,3.5 - parent: 1 - type: Transform - - uid: 2364 - components: - - pos: 9.5,3.5 - parent: 1 - type: Transform - - uid: 2365 - components: - - pos: 10.5,3.5 - parent: 1 - type: Transform - - uid: 2366 - components: - - pos: 10.5,2.5 - parent: 1 - type: Transform - - uid: 2367 - components: - - pos: 10.5,1.5 - parent: 1 - type: Transform - - uid: 2368 - components: - - pos: 7.5,1.5 - parent: 1 - type: Transform - - uid: 2369 - components: - - pos: 7.5,2.5 - parent: 1 - type: Transform - - uid: 2370 - components: - - pos: 4.5,3.5 - parent: 1 - type: Transform - - uid: 2371 - components: - - pos: 3.5,3.5 - parent: 1 - type: Transform - - uid: 2372 - components: - - pos: 2.5,3.5 - parent: 1 - type: Transform - - uid: 2373 - components: - - pos: 1.5,3.5 - parent: 1 - type: Transform - - uid: 2374 - components: - - pos: 0.5,3.5 - parent: 1 - type: Transform - - uid: 2375 - components: - - pos: 0.5,1.5 - parent: 1 - type: Transform - - uid: 2376 - components: - - pos: 0.5,2.5 - parent: 1 - type: Transform - - uid: 2377 - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform - - uid: 2378 - components: - - pos: 3.5,1.5 - parent: 1 - type: Transform - - uid: 2607 - components: - - pos: -2.5,10.5 - parent: 1 - type: Transform - - uid: 2608 - components: - - pos: -3.5,10.5 - parent: 1 - type: Transform - - uid: 2609 - components: - - pos: -4.5,10.5 - parent: 1 - type: Transform - - uid: 2618 - components: - - pos: 14.5,-6.5 - parent: 1 - type: Transform - - uid: 2630 - components: - - pos: 6.5,0.5 - parent: 1 - type: Transform - - uid: 2631 - components: - - pos: 6.5,1.5 - parent: 1 - type: Transform - - uid: 2632 - components: - - pos: 20.5,1.5 - parent: 1 - type: Transform - - uid: 2633 - components: - - pos: 20.5,0.5 - parent: 1 - type: Transform - - uid: 2634 - components: - - pos: 26.5,1.5 - parent: 1 - type: Transform - - uid: 2635 - components: - - pos: 26.5,0.5 - parent: 1 - type: Transform - - uid: 2636 - components: - - pos: 22.5,11.5 - parent: 1 - type: Transform - - uid: 2637 - components: - - pos: 20.5,11.5 - parent: 1 - type: Transform - - uid: 2640 - components: - - pos: -3.5,9.5 - parent: 1 - type: Transform - - uid: 2641 - components: - - pos: 4.5,10.5 - parent: 1 - type: Transform - - uid: 2643 - components: - - pos: 8.5,10.5 - parent: 1 - type: Transform -- proto: CableHV - entities: - - uid: 669 - components: - - pos: -12.5,-0.5 - parent: 1 - type: Transform - - uid: 691 - components: - - pos: -14.5,-0.5 - parent: 1 - type: Transform - - uid: 699 - components: - - pos: -14.5,-1.5 - parent: 1 - type: Transform - - uid: 701 - components: - - pos: -10.5,1.5 - parent: 1 - type: Transform - - uid: 703 - components: - - pos: -11.5,1.5 - parent: 1 - type: Transform - - uid: 705 - components: - - pos: -12.5,-1.5 - parent: 1 - type: Transform - - uid: 717 - components: - - pos: -13.5,-1.5 - parent: 1 - type: Transform - - uid: 733 - components: - - pos: -12.5,1.5 - parent: 1 - type: Transform - - uid: 737 - components: - - pos: -12.5,0.5 - parent: 1 - type: Transform - - uid: 740 - components: - - pos: -10.5,0.5 - parent: 1 - type: Transform - - uid: 741 - components: - - pos: -11.5,0.5 - parent: 1 - type: Transform - - uid: 797 - components: - - pos: -9.5,1.5 - parent: 1 - type: Transform - - uid: 895 - components: - - pos: -14.5,3.5 - parent: 1 - type: Transform - - uid: 896 - components: - - pos: -13.5,3.5 - parent: 1 - type: Transform - - uid: 897 - components: - - pos: -12.5,3.5 - parent: 1 - type: Transform - - uid: 898 - components: - - pos: -12.5,2.5 - parent: 1 - type: Transform -- proto: CableMV - entities: - - uid: 743 - components: - - pos: -10.5,0.5 - parent: 1 - type: Transform - - uid: 766 - components: - - pos: -10.5,1.5 - parent: 1 - type: Transform - - uid: 767 - components: - - pos: -9.5,1.5 - parent: 1 - type: Transform - - uid: 768 - components: - - pos: -8.5,1.5 - parent: 1 - type: Transform - - uid: 811 - components: - - pos: -1.5,1.5 - parent: 1 - type: Transform - - uid: 812 - components: - - pos: -8.5,6.5 - parent: 1 - type: Transform - - uid: 816 - components: - - pos: -8.5,2.5 - parent: 1 - type: Transform - - uid: 819 - components: - - pos: -8.5,4.5 - parent: 1 - type: Transform - - uid: 820 - components: - - pos: -7.5,1.5 - parent: 1 - type: Transform - - uid: 824 - components: - - pos: -6.5,1.5 - parent: 1 - type: Transform - - uid: 826 - components: - - pos: -5.5,1.5 - parent: 1 - type: Transform - - uid: 968 - components: - - pos: -8.5,3.5 - parent: 1 - type: Transform - - uid: 970 - components: - - pos: -8.5,5.5 - parent: 1 - type: Transform - - uid: 1072 - components: - - pos: 10.5,8.5 - parent: 1 - type: Transform - - uid: 1219 - components: - - pos: 1.5,6.5 - parent: 1 - type: Transform - - uid: 1220 - components: - - pos: -3.5,-0.5 - parent: 1 - type: Transform - - uid: 1224 - components: - - pos: 0.5,8.5 - parent: 1 - type: Transform - - uid: 1225 - components: - - pos: -3.5,-2.5 - parent: 1 - type: Transform - - uid: 1226 - components: - - pos: -3.5,-1.5 - parent: 1 - type: Transform - - uid: 1227 - components: - - pos: 5.5,8.5 - parent: 1 - type: Transform - - uid: 1234 - components: - - pos: 2.5,6.5 - parent: 1 - type: Transform - - uid: 1237 - components: - - pos: 8.5,8.5 - parent: 1 - type: Transform - - uid: 1238 - components: - - pos: 2.5,8.5 - parent: 1 - type: Transform - - uid: 1239 - components: - - pos: 1.5,8.5 - parent: 1 - type: Transform - - uid: 1242 - components: - - pos: 3.5,8.5 - parent: 1 - type: Transform - - uid: 1258 - components: - - pos: 4.5,8.5 - parent: 1 - type: Transform - - uid: 1259 - components: - - pos: 7.5,8.5 - parent: 1 - type: Transform - - uid: 1260 - components: - - pos: 6.5,8.5 - parent: 1 - type: Transform - - uid: 1261 - components: - - pos: 7.5,9.5 - parent: 1 - type: Transform - - uid: 1262 - components: - - pos: 3.5,9.5 - parent: 1 - type: Transform - - uid: 1263 - components: - - pos: 6.5,7.5 - parent: 1 - type: Transform - - uid: 1265 - components: - - pos: 0.5,3.5 - parent: 1 - type: Transform - - uid: 1266 - components: - - pos: 0.5,2.5 - parent: 1 - type: Transform - - uid: 1267 - components: - - pos: 0.5,5.5 - parent: 1 - type: Transform - - uid: 1268 - components: - - pos: 0.5,4.5 - parent: 1 - type: Transform - - uid: 1269 - components: - - pos: 0.5,6.5 - parent: 1 - type: Transform - - uid: 1270 - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform - - uid: 1285 - components: - - pos: 0.5,1.5 - parent: 1 - type: Transform - - uid: 1286 - components: - - pos: -4.5,1.5 - parent: 1 - type: Transform - - uid: 1287 - components: - - pos: -8.5,7.5 - parent: 1 - type: Transform - - uid: 1288 - components: - - pos: -3.5,1.5 - parent: 1 - type: Transform - - uid: 1289 - components: - - pos: -2.5,1.5 - parent: 1 - type: Transform - - uid: 1290 - components: - - pos: -0.5,1.5 - parent: 1 - type: Transform - - uid: 1301 - components: - - pos: -7.5,-3.5 - parent: 1 - type: Transform - - uid: 1302 - components: - - pos: -7.5,0.5 - parent: 1 - type: Transform - - uid: 1303 - components: - - pos: -7.5,-1.5 - parent: 1 - type: Transform - - uid: 1304 - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform - - uid: 1305 - components: - - pos: -7.5,-0.5 - parent: 1 - type: Transform - - uid: 1306 - components: - - pos: -7.5,-2.5 - parent: 1 - type: Transform - - uid: 1325 - components: - - pos: 0.5,6.5 - parent: 1 - type: Transform - - uid: 1326 - components: - - pos: 6.5,6.5 - parent: 1 - type: Transform - - uid: 1595 - components: - - pos: 13.5,-5.5 - parent: 1 - type: Transform - - uid: 1759 - components: - - pos: 9.5,8.5 - parent: 1 - type: Transform - - uid: 1760 - components: - - pos: 10.5,6.5 - parent: 1 - type: Transform - - uid: 1761 - components: - - pos: 10.5,7.5 - parent: 1 - type: Transform - - uid: 1762 - components: - - pos: 1.5,9.5 - parent: 1 - type: Transform - - uid: 1763 - components: - - pos: 1.5,10.5 - parent: 1 - type: Transform - - uid: 1764 - components: - - pos: 1.5,11.5 - parent: 1 - type: Transform - - uid: 1765 - components: - - pos: -0.5,8.5 - parent: 1 - type: Transform - - uid: 1766 - components: - - pos: -1.5,8.5 - parent: 1 - type: Transform - - uid: 1767 - components: - - pos: -2.5,8.5 - parent: 1 - type: Transform - - uid: 1768 - components: - - pos: -3.5,8.5 - parent: 1 - type: Transform - - uid: 1769 - components: - - pos: -3.5,7.5 - parent: 1 - type: Transform - - uid: 1770 - components: - - pos: -2.5,9.5 - parent: 1 - type: Transform - - uid: 1771 - components: - - pos: -2.5,10.5 - parent: 1 - type: Transform - - uid: 1772 - components: - - pos: -2.5,11.5 - parent: 1 - type: Transform - - uid: 1773 - components: - - pos: -3.5,10.5 - parent: 1 - type: Transform - - uid: 1774 - components: - - pos: -4.5,10.5 - parent: 1 - type: Transform - - uid: 1775 - components: - - pos: -4.5,11.5 - parent: 1 - type: Transform - - uid: 1776 - components: - - pos: -0.5,9.5 - parent: 1 - type: Transform - - uid: 1777 - components: - - pos: -0.5,10.5 - parent: 1 - type: Transform - - uid: 1778 - components: - - pos: -0.5,11.5 - parent: 1 - type: Transform - - uid: 1779 - components: - - pos: 5.5,9.5 - parent: 1 - type: Transform - - uid: 1780 - components: - - pos: 5.5,10.5 - parent: 1 - type: Transform - - uid: 1781 - components: - - pos: 5.5,11.5 - parent: 1 - type: Transform - - uid: 1782 - components: - - pos: 9.5,9.5 - parent: 1 - type: Transform - - uid: 1783 - components: - - pos: 9.5,10.5 - parent: 1 - type: Transform - - uid: 1784 - components: - - pos: 9.5,11.5 - parent: 1 - type: Transform - - uid: 1785 - components: - - pos: 1.5,4.5 - parent: 1 - type: Transform - - uid: 1786 - components: - - pos: 2.5,4.5 - parent: 1 - type: Transform - - uid: 1787 - components: - - pos: 3.5,4.5 - parent: 1 - type: Transform - - uid: 1788 - components: - - pos: 4.5,4.5 - parent: 1 - type: Transform - - uid: 1789 - components: - - pos: 5.5,4.5 - parent: 1 - type: Transform - - uid: 1790 - components: - - pos: 6.5,4.5 - parent: 1 - type: Transform - - uid: 1791 - components: - - pos: 7.5,4.5 - parent: 1 - type: Transform - - uid: 1792 - components: - - pos: 8.5,4.5 - parent: 1 - type: Transform - - uid: 1793 - components: - - pos: 9.5,4.5 - parent: 1 - type: Transform - - uid: 1794 - components: - - pos: 10.5,4.5 - parent: 1 - type: Transform - - uid: 1795 - components: - - pos: 10.5,3.5 - parent: 1 - type: Transform - - uid: 1796 - components: - - pos: 10.5,2.5 - parent: 1 - type: Transform - - uid: 1797 - components: - - pos: 10.5,1.5 - parent: 1 - type: Transform - - uid: 1798 - components: - - pos: 12.5,1.5 - parent: 1 - type: Transform - - uid: 1799 - components: - - pos: 13.5,1.5 - parent: 1 - type: Transform - - uid: 1800 - components: - - pos: 14.5,1.5 - parent: 1 - type: Transform - - uid: 1801 - components: - - pos: 15.5,1.5 - parent: 1 - type: Transform - - uid: 1802 - components: - - pos: 11.5,1.5 - parent: 1 - type: Transform - - uid: 1803 - components: - - pos: 15.5,0.5 - parent: 1 - type: Transform - - uid: 1804 - components: - - pos: 15.5,-0.5 - parent: 1 - type: Transform - - uid: 1805 - components: - - pos: 15.5,-1.5 - parent: 1 - type: Transform - - uid: 1806 - components: - - pos: 15.5,-2.5 - parent: 1 - type: Transform - - uid: 1807 - components: - - pos: 15.5,-3.5 - parent: 1 - type: Transform - - uid: 1808 - components: - - pos: 15.5,-4.5 - parent: 1 - type: Transform - - uid: 1809 - components: - - pos: 12.5,-9.5 - parent: 1 - type: Transform - - uid: 1810 - components: - - pos: 13.5,-4.5 - parent: 1 - type: Transform - - uid: 1811 - components: - - pos: 13.5,-6.5 - parent: 1 - type: Transform - - uid: 1812 - components: - - pos: 13.5,-7.5 - parent: 1 - type: Transform - - uid: 1813 - components: - - pos: 13.5,-8.5 - parent: 1 - type: Transform - - uid: 1814 - components: - - pos: 13.5,-9.5 - parent: 1 - type: Transform - - uid: 1815 - components: - - pos: 14.5,-9.5 - parent: 1 - type: Transform - - uid: 1816 - components: - - pos: 29.5,1.5 - parent: 1 - type: Transform - - uid: 1817 - components: - - pos: 15.5,2.5 - parent: 1 - type: Transform - - uid: 1818 - components: - - pos: 16.5,2.5 - parent: 1 - type: Transform - - uid: 1819 - components: - - pos: 16.5,3.5 - parent: 1 - type: Transform - - uid: 1820 - components: - - pos: 16.5,4.5 - parent: 1 - type: Transform - - uid: 1821 - components: - - pos: 16.5,5.5 - parent: 1 - type: Transform - - uid: 1822 - components: - - pos: 16.5,6.5 - parent: 1 - type: Transform - - uid: 1823 - components: - - pos: 16.5,7.5 - parent: 1 - type: Transform - - uid: 1824 - components: - - pos: 16.5,8.5 - parent: 1 - type: Transform - - uid: 1825 - components: - - pos: 16.5,9.5 - parent: 1 - type: Transform - - uid: 1826 - components: - - pos: 17.5,2.5 - parent: 1 - type: Transform - - uid: 1827 - components: - - pos: 18.5,2.5 - parent: 1 - type: Transform - - uid: 1828 - components: - - pos: 19.5,2.5 - parent: 1 - type: Transform - - uid: 1829 - components: - - pos: 21.5,1.5 - parent: 1 - type: Transform - - uid: 1830 - components: - - pos: 20.5,1.5 - parent: 1 - type: Transform - - uid: 1831 - components: - - pos: 19.5,1.5 - parent: 1 - type: Transform - - uid: 1832 - components: - - pos: 23.5,2.5 - parent: 1 - type: Transform - - uid: 1833 - components: - - pos: 24.5,2.5 - parent: 1 - type: Transform - - uid: 1834 - components: - - pos: 25.5,2.5 - parent: 1 - type: Transform - - uid: 1835 - components: - - pos: 26.5,2.5 - parent: 1 - type: Transform - - uid: 1836 - components: - - pos: 27.5,2.5 - parent: 1 - type: Transform - - uid: 1837 - components: - - pos: 28.5,2.5 - parent: 1 - type: Transform - - uid: 1838 - components: - - pos: 28.5,3.5 - parent: 1 - type: Transform - - uid: 1839 - components: - - pos: 28.5,4.5 - parent: 1 - type: Transform - - uid: 1840 - components: - - pos: 28.5,5.5 - parent: 1 - type: Transform - - uid: 1841 - components: - - pos: 18.5,8.5 - parent: 1 - type: Transform - - uid: 1842 - components: - - pos: 17.5,8.5 - parent: 1 - type: Transform - - uid: 1843 - components: - - pos: 28.5,8.5 - parent: 1 - type: Transform - - uid: 1844 - components: - - pos: 29.5,8.5 - parent: 1 - type: Transform - - uid: 1845 - components: - - pos: 30.5,8.5 - parent: 1 - type: Transform - - uid: 1846 - components: - - pos: 19.5,8.5 - parent: 1 - type: Transform - - uid: 1847 - components: - - pos: 18.5,4.5 - parent: 1 - type: Transform - - uid: 1848 - components: - - pos: 17.5,4.5 - parent: 1 - type: Transform - - uid: 1849 - components: - - pos: 19.5,9.5 - parent: 1 - type: Transform - - uid: 1850 - components: - - pos: 19.5,4.5 - parent: 1 - type: Transform - - uid: 1851 - components: - - pos: 20.5,4.5 - parent: 1 - type: Transform - - uid: 1852 - components: - - pos: 21.5,5.5 - parent: 1 - type: Transform - - uid: 1853 - components: - - pos: 21.5,5.5 - parent: 1 - type: Transform - - uid: 1854 - components: - - pos: 21.5,6.5 - parent: 1 - type: Transform - - uid: 1855 - components: - - pos: 21.5,7.5 - parent: 1 - type: Transform - - uid: 1856 - components: - - pos: 21.5,8.5 - parent: 1 - type: Transform - - uid: 1857 - components: - - pos: 22.5,8.5 - parent: 1 - type: Transform - - uid: 1858 - components: - - pos: 23.5,8.5 - parent: 1 - type: Transform - - uid: 1859 - components: - - pos: 23.5,9.5 - parent: 1 - type: Transform - - uid: 1860 - components: - - pos: 23.5,5.5 - parent: 1 - type: Transform - - uid: 1861 - components: - - pos: 16.5,11.5 - parent: 1 - type: Transform - - uid: 1862 - components: - - pos: 17.5,11.5 - parent: 1 - type: Transform - - uid: 1863 - components: - - pos: 19.5,5.5 - parent: 1 - type: Transform - - uid: 1864 - components: - - pos: 14.5,10.5 - parent: 1 - type: Transform - - uid: 1865 - components: - - pos: 14.5,11.5 - parent: 1 - type: Transform - - uid: 1866 - components: - - pos: 13.5,11.5 - parent: 1 - type: Transform - - uid: 1867 - components: - - pos: -2.5,-1.5 - parent: 1 - type: Transform - - uid: 1868 - components: - - pos: -2.5,-3.5 - parent: 1 - type: Transform - - uid: 1869 - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform - - uid: 1870 - components: - - pos: -8.5,-3.5 - parent: 1 - type: Transform - - uid: 1871 - components: - - pos: -9.5,-3.5 - parent: 1 - type: Transform - - uid: 1872 - components: - - pos: -10.5,-3.5 - parent: 1 - type: Transform - - uid: 1873 - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform - - uid: 1874 - components: - - pos: -11.5,-4.5 - parent: 1 - type: Transform - - uid: 1875 - components: - - pos: -11.5,-5.5 - parent: 1 - type: Transform - - uid: 1876 - components: - - pos: -8.5,8.5 - parent: 1 - type: Transform - - uid: 1877 - components: - - pos: -7.5,8.5 - parent: 1 - type: Transform - - uid: 1878 - components: - - pos: -7.5,9.5 - parent: 1 - type: Transform - - uid: 1879 - components: - - pos: 30.5,6.5 - parent: 1 - type: Transform - - uid: 1880 - components: - - pos: 29.5,6.5 - parent: 1 - type: Transform - - uid: 1881 - components: - - pos: 28.5,6.5 - parent: 1 - type: Transform - - uid: 1882 - components: - - pos: 28.5,7.5 - parent: 1 - type: Transform - - uid: 1883 - components: - - pos: 28.5,9.5 - parent: 1 - type: Transform - - uid: 1884 - components: - - pos: 27.5,9.5 - parent: 1 - type: Transform - - uid: 1885 - components: - - pos: 27.5,10.5 - parent: 1 - type: Transform - - uid: 1886 - components: - - pos: 27.5,11.5 - parent: 1 - type: Transform - - uid: 1887 - components: - - pos: 26.5,11.5 - parent: 1 - type: Transform - - uid: 1888 - components: - - pos: 25.5,11.5 - parent: 1 - type: Transform - - uid: 1889 - components: - - pos: 30.5,9.5 - parent: 1 - type: Transform - - uid: 1890 - components: - - pos: 31.5,9.5 - parent: 1 - type: Transform - - uid: 1891 - components: - - pos: 32.5,9.5 - parent: 1 - type: Transform - - uid: 1892 - components: - - pos: 32.5,10.5 - parent: 1 - type: Transform - - uid: 1893 - components: - - pos: 32.5,11.5 - parent: 1 - type: Transform - - uid: 1894 - components: - - pos: 33.5,11.5 - parent: 1 - type: Transform - - uid: 1895 - components: - - pos: 34.5,11.5 - parent: 1 - type: Transform - - uid: 1896 - components: - - pos: 22.5,2.5 - parent: 1 - type: Transform - - uid: 1897 - components: - - pos: 23.5,0.5 - parent: 1 - type: Transform - - uid: 1898 - components: - - pos: 22.5,0.5 - parent: 1 - type: Transform - - uid: 1899 - components: - - pos: 24.5,0.5 - parent: 1 - type: Transform - - uid: 1900 - components: - - pos: 29.5,2.5 - parent: 1 - type: Transform - - uid: 1901 - components: - - pos: 28.5,0.5 - parent: 1 - type: Transform - - uid: 1902 - components: - - pos: 29.5,0.5 - parent: 1 - type: Transform - - uid: 1903 - components: - - pos: 9.5,1.5 - parent: 1 - type: Transform - - uid: 1904 - components: - - pos: 9.5,0.5 - parent: 1 - type: Transform - - uid: 1905 - components: - - pos: 8.5,0.5 - parent: 1 - type: Transform - - uid: 1906 - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform - - uid: 1907 - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform - - uid: 1908 - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform - - uid: 1909 - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform - - uid: 1910 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 1911 - components: - - pos: 16.5,-3.5 - parent: 1 - type: Transform - - uid: 1912 - components: - - pos: 17.5,-3.5 - parent: 1 - type: Transform - - uid: 1913 - components: - - pos: 17.5,-2.5 - parent: 1 - type: Transform - - uid: 1914 - components: - - pos: 17.5,-1.5 - parent: 1 - type: Transform - - uid: 1915 - components: - - pos: 14.5,-3.5 - parent: 1 - type: Transform - - uid: 1916 - components: - - pos: 13.5,-3.5 - parent: 1 - type: Transform - - uid: 1917 - components: - - pos: 12.5,-3.5 - parent: 1 - type: Transform - - uid: 1918 - components: - - pos: 11.5,-3.5 - parent: 1 - type: Transform - - uid: 1919 - components: - - pos: 11.5,-2.5 - parent: 1 - type: Transform - - uid: 1920 - components: - - pos: 11.5,-1.5 - parent: 1 - type: Transform - - uid: 1921 - components: - - pos: 11.5,-9.5 - parent: 1 - type: Transform - - uid: 1922 - components: - - pos: 11.5,-7.5 - parent: 1 - type: Transform - - uid: 1923 - components: - - pos: 11.5,-8.5 - parent: 1 - type: Transform - - uid: 1924 - components: - - pos: 11.5,-10.5 - parent: 1 - type: Transform - - uid: 1925 - components: - - pos: 11.5,-11.5 - parent: 1 - type: Transform - - uid: 1926 - components: - - pos: 15.5,-9.5 - parent: 1 - type: Transform - - uid: 1927 - components: - - pos: 16.5,-9.5 - parent: 1 - type: Transform - - uid: 1928 - components: - - pos: 17.5,-9.5 - parent: 1 - type: Transform - - uid: 1929 - components: - - pos: 17.5,-8.5 - parent: 1 - type: Transform - - uid: 1930 - components: - - pos: 17.5,-7.5 - parent: 1 - type: Transform - - uid: 1931 - components: - - pos: 17.5,-10.5 - parent: 1 - type: Transform - - uid: 1932 - components: - - pos: 17.5,-11.5 - parent: 1 - type: Transform - - uid: 1933 - components: - - pos: 13.5,-10.5 - parent: 1 - type: Transform - - uid: 1934 - components: - - pos: 13.5,-11.5 - parent: 1 - type: Transform - - uid: 1935 - components: - - pos: 13.5,-12.5 - parent: 1 - type: Transform - - uid: 1936 - components: - - pos: 13.5,-13.5 - parent: 1 - type: Transform - - uid: 1937 - components: - - pos: 11.5,-13.5 - parent: 1 - type: Transform - - uid: 1938 - components: - - pos: 13.5,-15.5 - parent: 1 - type: Transform - - uid: 1939 - components: - - pos: 12.5,-13.5 - parent: 1 - type: Transform - - uid: 1940 - components: - - pos: 13.5,-14.5 - parent: 1 - type: Transform - - uid: 1941 - components: - - pos: 14.5,-13.5 - parent: 1 - type: Transform - - uid: 1942 - components: - - pos: 15.5,-13.5 - parent: 1 - type: Transform - - uid: 1943 - components: - - pos: 16.5,-13.5 - parent: 1 - type: Transform - - uid: 1944 - components: - - pos: 17.5,-13.5 - parent: 1 - type: Transform - - uid: 1945 - components: - - pos: 15.5,-15.5 - parent: 1 - type: Transform - - uid: 1946 - components: - - pos: 15.5,-14.5 - parent: 1 - type: Transform - - uid: 1947 - components: - - pos: 30.5,1.5 - parent: 1 - type: Transform - - uid: 1948 - components: - - pos: 31.5,1.5 - parent: 1 - type: Transform - - uid: 1949 - components: - - pos: 32.5,1.5 - parent: 1 - type: Transform - - uid: 1950 - components: - - pos: 33.5,1.5 - parent: 1 - type: Transform - - uid: 1951 - components: - - pos: 34.5,1.5 - parent: 1 - type: Transform - - uid: 1952 - components: - - pos: 35.5,1.5 - parent: 1 - type: Transform - - uid: 1953 - components: - - pos: 36.5,1.5 - parent: 1 - type: Transform - - uid: 1954 - components: - - pos: 37.5,1.5 - parent: 1 - type: Transform - - uid: 1955 - components: - - pos: 38.5,1.5 - parent: 1 - type: Transform - - uid: 1957 - components: - - pos: 40.5,1.5 - parent: 1 - type: Transform - - uid: 1958 - components: - - pos: 41.5,1.5 - parent: 1 - type: Transform - - uid: 1959 - components: - - pos: 42.5,1.5 - parent: 1 - type: Transform - - uid: 1960 - components: - - pos: 43.5,1.5 - parent: 1 - type: Transform - - uid: 1961 - components: - - pos: 44.5,1.5 - parent: 1 - type: Transform - - uid: 1962 - components: - - pos: 45.5,1.5 - parent: 1 - type: Transform - - uid: 1963 - components: - - pos: 45.5,2.5 - parent: 1 - type: Transform - - uid: 1964 - components: - - pos: 39.5,1.5 - parent: 1 - type: Transform - - uid: 1965 - components: - - pos: 38.5,2.5 - parent: 1 - type: Transform - - uid: 1966 - components: - - pos: 38.5,3.5 - parent: 1 - type: Transform - - uid: 1967 - components: - - pos: 38.5,4.5 - parent: 1 - type: Transform - - uid: 1968 - components: - - pos: 38.5,5.5 - parent: 1 - type: Transform - - uid: 1969 - components: - - pos: 38.5,6.5 - parent: 1 - type: Transform - - uid: 1970 - components: - - pos: 38.5,7.5 - parent: 1 - type: Transform - - uid: 1971 - components: - - pos: 38.5,8.5 - parent: 1 - type: Transform - - uid: 1972 - components: - - pos: 38.5,9.5 - parent: 1 - type: Transform - - uid: 1973 - components: - - pos: 39.5,7.5 - parent: 1 - type: Transform - - uid: 1974 - components: - - pos: 40.5,7.5 - parent: 1 - type: Transform - - uid: 1975 - components: - - pos: 41.5,7.5 - parent: 1 - type: Transform - - uid: 1976 - components: - - pos: 41.5,6.5 - parent: 1 - type: Transform - - uid: 1977 - components: - - pos: 38.5,0.5 - parent: 1 - type: Transform - - uid: 1978 - components: - - pos: 38.5,-0.5 - parent: 1 - type: Transform - - uid: 1979 - components: - - pos: 39.5,-0.5 - parent: 1 - type: Transform - - uid: 1980 - components: - - pos: 40.5,-0.5 - parent: 1 - type: Transform - - uid: 1981 - components: - - pos: 41.5,-0.5 - parent: 1 - type: Transform - - uid: 1982 - components: - - pos: 42.5,-0.5 - parent: 1 - type: Transform - - uid: 1983 - components: - - pos: 43.5,-0.5 - parent: 1 - type: Transform - - uid: 1984 - components: - - pos: 44.5,-0.5 - parent: 1 - type: Transform - - uid: 1985 - components: - - pos: 45.5,-0.5 - parent: 1 - type: Transform - - uid: 1986 - components: - - pos: 43.5,-1.5 - parent: 1 - type: Transform - - uid: 1987 - components: - - pos: 43.5,-2.5 - parent: 1 - type: Transform - - uid: 1988 - components: - - pos: 43.5,-3.5 - parent: 1 - type: Transform - - uid: 1989 - components: - - pos: 42.5,-3.5 - parent: 1 - type: Transform - - uid: 1990 - components: - - pos: 38.5,-1.5 - parent: 1 - type: Transform - - uid: 1991 - components: - - pos: 37.5,-1.5 - parent: 1 - type: Transform - - uid: 1992 - components: - - pos: 36.5,-1.5 - parent: 1 - type: Transform - - uid: 1993 - components: - - pos: 35.5,-1.5 - parent: 1 - type: Transform - - uid: 1994 - components: - - pos: 34.5,-1.5 - parent: 1 - type: Transform - - uid: 1995 - components: - - pos: 33.5,-1.5 - parent: 1 - type: Transform - - uid: 1996 - components: - - pos: 32.5,-1.5 - parent: 1 - type: Transform - - uid: 1997 - components: - - pos: 31.5,-1.5 - parent: 1 - type: Transform - - uid: 1998 - components: - - pos: 35.5,-2.5 - parent: 1 - type: Transform - - uid: 1999 - components: - - pos: 36.5,-5.5 - parent: 1 - type: Transform - - uid: 2000 - components: - - pos: 36.5,-4.5 - parent: 1 - type: Transform - - uid: 2001 - components: - - pos: 36.5,-3.5 - parent: 1 - type: Transform - - uid: 2002 - components: - - pos: 35.5,-3.5 - parent: 1 - type: Transform - - uid: 2003 - components: - - pos: 34.5,-3.5 - parent: 1 - type: Transform - - uid: 2004 - components: - - pos: 33.5,-3.5 - parent: 1 - type: Transform - - uid: 2005 - components: - - pos: 32.5,-3.5 - parent: 1 - type: Transform - - uid: 2006 - components: - - pos: 31.5,-3.5 - parent: 1 - type: Transform - - uid: 2007 - components: - - pos: 37.5,-4.5 - parent: 1 - type: Transform - - uid: 2008 - components: - - pos: 38.5,-4.5 - parent: 1 - type: Transform - - uid: 2009 - components: - - pos: 39.5,-4.5 - parent: 1 - type: Transform - - uid: 2010 - components: - - pos: 40.5,-4.5 - parent: 1 - type: Transform - - uid: 2011 - components: - - pos: 40.5,-5.5 - parent: 1 - type: Transform - - uid: 2012 - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform - - uid: 2013 - components: - - pos: -7.5,-5.5 - parent: 1 - type: Transform - - uid: 2022 - components: - - pos: 12.5,-5.5 - parent: 1 - type: Transform - - uid: 2053 - components: - - pos: 10.5,5.5 - parent: 1 - type: Transform - - uid: 2054 - components: - - pos: -5.5,0.5 - parent: 1 - type: Transform - - uid: 2055 - components: - - pos: 11.5,5.5 - parent: 1 - type: Transform - - uid: 2060 - components: - - pos: -6.5,-3.5 - parent: 1 - type: Transform - - uid: 2062 - components: - - pos: 15.5,9.5 - parent: 1 - type: Transform - - uid: 2063 - components: - - pos: 14.5,9.5 - parent: 1 - type: Transform - - uid: 2064 - components: - - pos: 22.5,5.5 - parent: 1 - type: Transform - - uid: 2065 - components: - - pos: 22.5,1.5 - parent: 1 - type: Transform - - uid: 2066 - components: - - pos: 31.5,6.5 - parent: 1 - type: Transform - - uid: 2068 - components: - - pos: 21.5,4.5 - parent: 1 - type: Transform - - uid: 2159 - components: - - pos: 39.5,2.5 - parent: 1 - type: Transform - - uid: 2228 - components: - - pos: 37.5,3.5 - parent: 1 - type: Transform - - uid: 2229 - components: - - pos: 36.5,3.5 - parent: 1 - type: Transform - - uid: 2232 - components: - - pos: 36.5,4.5 - parent: 1 - type: Transform - - uid: 2241 - components: - - pos: 23.5,3.5 - parent: 1 - type: Transform - - uid: 2359 - components: - - pos: 5.5,3.5 - parent: 1 - type: Transform - - uid: 2616 - components: - - pos: 14.5,-6.5 - parent: 1 - type: Transform - - uid: 2619 - components: - - pos: 5.5,6.5 - parent: 1 - type: Transform - - uid: 2639 - components: - - pos: 9.5,6.5 - parent: 1 - type: Transform -- proto: CableTerminal - entities: - - uid: 718 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,1.5 - parent: 1 - type: Transform - - uid: 719 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,0.5 - parent: 1 - type: Transform -- proto: CannabisSeeds - entities: - - uid: 2015 - components: - - pos: -5.6665354,10.484851 - parent: 1 - type: Transform -- proto: Carpet - entities: - - uid: 985 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-0.5 - parent: 1 - type: Transform - - uid: 1201 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,1.5 - parent: 1 - type: Transform - - uid: 1204 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,4.5 - parent: 1 - type: Transform - - uid: 1205 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,3.5 - parent: 1 - type: Transform - - uid: 1322 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,1.5 - parent: 1 - type: Transform - - uid: 1697 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,9.5 - parent: 1 - type: Transform - - uid: 1698 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,8.5 - parent: 1 - type: Transform - - uid: 1699 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,7.5 - parent: 1 - type: Transform - - uid: 1700 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,6.5 - parent: 1 - type: Transform - - uid: 1701 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,6.5 - parent: 1 - type: Transform - - uid: 1702 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,6.5 - parent: 1 - type: Transform - - uid: 1753 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,0.5 - parent: 1 - type: Transform - - uid: 1754 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,1.5 - parent: 1 - type: Transform - - uid: 1755 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,0.5 - parent: 1 - type: Transform - - uid: 1756 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,1.5 - parent: 1 - type: Transform - - uid: 1757 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-0.5 - parent: 1 - type: Transform - - uid: 1758 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,1.5 - parent: 1 - type: Transform -- proto: CarpetBlack - entities: - - uid: 1213 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,2.5 - parent: 1 - type: Transform - - uid: 1214 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,2.5 - parent: 1 - type: Transform - - uid: 1240 - components: - - pos: 42.5,1.5 - parent: 1 - type: Transform - - uid: 1241 - components: - - pos: 43.5,1.5 - parent: 1 - type: Transform -- proto: CarpetBlue - entities: - - uid: 2544 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-2.5 - parent: 1 - type: Transform -- proto: CarpetGreen - entities: - - uid: 1182 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-1.5 - parent: 1 - type: Transform - - uid: 1190 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-0.5 - parent: 1 - type: Transform - - uid: 1191 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-0.5 - parent: 1 - type: Transform - - uid: 1198 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-1.5 - parent: 1 - type: Transform - - uid: 1207 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,7.5 - parent: 1 - type: Transform - - uid: 1333 - components: - - pos: 37.5,8.5 - parent: 1 - type: Transform -- proto: CarpetOrange - entities: - - uid: 1217 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-4.5 - parent: 1 - type: Transform - - uid: 1218 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-3.5 - parent: 1 - type: Transform -- proto: CarpetPink - entities: - - uid: 1209 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-0.5 - parent: 1 - type: Transform - - uid: 1245 - components: - - pos: 32.5,-1.5 - parent: 1 - type: Transform -- proto: CarpetPurple - entities: - - uid: 1208 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-3.5 - parent: 1 - type: Transform - - uid: 1247 - components: - - pos: 40.5,-4.5 - parent: 1 - type: Transform -- proto: CarpetSBlue - entities: - - uid: 979 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,7.5 - parent: 1 - type: Transform - - uid: 982 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,6.5 - parent: 1 - type: Transform - - uid: 983 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,5.5 - parent: 1 - type: Transform - - uid: 984 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,5.5 - parent: 1 - type: Transform - - uid: 1055 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,6.5 - parent: 1 - type: Transform - - uid: 1319 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,5.5 - parent: 1 - type: Transform -- proto: CartridgeRocket - entities: - - uid: 1123 - components: - - flags: InContainer - type: MetaData - - parent: 157 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1124 - components: - - flags: InContainer - type: MetaData - - parent: 157 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1125 - components: - - flags: InContainer - type: MetaData - - parent: 157 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1126 - components: - - flags: InContainer - type: MetaData - - parent: 157 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1127 - components: - - flags: InContainer - type: MetaData - - parent: 157 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: CartridgeRocketEmp - entities: - - uid: 1141 - components: - - flags: InContainer - type: MetaData - - parent: 113 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1142 - components: - - flags: InContainer - type: MetaData - - parent: 113 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1143 - components: - - flags: InContainer - type: MetaData - - parent: 113 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1144 - components: - - flags: InContainer - type: MetaData - - parent: 113 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1145 - components: - - flags: InContainer - type: MetaData - - parent: 113 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1146 - components: - - flags: InContainer - type: MetaData - - parent: 113 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: Catwalk - entities: - - uid: 980 - components: - - rot: 3.141592653589793 rad - pos: -7.5,10.5 - parent: 1 - type: Transform - - uid: 1153 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-1.5 - parent: 1 - type: Transform - - uid: 1154 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-1.5 - parent: 1 - type: Transform - - uid: 1155 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-1.5 - parent: 1 - type: Transform - - uid: 1156 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 1 - type: Transform - - uid: 1157 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,0.5 - parent: 1 - type: Transform - - uid: 1158 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,1.5 - parent: 1 - type: Transform - - uid: 1159 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,2.5 - parent: 1 - type: Transform - - uid: 1160 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,3.5 - parent: 1 - type: Transform - - uid: 1161 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,3.5 - parent: 1 - type: Transform - - uid: 1162 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,3.5 - parent: 1 - type: Transform - - uid: 1163 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,3.5 - parent: 1 - type: Transform - - uid: 1164 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,2.5 - parent: 1 - type: Transform - - uid: 1165 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,3.5 - parent: 1 - type: Transform - - uid: 1166 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,2.5 - parent: 1 - type: Transform - - uid: 1167 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 1 - type: Transform - - uid: 1168 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,2.5 - parent: 1 - type: Transform - - uid: 1169 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,1.5 - parent: 1 - type: Transform - - uid: 1170 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,1.5 - parent: 1 - type: Transform - - uid: 1171 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,0.5 - parent: 1 - type: Transform - - uid: 1172 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,0.5 - parent: 1 - type: Transform - - uid: 1173 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,1.5 - parent: 1 - type: Transform - - uid: 1174 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,3.5 - parent: 1 - type: Transform - - uid: 1175 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1 - type: Transform - - uid: 1176 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,2.5 - parent: 1 - type: Transform - - uid: 1177 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,1.5 - parent: 1 - type: Transform - - uid: 1178 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,2.5 - parent: 1 - type: Transform - - uid: 1179 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1 - type: Transform - - uid: 1180 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,2.5 - parent: 1 - type: Transform - - uid: 1181 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,1.5 - parent: 1 - type: Transform - - uid: 1184 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,2.5 - parent: 1 - type: Transform - - uid: 1185 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,1.5 - parent: 1 - type: Transform - - uid: 1186 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,2.5 - parent: 1 - type: Transform - - uid: 1187 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,1.5 - parent: 1 - type: Transform - - uid: 1188 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,2.5 - parent: 1 - type: Transform - - uid: 1189 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,1.5 - parent: 1 - type: Transform - - uid: 2497 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,10.5 - parent: 1 - type: Transform -- proto: ChairFolding - entities: - - uid: 1249 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,4.5 - parent: 1 - type: Transform - - uid: 1250 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,3.5 - parent: 1 - type: Transform - - uid: 1390 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,8.5 - parent: 1 - type: Transform - - uid: 1391 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,8.5 - parent: 1 - type: Transform - - uid: 1402 - components: - - rot: 3.141592653589793 rad - pos: -3.5,5.5 - parent: 1 - type: Transform - - uid: 2025 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,10.5 - parent: 1 - type: Transform - - uid: 2026 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,10.5 - parent: 1 - type: Transform -- proto: ChairOfficeLight - entities: - - uid: 212 - components: - - pos: 15.5,-13.5 - parent: 1 - type: Transform - - uid: 545 - components: - - rot: 3.141592653589793 rad - pos: 20.5,6.5 - parent: 1 - type: Transform - - uid: 781 - components: - - pos: 13.5,8.5 - parent: 1 - type: Transform - - uid: 973 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-7.5 - parent: 1 - type: Transform -- proto: ChairPilotSeat - entities: - - uid: 950 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-11.5 - parent: 1 - type: Transform -- proto: CheapLighter - entities: - - uid: 223 - components: - - pos: -1.5569668,8.796368 - parent: 1 - type: Transform -- proto: chem_master - entities: - - uid: 254 - components: - - pos: 12.5,7.5 - parent: 1 - type: Transform -- proto: ChemBag - entities: - - uid: 739 - components: - - pos: 14.531638,8.281025 - parent: 1 - type: Transform -- proto: ChemistryHotplate - entities: - - uid: 784 - components: - - pos: 14.5,9.5 - parent: 1 - type: Transform -- proto: CigaretteFilter - entities: - - uid: 2021 - components: - - pos: -1.335717,8.695648 - parent: 1 - type: Transform -- proto: CigaretteMold - entities: - - uid: 130 - components: - - pos: -5.5181174,10.569653 - parent: 1 - type: Transform -- proto: CigarGold - entities: - - uid: 1230 - components: - - pos: 26.771593,4.5470533 - parent: 1 - type: Transform -- proto: CigarGoldSpent - entities: - - uid: 1231 - components: - - pos: 26.318468,3.8126786 - parent: 1 - type: Transform -- proto: CloningPod - entities: - - uid: 1038 - components: - - pos: 17.5,9.5 - parent: 1 - type: Transform - - links: - - 1035 - type: DeviceLinkSink -- proto: ClothingBackpackDuffelSurgeryFilled - entities: - - uid: 783 - components: - - pos: 12.51398,8.574436 - parent: 1 - type: Transform -- proto: ClothingBeltPlantFilled - entities: - - uid: 711 - components: - - flags: InContainer - type: MetaData - - parent: 577 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1297 - components: - - flags: InContainer - type: MetaData - - parent: 1296 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingBeltUtilityEngineering - entities: - - uid: 607 - components: - - flags: InContainer - type: MetaData - - parent: 727 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 670 - components: - - flags: InContainer - type: MetaData - - parent: 727 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 671 - components: - - flags: InContainer - type: MetaData - - parent: 727 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingEyesGlassesChemical - entities: - - uid: 794 - components: - - pos: 14.479554,7.916441 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesLeather - entities: - - uid: 1414 - components: - - flags: InContainer - type: MetaData - - parent: 1413 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadBandBlack - entities: - - uid: 1417 - components: - - flags: InContainer - type: MetaData - - parent: 1413 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadBandBotany - entities: - - uid: 1428 - components: - - flags: InContainer - type: MetaData - - parent: 1413 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadHatPirateTricord - entities: - - uid: 1425 - components: - - flags: InContainer - type: MetaData - - parent: 1413 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadHelmetRiot - entities: - - uid: 1120 - components: - - pos: 32.538986,5.5931597 - parent: 1 - type: Transform - - uid: 1121 - components: - - pos: 32.538986,5.5931597 - parent: 1 - type: Transform -- proto: ClothingNeckCloakPirateCap - entities: - - uid: 1423 - components: - - flags: InContainer - type: MetaData - - parent: 1413 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterApronBotanist - entities: - - uid: 1427 - components: - - flags: InContainer - type: MetaData - - parent: 1413 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterArmorRiot - entities: - - uid: 1118 - components: - - pos: 32.570236,5.5150347 - parent: 1 - type: Transform - - uid: 1119 - components: - - pos: 32.570236,5.5150347 - parent: 1 - type: Transform -- proto: ClothingOuterCoatBomber - entities: - - uid: 1422 - components: - - flags: InContainer - type: MetaData - - parent: 1413 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingShoesClothwarp - entities: - - uid: 1426 - components: - - flags: InContainer - type: MetaData - - parent: 1413 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingShoesColorBlack - entities: - - uid: 1415 - components: - - flags: InContainer - type: MetaData - - parent: 1413 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1416 - components: - - flags: InContainer - type: MetaData - - parent: 1413 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingShoesTourist - entities: - - uid: 1424 - components: - - flags: InContainer - type: MetaData - - parent: 1413 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtPrisoner - entities: - - uid: 1419 - components: - - flags: InContainer - type: MetaData - - parent: 1413 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1421 - components: - - flags: InContainer - type: MetaData - - parent: 1413 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitPrisoner - entities: - - uid: 1418 - components: - - flags: InContainer - type: MetaData - - parent: 1413 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1420 - components: - - flags: InContainer - type: MetaData - - parent: 1413 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ComputerAlert - entities: - - uid: 960 - components: - - pos: 14.5,-6.5 - parent: 1 - type: Transform -- proto: ComputerCloningConsole - entities: - - uid: 1035 - components: - - pos: 17.5,7.5 - parent: 1 - type: Transform - - linkedPorts: - 1041: - - MedicalScannerSender: MedicalScannerReceiver - 1038: - - CloningPodSender: CloningPodReceiver - type: DeviceLinkSource -- proto: ComputerCrewMonitoring - entities: - - uid: 667 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-12.5 - parent: 1 - type: Transform - - uid: 716 - components: - - pos: 16.5,-6.5 - parent: 1 - type: Transform - - uid: 796 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,5.5 - parent: 1 - type: Transform -- proto: ComputerId - entities: - - uid: 119 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-10.5 - parent: 1 - type: Transform -- proto: ComputerIFF - entities: - - uid: 79 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-11.5 - parent: 1 - type: Transform -- proto: ComputerPowerMonitoring - entities: - - uid: 798 - components: - - rot: 3.141592653589793 rad - pos: -9.5,1.5 - parent: 1 - type: Transform -- proto: ComputerRadar - entities: - - uid: 433 - components: - - pos: 13.5,-0.5 - parent: 1 - type: Transform - - uid: 721 - components: - - pos: 15.5,-6.5 - parent: 1 - type: Transform -- proto: ComputerShuttleSyndie - entities: - - uid: 948 - components: - - desc: Used to pilot the security ship carrier, the empress. - name: security shuttle console - type: MetaData - - pos: 14.5,-10.5 - parent: 1 - type: Transform -- proto: ComputerStationRecords - entities: - - uid: 122 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-9.5 - parent: 1 - type: Transform -- proto: ComputerSurveillanceWirelessCameraMonitor - entities: - - uid: 221 - components: - - name: officer body-cam monitor - type: MetaData - - rot: 3.141592653589793 rad - pos: 13.5,-12.5 - parent: 1 - type: Transform - - uid: 2617 - components: - - name: officer body-cam monitor - type: MetaData - - rot: -1.5707963267948966 rad - pos: 16.5,-7.5 - parent: 1 - type: Transform -- proto: ComputerWallmountWithdrawBankATM - entities: - - uid: 2628 - components: - - pos: 21.5,10.5 - parent: 1 - type: Transform - - containers: - board: !type:Container - ents: [] - bank-ATM-cashSlot: !type:ContainerSlot {} - type: ContainerContainer - - type: ItemSlots -- proto: CrateChemistrySupplies - entities: - - uid: 738 - components: - - pos: 12.5,9.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1497 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateEngineering - entities: - - uid: 727 - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 670 - - 671 - - 607 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateEngineeringAMEJar - entities: - - uid: 203 - components: - - pos: -10.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.734816 - - 6.5262127 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateEngineeringElectricalSupplies - entities: - - uid: 480 - components: - - pos: -10.5,-2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.734816 - - 6.5262127 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateFoodCooking - entities: - - uid: 577 - components: - - pos: 33.5,8.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 549 - - 547 - - 713 - - 423 - - 710 - - 712 - - 711 - - 548 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 1296 - components: - - pos: 2.5,8.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8977377 - - 7.139109 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 707 - - 1297 - - 1298 - - 1299 - - 1300 - - 554 - - 557 - - 563 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateFoodDinnerware - entities: - - uid: 964 - components: - - pos: 27.5,8.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateFreezer - entities: - - uid: 573 - components: - - pos: 35.5,9.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 505 - - 1256 - - 502 - - 1255 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateFunArtSupplies - entities: - - uid: 724 - components: - - pos: -0.5,7.5 - parent: 1 - type: Transform -- proto: CrateFunBoardGames - entities: - - uid: 2638 - components: - - pos: 26.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateFunToyBox - entities: - - uid: 2580 - components: - - pos: -2.5,4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2590 - - 2589 - - 2588 - - 2587 - - 2586 - - 2585 - - 2584 - - 2583 - - 2582 - - 2581 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateMaterialSteel - entities: - - uid: 756 - components: - - pos: -8.5,-2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 757 - - 758 - - 759 - - 760 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateMedicalSupplies - entities: - - uid: 2646 - components: - - pos: 17.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2649 - - 2648 - - 2647 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateSecuritySupplies - entities: - - uid: 162 - components: - - pos: 15.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 164 - - 168 - - 171 - - 228 - - 252 - - 253 - - 257 - - 346 - - 399 - - 406 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateServiceJanitorialSupplies - entities: - - uid: 744 - components: - - pos: -8.5,-1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14972 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateServiceReplacementLights - entities: - - uid: 226 - components: - - pos: -8.5,-0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 1.606311 - - 6.042789 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateTrackingImplants - entities: - - uid: 2575 - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateWeaponSecure - entities: - - uid: 113 - components: - - pos: 31.5,3.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1135 - - 1136 - - 1141 - - 1134 - - 1146 - - 1144 - - 1145 - - 1142 - - 1143 - - 1140 - - 1139 - - 1137 - - 1138 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 157 - components: - - pos: 31.5,4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1130 - - 1132 - - 1133 - - 1125 - - 1122 - - 1123 - - 1124 - - 1127 - - 1126 - - 1129 - - 1128 - - 1131 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrayonBox - entities: - - uid: 2572 - components: - - pos: 33.65975,-2.2685633 - parent: 1 - type: Transform -- proto: CrayonRainbow - entities: - - uid: 455 - components: - - rot: 1.5707963267948966 rad - pos: 33.73433,-2.2831326 - parent: 1 - type: Transform - - uid: 673 - components: - - rot: 1.5707963267948966 rad - pos: 33.624954,-2.3456326 - parent: 1 - type: Transform -- proto: Crematorium - entities: - - uid: 562 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: DefibrillatorCabinetFilled - entities: - - uid: 793 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,6.5 - parent: 1 - type: Transform -- proto: DisposalBend - entities: - - uid: 329 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,9.5 - parent: 1 - type: Transform - - uid: 883 - components: - - rot: 3.141592653589793 rad - pos: -6.5,9.5 - parent: 1 - type: Transform - - uid: 885 - components: - - pos: -6.5,10.5 - parent: 1 - type: Transform - - uid: 2502 - components: - - pos: 37.5,1.5 - parent: 1 - type: Transform - - uid: 2517 - components: - - rot: 3.141592653589793 rad - pos: 24.5,1.5 - parent: 1 - type: Transform -- proto: DisposalJunction - entities: - - uid: 2495 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,9.5 - parent: 1 - type: Transform -- proto: DisposalJunctionFlipped - entities: - - uid: 905 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,9.5 - parent: 1 - type: Transform - - uid: 2484 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,9.5 - parent: 1 - type: Transform -- proto: DisposalPipe - entities: - - uid: 853 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,9.5 - parent: 1 - type: Transform - - uid: 854 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,9.5 - parent: 1 - type: Transform - - uid: 855 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,9.5 - parent: 1 - type: Transform - - uid: 856 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,9.5 - parent: 1 - type: Transform - - uid: 857 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,9.5 - parent: 1 - type: Transform - - uid: 859 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,9.5 - parent: 1 - type: Transform - - uid: 860 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,9.5 - parent: 1 - type: Transform - - uid: 861 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,9.5 - parent: 1 - type: Transform - - uid: 862 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,9.5 - parent: 1 - type: Transform - - uid: 863 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,9.5 - parent: 1 - type: Transform - - uid: 864 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,9.5 - parent: 1 - type: Transform - - uid: 865 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,9.5 - parent: 1 - type: Transform - - uid: 866 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,9.5 - parent: 1 - type: Transform - - uid: 867 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,9.5 - parent: 1 - type: Transform - - uid: 868 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,9.5 - parent: 1 - type: Transform - - uid: 869 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,9.5 - parent: 1 - type: Transform - - uid: 870 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,9.5 - parent: 1 - type: Transform - - uid: 871 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,9.5 - parent: 1 - type: Transform - - uid: 872 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,9.5 - parent: 1 - type: Transform - - uid: 873 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,9.5 - parent: 1 - type: Transform - - uid: 874 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,9.5 - parent: 1 - type: Transform - - uid: 875 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,9.5 - parent: 1 - type: Transform - - uid: 876 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,9.5 - parent: 1 - type: Transform - - uid: 877 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,9.5 - parent: 1 - type: Transform - - uid: 878 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,9.5 - parent: 1 - type: Transform - - uid: 880 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,9.5 - parent: 1 - type: Transform - - uid: 881 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,9.5 - parent: 1 - type: Transform - - uid: 882 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,9.5 - parent: 1 - type: Transform - - uid: 884 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,10.5 - parent: 1 - type: Transform - - uid: 2485 - components: - - rot: 3.141592653589793 rad - pos: -2.5,3.5 - parent: 1 - type: Transform - - uid: 2486 - components: - - rot: 3.141592653589793 rad - pos: -2.5,4.5 - parent: 1 - type: Transform - - uid: 2487 - components: - - rot: 3.141592653589793 rad - pos: -2.5,5.5 - parent: 1 - type: Transform - - uid: 2488 - components: - - rot: 3.141592653589793 rad - pos: -2.5,6.5 - parent: 1 - type: Transform - - uid: 2489 - components: - - rot: 3.141592653589793 rad - pos: -2.5,7.5 - parent: 1 - type: Transform - - uid: 2490 - components: - - rot: 3.141592653589793 rad - pos: -2.5,8.5 - parent: 1 - type: Transform - - uid: 2496 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,10.5 - parent: 1 - type: Transform - - uid: 2503 - components: - - pos: 37.5,-0.5 - parent: 1 - type: Transform - - uid: 2504 - components: - - pos: 37.5,0.5 - parent: 1 - type: Transform - - uid: 2505 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,1.5 - parent: 1 - type: Transform - - uid: 2506 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,1.5 - parent: 1 - type: Transform - - uid: 2507 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,1.5 - parent: 1 - type: Transform - - uid: 2508 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,1.5 - parent: 1 - type: Transform - - uid: 2509 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,1.5 - parent: 1 - type: Transform - - uid: 2510 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,1.5 - parent: 1 - type: Transform - - uid: 2511 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,1.5 - parent: 1 - type: Transform - - uid: 2512 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,1.5 - parent: 1 - type: Transform - - uid: 2513 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,1.5 - parent: 1 - type: Transform - - uid: 2514 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,1.5 - parent: 1 - type: Transform - - uid: 2515 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,1.5 - parent: 1 - type: Transform - - uid: 2516 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,1.5 - parent: 1 - type: Transform - - uid: 2518 - components: - - rot: 3.141592653589793 rad - pos: 24.5,2.5 - parent: 1 - type: Transform - - uid: 2519 - components: - - rot: 3.141592653589793 rad - pos: 24.5,3.5 - parent: 1 - type: Transform - - uid: 2520 - components: - - rot: 3.141592653589793 rad - pos: 24.5,4.5 - parent: 1 - type: Transform - - uid: 2521 - components: - - rot: 3.141592653589793 rad - pos: 24.5,5.5 - parent: 1 - type: Transform - - uid: 2522 - components: - - rot: 3.141592653589793 rad - pos: 24.5,6.5 - parent: 1 - type: Transform - - uid: 2523 - components: - - rot: 3.141592653589793 rad - pos: 24.5,7.5 - parent: 1 - type: Transform - - uid: 2524 - components: - - rot: 3.141592653589793 rad - pos: 24.5,8.5 - parent: 1 - type: Transform -- proto: DisposalTrunk - entities: - - uid: 852 - components: - - pos: 25.5,10.5 - parent: 1 - type: Transform - - uid: 858 - components: - - pos: 18.5,10.5 - parent: 1 - type: Transform - - uid: 1074 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-1.5 - parent: 1 - type: Transform - - uid: 1393 - components: - - rot: 3.141592653589793 rad - pos: -2.5,2.5 - parent: 1 - type: Transform -- proto: DisposalUnit - entities: - - uid: 639 - components: - - pos: 18.5,10.5 - parent: 1 - type: Transform - - uid: 879 - components: - - pos: -2.5,2.5 - parent: 1 - type: Transform - - uid: 886 - components: - - pos: 25.5,10.5 - parent: 1 - type: Transform - - uid: 2525 - components: - - pos: 37.5,-1.5 - parent: 1 - type: Transform -- proto: DogBed - entities: - - uid: 1080 - components: - - pos: 40.5,6.5 - parent: 1 - type: Transform - - sleepAction: invalid - type: HealOnBuckle - - type: HealOnBuckleHealing -- proto: DonkpocketBoxSpawner - entities: - - uid: 2016 - components: - - pos: 28.5,7.5 - parent: 1 - type: Transform -- proto: DresserFilled - entities: - - uid: 1073 - components: - - pos: 41.5,2.5 - parent: 1 - type: Transform - - uid: 1075 - components: - - pos: 37.5,6.5 - parent: 1 - type: Transform - - uid: 1076 - components: - - pos: 10.5,7.5 - parent: 1 - type: Transform - - uid: 1077 - components: - - pos: 6.5,7.5 - parent: 1 - type: Transform - - uid: 1078 - components: - - pos: 41.5,-1.5 - parent: 1 - type: Transform - - uid: 1397 - components: - - pos: -3.5,9.5 - parent: 1 - type: Transform -- proto: EmergencyRollerBedSpawnFolded - entities: - - uid: 533 - components: - - pos: 15.462224,5.56711 - parent: 1 - type: Transform -- proto: EmpGrenade - entities: - - uid: 1134 - components: - - flags: InContainer - type: MetaData - - parent: 113 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1135 - components: - - flags: InContainer - type: MetaData - - parent: 113 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1136 - components: - - flags: InContainer - type: MetaData - - parent: 113 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1137 - components: - - flags: InContainer - type: MetaData - - parent: 113 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1138 - components: - - flags: InContainer - type: MetaData - - parent: 113 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1139 - components: - - flags: InContainer - type: MetaData - - parent: 113 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: EmpressMothershipComputer - entities: - - uid: 118 - components: - - pos: 12.5,-0.5 - parent: 1 - type: Transform - - containers: - ShipyardConsole-targetId: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - board: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- proto: ExGrenade - entities: - - uid: 1128 - components: - - flags: InContainer - type: MetaData - - parent: 157 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1129 - components: - - flags: InContainer - type: MetaData - - parent: 157 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1130 - components: - - flags: InContainer - type: MetaData - - parent: 157 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1131 - components: - - flags: InContainer - type: MetaData - - parent: 157 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1132 - components: - - flags: InContainer - type: MetaData - - parent: 157 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1133 - components: - - flags: InContainer - type: MetaData - - parent: 157 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FaxMachineShip - entities: - - uid: 1956 - components: - - pos: 16.5,-13.5 - parent: 1 - type: Transform -- proto: FireAxeCabinetFilled - entities: - - uid: 1071 - components: - - pos: -6.5,3.5 - parent: 1 - type: Transform -- proto: Firelock - entities: - - uid: 41 - components: - - pos: 8.5,6.5 - parent: 1 - type: Transform - - uid: 63 - components: - - pos: 4.5,6.5 - parent: 1 - type: Transform - - uid: 87 - components: - - pos: 11.5,1.5 - parent: 1 - type: Transform - - uid: 92 - components: - - pos: -0.5,5.5 - parent: 1 - type: Transform - - uid: 96 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,0.5 - parent: 1 - type: Transform - - uid: 140 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 1 - type: Transform - - uid: 206 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,7.5 - parent: 1 - type: Transform - - uid: 207 - components: - - pos: 17.5,2.5 - parent: 1 - type: Transform - - uid: 422 - components: - - pos: -1.5,1.5 - parent: 1 - type: Transform - - uid: 452 - components: - - pos: 23.5,4.5 - parent: 1 - type: Transform - - uid: 499 - components: - - pos: 19.5,4.5 - parent: 1 - type: Transform - - uid: 507 - components: - - rot: 3.141592653589793 rad - pos: 15.5,10.5 - parent: 1 - type: Transform - - uid: 552 - components: - - pos: 36.5,3.5 - parent: 1 - type: Transform - - uid: 561 - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform - - uid: 575 - components: - - pos: 31.5,9.5 - parent: 1 - type: Transform - - uid: 610 - components: - - pos: 35.5,-1.5 - parent: 1 - type: Transform - - uid: 622 - components: - - pos: 38.5,-2.5 - parent: 1 - type: Transform - - uid: 623 - components: - - pos: 30.5,1.5 - parent: 1 - type: Transform - - uid: 633 - components: - - pos: 39.5,-0.5 - parent: 1 - type: Transform - - uid: 642 - components: - - pos: 39.5,1.5 - parent: 1 - type: Transform - - uid: 643 - components: - - pos: 38.5,4.5 - parent: 1 - type: Transform - - uid: 706 - components: - - rot: 3.141592653589793 rad - pos: -7.5,0.5 - parent: 1 - type: Transform -- proto: Fireplace - entities: - - uid: 769 - components: - - pos: 37.5,8.5 - parent: 1 - type: Transform -- proto: FloorDrain - entities: - - uid: 230 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-3.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 569 - components: - - pos: 34.5,9.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures -- proto: FoamCrossbow - entities: - - uid: 2588 - components: - - flags: InContainer - type: MetaData - - parent: 2580 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoamCutlass - entities: - - uid: 2590 - components: - - flags: InContainer - type: MetaData - - parent: 2580 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodBoxDonkpocketDink - entities: - - uid: 2018 - components: - - pos: 2.4868011,10.617168 - parent: 1 - type: Transform -- proto: GasAnalyzer - entities: - - uid: 2610 - components: - - pos: -10.514601,4.4813375 - parent: 1 - type: Transform - - uid: 2611 - components: - - pos: -10.467726,4.4579 - parent: 1 - type: Transform -- proto: GasFilterFlipped - entities: - - uid: 800 - components: - - pos: -7.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 803 - components: - - pos: -7.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: GasMixerFlipped - entities: - - uid: 805 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,4.5 - parent: 1 - type: Transform - - inletTwoConcentration: 0.19999999 - inletOneConcentration: 0.8 - type: GasMixer - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasPassiveVent - entities: - - uid: 330 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,7.5 - parent: 1 - type: Transform - - uid: 696 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,5.5 - parent: 1 - type: Transform - - uid: 848 - components: - - pos: -7.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: GasPipeBend - entities: - - uid: 460 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,6.5 - parent: 1 - type: Transform - - uid: 471 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,8.5 - parent: 1 - type: Transform - - uid: 807 - components: - - rot: 3.141592653589793 rad - pos: -11.5,4.5 - parent: 1 - type: Transform - - uid: 1243 - components: - - pos: -8.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1529 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1530 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1531 - components: - - rot: 3.141592653589793 rad - pos: 5.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1532 - components: - - rot: 3.141592653589793 rad - pos: 6.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1628 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: GasPipeFourway - entities: - - uid: 1480 - components: - - pos: 13.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1510 - components: - - pos: 14.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1632 - components: - - pos: 38.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1660 - components: - - pos: 38.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasPipeStraight - entities: - - uid: 388 - components: - - rot: 3.141592653589793 rad - pos: -7.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 389 - components: - - rot: 3.141592653589793 rad - pos: -7.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 443 - components: - - pos: -9.5,6.5 - parent: 1 - type: Transform - - uid: 445 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,4.5 - parent: 1 - type: Transform - - uid: 546 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,6.5 - parent: 1 - type: Transform - - uid: 582 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,8.5 - parent: 1 - type: Transform - - uid: 777 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,6.5 - parent: 1 - type: Transform - - uid: 806 - components: - - rot: 3.141592653589793 rad - pos: -9.5,5.5 - parent: 1 - type: Transform - - uid: 808 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,6.5 - parent: 1 - type: Transform - - uid: 813 - components: - - pos: -7.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 814 - components: - - pos: -7.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 815 - components: - - pos: -8.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 817 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 818 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 821 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 822 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 823 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 825 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 827 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1202 - components: - - pos: 13.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1203 - components: - - pos: 14.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1211 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1212 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1215 - components: - - pos: 13.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1216 - components: - - pos: 13.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1366 - components: - - rot: 3.141592653589793 rad - pos: 13.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1448 - components: - - pos: -8.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1449 - components: - - pos: -7.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1450 - components: - - pos: -7.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1451 - components: - - pos: -7.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1452 - components: - - pos: -8.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1453 - components: - - pos: -8.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1454 - components: - - pos: -7.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1455 - components: - - pos: -7.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1456 - components: - - pos: -8.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1457 - components: - - pos: -4.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1458 - components: - - pos: -3.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1459 - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1460 - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1461 - components: - - pos: -3.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1462 - components: - - pos: -3.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1463 - components: - - pos: -4.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1464 - components: - - pos: -4.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1465 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1466 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1467 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1469 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1471 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1472 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1474 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1476 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1477 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1478 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1479 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1481 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1482 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1483 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1484 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1485 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1486 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1488 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1489 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1490 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1491 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1492 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1493 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1494 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1495 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1497 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1498 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1499 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1501 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1502 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1504 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1505 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1507 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1508 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1509 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1511 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1512 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1513 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1514 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1515 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1516 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1517 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1519 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1520 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1521 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1523 - components: - - rot: 3.141592653589793 rad - pos: 6.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1524 - components: - - rot: 3.141592653589793 rad - pos: 7.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1527 - components: - - rot: 3.141592653589793 rad - pos: 7.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1528 - components: - - rot: 3.141592653589793 rad - pos: 7.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1533 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1534 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1535 - components: - - rot: 3.141592653589793 rad - pos: 9.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1536 - components: - - rot: 3.141592653589793 rad - pos: 9.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1537 - components: - - rot: 3.141592653589793 rad - pos: 8.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1538 - components: - - rot: 3.141592653589793 rad - pos: 8.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1539 - components: - - rot: 3.141592653589793 rad - pos: 9.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1540 - components: - - rot: 3.141592653589793 rad - pos: 6.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1541 - components: - - rot: 3.141592653589793 rad - pos: 6.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1542 - components: - - rot: 3.141592653589793 rad - pos: 6.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1543 - components: - - rot: 3.141592653589793 rad - pos: 5.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1544 - components: - - rot: 3.141592653589793 rad - pos: 5.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1545 - components: - - rot: 3.141592653589793 rad - pos: 5.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1546 - components: - - rot: 3.141592653589793 rad - pos: 5.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1547 - components: - - pos: 13.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1549 - components: - - pos: 13.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1550 - components: - - pos: 13.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1551 - components: - - rot: 3.141592653589793 rad - pos: 1.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1552 - components: - - rot: 3.141592653589793 rad - pos: 1.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1553 - components: - - pos: 1.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1554 - components: - - pos: 1.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1555 - components: - - pos: 0.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1556 - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1557 - components: - - pos: 0.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1558 - components: - - pos: 1.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1559 - components: - - pos: 1.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1560 - components: - - pos: 0.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1561 - components: - - rot: 3.141592653589793 rad - pos: 0.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1562 - components: - - rot: 3.141592653589793 rad - pos: 0.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1563 - components: - - rot: 3.141592653589793 rad - pos: 0.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1564 - components: - - rot: 3.141592653589793 rad - pos: 0.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1565 - components: - - rot: 3.141592653589793 rad - pos: 1.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1566 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1567 - components: - - pos: 14.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1568 - components: - - pos: 14.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1570 - components: - - pos: 14.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1571 - components: - - pos: 14.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1572 - components: - - pos: 14.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1573 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1574 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1576 - components: - - rot: 3.141592653589793 rad - pos: 13.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1577 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1578 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1579 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1581 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1582 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1583 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1584 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1585 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1586 - components: - - rot: 3.141592653589793 rad - pos: 14.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1587 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1589 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1590 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1591 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1592 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1593 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1594 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1596 - components: - - rot: 3.141592653589793 rad - pos: 20.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1597 - components: - - rot: 3.141592653589793 rad - pos: 20.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1598 - components: - - rot: 3.141592653589793 rad - pos: 20.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1600 - components: - - rot: 3.141592653589793 rad - pos: 20.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1601 - components: - - rot: 3.141592653589793 rad - pos: 20.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1602 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1603 - components: - - rot: 3.141592653589793 rad - pos: 22.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1604 - components: - - rot: 3.141592653589793 rad - pos: 22.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1605 - components: - - rot: 3.141592653589793 rad - pos: 22.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1607 - components: - - rot: 3.141592653589793 rad - pos: 22.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1608 - components: - - rot: 3.141592653589793 rad - pos: 22.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1609 - components: - - rot: 3.141592653589793 rad - pos: 22.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1610 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1611 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1612 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1613 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1615 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1617 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1619 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1620 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1621 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1622 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1623 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1624 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1625 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1626 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1627 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1630 - components: - - pos: 37.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1631 - components: - - pos: 37.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1634 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1636 - components: - - rot: 3.141592653589793 rad - pos: 37.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1638 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1642 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1643 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1644 - components: - - pos: 36.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1645 - components: - - pos: 36.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1646 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1647 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1648 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1649 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1650 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1651 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1652 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1653 - components: - - rot: 3.141592653589793 rad - pos: 38.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1654 - components: - - rot: 3.141592653589793 rad - pos: 38.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1655 - components: - - rot: 3.141592653589793 rad - pos: 38.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1657 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1658 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1659 - components: - - pos: 38.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1661 - components: - - pos: 38.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1662 - components: - - pos: 38.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1663 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1664 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1665 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1666 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1667 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1668 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1670 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1671 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1672 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1673 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1674 - components: - - pos: 26.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1675 - components: - - pos: 26.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1676 - components: - - pos: 26.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1677 - components: - - pos: 26.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1678 - components: - - pos: 26.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1679 - components: - - pos: 27.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1680 - components: - - pos: 27.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1681 - components: - - pos: 27.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1682 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1683 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1684 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1686 - components: - - rot: 3.141592653589793 rad - pos: 33.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1687 - components: - - rot: 3.141592653589793 rad - pos: 33.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1688 - components: - - rot: 3.141592653589793 rad - pos: 33.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1689 - components: - - rot: 3.141592653589793 rad - pos: 34.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1690 - components: - - rot: 3.141592653589793 rad - pos: 33.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1691 - components: - - rot: 3.141592653589793 rad - pos: 34.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1692 - components: - - rot: 3.141592653589793 rad - pos: 33.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1693 - components: - - pos: 14.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1694 - components: - - pos: 14.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1695 - components: - - pos: 14.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1696 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasPipeTJunction - entities: - - uid: 801 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,7.5 - parent: 1 - type: Transform - - uid: 804 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,5.5 - parent: 1 - type: Transform - - uid: 1271 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1272 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1273 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1274 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1275 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1277 - components: - - pos: -3.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1279 - components: - - pos: -4.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1468 - components: - - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1470 - components: - - rot: 3.141592653589793 rad - pos: 4.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1473 - components: - - rot: 3.141592653589793 rad - pos: 7.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1475 - components: - - rot: 3.141592653589793 rad - pos: 10.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1487 - components: - - rot: 3.141592653589793 rad - pos: 22.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1496 - components: - - rot: 3.141592653589793 rad - pos: 1.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1500 - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1503 - components: - - rot: 3.141592653589793 rad - pos: 6.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1506 - components: - - pos: 8.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1518 - components: - - rot: 3.141592653589793 rad - pos: 20.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1522 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1525 - components: - - pos: 6.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1526 - components: - - pos: 7.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1548 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1569 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1580 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1588 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1599 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1606 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1614 - components: - - rot: 3.141592653589793 rad - pos: 33.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1616 - components: - - rot: 3.141592653589793 rad - pos: 35.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1618 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1629 - components: - - rot: 3.141592653589793 rad - pos: 26.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1633 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1635 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1637 - components: - - pos: 36.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1639 - components: - - pos: 36.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1640 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1641 - components: - - rot: 3.141592653589793 rad - pos: 36.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1656 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1669 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1685 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasPort - entities: - - uid: 1244 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasVentPump - entities: - - uid: 1206 - components: - - pos: 22.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1706 - components: - - pos: 26.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1707 - components: - - pos: 34.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1708 - components: - - pos: 38.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1709 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1710 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1711 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1712 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1713 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1714 - components: - - rot: 3.141592653589793 rad - pos: 36.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1715 - components: - - rot: 3.141592653589793 rad - pos: 34.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1716 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1717 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1718 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1719 - components: - - pos: 14.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1720 - components: - - pos: 10.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1721 - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1722 - components: - - pos: 6.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1723 - components: - - pos: 8.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1724 - components: - - pos: 0.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1725 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,2.5 - parent: 1 - type: Transform - - uid: 1726 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-3.5 - parent: 1 - type: Transform - - uid: 1727 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1728 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasVentScrubber - entities: - - uid: 1729 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-3.5 - parent: 1 - type: Transform - - uid: 1730 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1731 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,3.5 - parent: 1 - type: Transform - - uid: 1732 - components: - - pos: 1.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1733 - components: - - pos: 5.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1734 - components: - - pos: 9.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1735 - components: - - pos: 13.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1736 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1737 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1738 - components: - - pos: 20.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1739 - components: - - pos: 27.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1740 - components: - - pos: 35.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1741 - components: - - pos: 33.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1742 - components: - - pos: 37.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1743 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1744 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1745 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1746 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1747 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1748 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1749 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1750 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1751 - components: - - rot: 3.141592653589793 rad - pos: 8.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1752 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: GasVolumePump - entities: - - uid: 1276 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1278 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GeneratorRTG - entities: - - uid: 508 - components: - - pos: -14.5,-1.5 - parent: 1 - type: Transform - - uid: 576 - components: - - pos: -13.5,-1.5 - parent: 1 - type: Transform -- proto: GravityGeneratorMini - entities: - - uid: 46 - components: - - pos: 32.5,-6.5 - parent: 1 - type: Transform - - uid: 74 - components: - - pos: -3.5,-6.5 - parent: 1 - type: Transform -- proto: Grille - entities: - - uid: 43 - components: - - pos: 23.5,8.5 - parent: 1 - type: Transform - - uid: 71 - components: - - pos: 19.5,8.5 - parent: 1 - type: Transform - - uid: 88 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-8.5 - parent: 1 - type: Transform - - uid: 89 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-9.5 - parent: 1 - type: Transform - - uid: 90 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-10.5 - parent: 1 - type: Transform - - uid: 91 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-11.5 - parent: 1 - type: Transform - - uid: 93 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-15.5 - parent: 1 - type: Transform - - uid: 94 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-15.5 - parent: 1 - type: Transform - - uid: 97 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-11.5 - parent: 1 - type: Transform - - uid: 98 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-10.5 - parent: 1 - type: Transform - - uid: 99 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-9.5 - parent: 1 - type: Transform - - uid: 100 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-8.5 - parent: 1 - type: Transform - - uid: 103 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-3.5 - parent: 1 - type: Transform - - uid: 104 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-2.5 - parent: 1 - type: Transform - - uid: 105 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-1.5 - parent: 1 - type: Transform - - uid: 107 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-3.5 - parent: 1 - type: Transform - - uid: 108 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-2.5 - parent: 1 - type: Transform - - uid: 109 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-1.5 - parent: 1 - type: Transform - - uid: 131 - components: - - pos: 11.5,-7.5 - parent: 1 - type: Transform - - uid: 132 - components: - - pos: 17.5,-7.5 - parent: 1 - type: Transform - - uid: 173 - components: - - pos: -4.5,11.5 - parent: 1 - type: Transform - - uid: 175 - components: - - pos: -2.5,11.5 - parent: 1 - type: Transform - - uid: 177 - components: - - pos: -0.5,11.5 - parent: 1 - type: Transform - - uid: 178 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,11.5 - parent: 1 - type: Transform - - uid: 179 - components: - - pos: 1.5,11.5 - parent: 1 - type: Transform - - uid: 183 - components: - - pos: 5.5,11.5 - parent: 1 - type: Transform - - uid: 187 - components: - - pos: 9.5,11.5 - parent: 1 - type: Transform - - uid: 227 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,7.5 - parent: 1 - type: Transform - - uid: 233 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,11.5 - parent: 1 - type: Transform - - uid: 281 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-5.5 - parent: 1 - type: Transform - - uid: 282 - components: - - pos: -7.5,-5.5 - parent: 1 - type: Transform - - uid: 283 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-5.5 - parent: 1 - type: Transform - - uid: 284 - components: - - pos: 3.5,8.5 - parent: 1 - type: Transform - - uid: 285 - components: - - pos: 3.5,9.5 - parent: 1 - type: Transform - - uid: 289 - components: - - pos: 10.5,6.5 - parent: 1 - type: Transform - - uid: 293 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,11.5 - parent: 1 - type: Transform - - uid: 295 - components: - - pos: 6.5,6.5 - parent: 1 - type: Transform - - uid: 300 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,11.5 - parent: 1 - type: Transform - - uid: 303 - components: - - pos: 2.5,6.5 - parent: 1 - type: Transform - - uid: 304 - components: - - pos: 1.5,6.5 - parent: 1 - type: Transform - - uid: 305 - components: - - pos: 0.5,6.5 - parent: 1 - type: Transform - - uid: 310 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,11.5 - parent: 1 - type: Transform - - uid: 314 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,11.5 - parent: 1 - type: Transform - - uid: 317 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,11.5 - parent: 1 - type: Transform - - uid: 318 - components: - - pos: 34.5,11.5 - parent: 1 - type: Transform - - uid: 323 - components: - - pos: 33.5,11.5 - parent: 1 - type: Transform - - uid: 324 - components: - - pos: 32.5,11.5 - parent: 1 - type: Transform - - uid: 328 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-5.5 - parent: 1 - type: Transform - - uid: 332 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-3.5 - parent: 1 - type: Transform - - uid: 333 - components: - - pos: 43.5,-3.5 - parent: 1 - type: Transform - - uid: 334 - components: - - pos: 42.5,-3.5 - parent: 1 - type: Transform - - uid: 339 - components: - - pos: 45.5,2.5 - parent: 1 - type: Transform - - uid: 341 - components: - - pos: 23.5,9.5 - parent: 1 - type: Transform - - uid: 342 - components: - - pos: 45.5,1.5 - parent: 1 - type: Transform - - uid: 344 - components: - - pos: 41.5,7.5 - parent: 1 - type: Transform - - uid: 345 - components: - - pos: 38.5,9.5 - parent: 1 - type: Transform - - uid: 348 - components: - - pos: 41.5,6.5 - parent: 1 - type: Transform - - uid: 349 - components: - - pos: 45.5,-0.5 - parent: 1 - type: Transform - - uid: 362 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 1 - type: Transform - - uid: 364 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 1 - type: Transform - - uid: 369 - components: - - pos: 11.5,4.5 - parent: 1 - type: Transform - - uid: 373 - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform - - uid: 377 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 378 - components: - - pos: 8.5,0.5 - parent: 1 - type: Transform - - uid: 380 - components: - - pos: 9.5,0.5 - parent: 1 - type: Transform - - uid: 381 - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform - - uid: 390 - components: - - pos: 7.5,8.5 - parent: 1 - type: Transform - - uid: 391 - components: - - pos: 7.5,9.5 - parent: 1 - type: Transform - - uid: 427 - components: - - pos: 22.5,0.5 - parent: 1 - type: Transform - - uid: 428 - components: - - pos: 24.5,0.5 - parent: 1 - type: Transform - - uid: 429 - components: - - pos: 23.5,0.5 - parent: 1 - type: Transform - - uid: 430 - components: - - pos: 28.5,0.5 - parent: 1 - type: Transform - - uid: 431 - components: - - pos: 29.5,0.5 - parent: 1 - type: Transform - - uid: 439 - components: - - pos: 19.5,9.5 - parent: 1 - type: Transform - - uid: 442 - components: - - pos: 17.5,1.5 - parent: 1 - type: Transform - - uid: 463 - components: - - pos: 11.5,3.5 - parent: 1 - type: Transform - - uid: 474 - components: - - pos: 23.5,5.5 - parent: 1 - type: Transform - - uid: 497 - components: - - pos: 19.5,5.5 - parent: 1 - type: Transform - - uid: 518 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,6.5 - parent: 1 - type: Transform - - uid: 519 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,6.5 - parent: 1 - type: Transform - - uid: 520 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,7.5 - parent: 1 - type: Transform - - uid: 521 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,8.5 - parent: 1 - type: Transform - - uid: 571 - components: - - pos: 31.5,8.5 - parent: 1 - type: Transform - - uid: 611 - components: - - pos: 40.5,7.5 - parent: 1 - type: Transform - - uid: 612 - components: - - pos: 43.5,-2.5 - parent: 1 - type: Transform - - uid: 613 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-1.5 - parent: 1 - type: Transform - - uid: 715 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 1 - type: Transform - - uid: 828 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,5.5 - parent: 1 - type: Transform - - uid: 829 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,4.5 - parent: 1 - type: Transform - - uid: 830 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,6.5 - parent: 1 - type: Transform - - uid: 831 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,7.5 - parent: 1 - type: Transform - - uid: 832 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,8.5 - parent: 1 - type: Transform - - uid: 833 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,6.5 - parent: 1 - type: Transform - - uid: 834 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,4.5 - parent: 1 - type: Transform - - uid: 835 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,4.5 - parent: 1 - type: Transform - - uid: 847 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,9.5 - parent: 1 - type: Transform - - uid: 951 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-13.5 - parent: 1 - type: Transform - - uid: 953 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-13.5 - parent: 1 - type: Transform - - uid: 959 - components: - - pos: -11.5,-1.5 - parent: 1 - type: Transform - - uid: 2623 - components: - - pos: 9.5,6.5 - parent: 1 - type: Transform - - uid: 2624 - components: - - pos: 5.5,6.5 - parent: 1 - type: Transform -- proto: GroundTobacco - entities: - - uid: 2531 - components: - - pos: 39.289867,6.7888145 - parent: 1 - type: Transform - - uid: 2532 - components: - - pos: 39.289867,6.7888145 - parent: 1 - type: Transform - - uid: 2533 - components: - - pos: 39.289867,6.7888145 - parent: 1 - type: Transform -- proto: GunSafe - entities: - - uid: 678 - components: - - pos: 34.5,4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1110 - - 1112 - - 1111 - - 1115 - - 1102 - - 1149 - - 1116 - - 1117 - - 1101 - - 1104 - - 1105 - - 1114 - - 1103 - - 1099 - - 1095 - - 1108 - - 1148 - - 1106 - - 1107 - - 746 - - 1109 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: GyroscopeSecurity - entities: - - uid: 37 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-8.5 - parent: 1 - type: Transform - - uid: 49 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-8.5 - parent: 1 - type: Transform -- proto: HandheldCrewMonitor - entities: - - uid: 795 - components: - - pos: 13.609124,7.574436 - parent: 1 - type: Transform -- proto: HandheldGPSBasic - entities: - - uid: 1042 - components: - - pos: 14.492559,-0.4183817 - parent: 1 - type: Transform -- proto: HandLabeler - entities: - - uid: 2577 - components: - - pos: 16.622875,-14.052563 - parent: 1 - type: Transform -- proto: HighSecArmoryLocked - entities: - - uid: 1436 - components: - - pos: 36.5,3.5 - parent: 1 - type: Transform -- proto: HoloprojectorSecurity - entities: - - uid: 1257 - components: - - pos: 14.539953,-0.41109586 - parent: 1 - type: Transform - - uid: 1378 - components: - - pos: 14.539953,-0.41109586 - parent: 1 - type: Transform -- proto: HospitalCurtains - entities: - - uid: 1008 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1 - type: Transform - - uid: 1011 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,8.5 - parent: 1 - type: Transform - - uid: 1012 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,4.5 - parent: 1 - type: Transform -- proto: HospitalCurtainsOpen - entities: - - uid: 534 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,3.5 - parent: 1 - type: Transform - - uid: 535 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,3.5 - parent: 1 - type: Transform - - uid: 536 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,5.5 - parent: 1 - type: Transform - - uid: 1010 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,4.5 - parent: 1 - type: Transform - - uid: 2408 - components: - - pos: 36.5,-3.5 - parent: 1 - type: Transform -- proto: HydroponicsToolClippers - entities: - - uid: 712 - components: - - flags: InContainer - type: MetaData - - parent: 577 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1299 - components: - - flags: InContainer - type: MetaData - - parent: 1296 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: HydroponicsToolMiniHoe - entities: - - uid: 710 - components: - - flags: InContainer - type: MetaData - - parent: 577 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1300 - components: - - flags: InContainer - type: MetaData - - parent: 1296 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: HydroponicsToolSpade - entities: - - uid: 713 - components: - - flags: InContainer - type: MetaData - - parent: 577 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1298 - components: - - flags: InContainer - type: MetaData - - parent: 1296 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: hydroponicsTrayAnchored - entities: - - uid: 454 - components: - - pos: 32.5,10.5 - parent: 1 - type: Transform - - uid: 564 - components: - - pos: 34.5,10.5 - parent: 1 - type: Transform - - uid: 574 - components: - - pos: 33.5,10.5 - parent: 1 - type: Transform - - uid: 1246 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,7.5 - parent: 1 - type: Transform - - uid: 1248 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,7.5 - parent: 1 - type: Transform - - uid: 1383 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,7.5 - parent: 1 - type: Transform -- proto: HypoBrigmedic - entities: - - uid: 1054 - components: - - pos: 14.051201,7.5425587 - parent: 1 - type: Transform -- proto: InflatableDoorStack - entities: - - uid: 969 - components: - - pos: -10.461317,4.5630493 - parent: 1 - type: Transform -- proto: InflatableWallStack - entities: - - uid: 143 - components: - - pos: -10.445692,4.5317993 - parent: 1 - type: Transform -- proto: IngotGold1 - entities: - - uid: 1228 - components: - - pos: 26.412218,4.5314283 - parent: 1 - type: Transform - - uid: 1229 - components: - - pos: 26.568468,3.6251786 - parent: 1 - type: Transform -- proto: IntercomSecurity - entities: - - uid: 773 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 1 - type: Transform - - uid: 2032 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,9.5 - parent: 1 - type: Transform - - uid: 2043 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,10.5 - parent: 1 - type: Transform - - uid: 2044 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,10.5 - parent: 1 - type: Transform -- proto: JetpackMiniFilled - entities: - - uid: 1046 - components: - - pos: 14.492559,-0.4183817 - parent: 1 - type: Transform - - uid: 1047 - components: - - pos: 14.492559,-0.4183817 - parent: 1 - type: Transform -- proto: KitchenKnife - entities: - - uid: 1255 - components: - - flags: InContainer - type: MetaData - - parent: 573 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: KitchenMicrowave - entities: - - uid: 583 - components: - - pos: 28.5,10.5 - parent: 1 - type: Transform - - uid: 1396 - components: - - pos: 1.5,10.5 - parent: 1 - type: Transform -- proto: KitchenReagentGrinder - entities: - - uid: 579 - components: - - pos: 26.5,9.5 - parent: 1 - type: Transform - - uid: 785 - components: - - pos: 14.5,8.5 - parent: 1 - type: Transform - - uid: 1395 - components: - - pos: 2.5,9.5 - parent: 1 - type: Transform -- proto: KitchenSpike - entities: - - uid: 572 - components: - - pos: 35.5,8.5 - parent: 1 - type: Transform -- proto: LampGold - entities: - - uid: 723 - components: - - pos: -3.291666,6.9406414 - parent: 1 - type: Transform - - uid: 761 - components: - - pos: 8.330059,10.788727 - parent: 1 - type: Transform - - uid: 774 - components: - - pos: 4.330059,10.788727 - parent: 1 - type: Transform - - uid: 1151 - components: - - rot: 1.5707963267948966 rad - pos: 44.553753,-0.12343812 - parent: 1 - type: Transform - - uid: 1152 - components: - - rot: 1.5707963267948966 rad - pos: 42.538128,2.8453119 - parent: 1 - type: Transform - - uid: 1284 - components: - - pos: 39.750706,6.994379 - parent: 1 - type: Transform - - uid: 1440 - components: - - rot: 1.5707963267948966 rad - pos: 33.343704,-2.0331326 - parent: 1 - type: Transform -- proto: LampInterrogator - entities: - - uid: 485 - components: - - pos: 18.50212,1.850075 - parent: 1 - type: Transform -- proto: LargeBeaker - entities: - - uid: 753 - components: - - pos: -10.941483,-4.6430964 - parent: 1 - type: Transform - - uid: 754 - components: - - pos: -11.015671,-4.433399 - parent: 1 - type: Transform -- proto: Lighter - entities: - - uid: 2591 - components: - - pos: 39.750687,6.377096 - parent: 1 - type: Transform -- proto: LockerBrigmedicFilled - entities: - - uid: 165 - components: - - pos: 42.5,-2.5 - parent: 1 - type: Transform -- proto: LockerEvidence - entities: - - uid: 966 - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 971 - components: - - pos: 3.5,1.5 - parent: 1 - type: Transform - - uid: 1058 - components: - - pos: 4.5,3.5 - parent: 1 - type: Transform - - uid: 2416 - components: - - pos: 2.5,3.5 - parent: 1 - type: Transform - - uid: 2482 - components: - - pos: 4.5,1.5 - parent: 1 - type: Transform -- proto: LockerHeadOfSecurityFilled - entities: - - uid: 126 - components: - - pos: 40.5,4.5 - parent: 1 - type: Transform -- proto: LockerSecurityFilled - entities: - - uid: 728 - components: - - pos: 33.5,-4.5 - parent: 1 - type: Transform - - uid: 729 - components: - - pos: 33.5,-0.5 - parent: 1 - type: Transform - - uid: 730 - components: - - pos: 39.5,-4.5 - parent: 1 - type: Transform -- proto: LockerWardenFilled - entities: - - uid: 672 - components: - - pos: 44.5,2.5 - parent: 1 - type: Transform -- proto: MagazineBoxAntiMateriel - entities: - - uid: 1099 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MagazineBoxAntiMaterielBig - entities: - - uid: 1101 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MagazineBoxMagnum - entities: - - uid: 1102 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MagazineBoxPistol - entities: - - uid: 1104 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1105 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MagazineBoxRifleBig - entities: - - uid: 1103 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MaterialBiomass - entities: - - uid: 1000 - components: - - pos: -5.7886734,-3.1518612 - parent: 1 - type: Transform - - uid: 2647 - components: - - flags: InContainer - type: MetaData - - parent: 2646 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2648 - components: - - flags: InContainer - type: MetaData - - parent: 2646 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2649 - components: - - flags: InContainer - type: MetaData - - parent: 2646 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MedicalBed - entities: - - uid: 503 - components: - - pos: 14.5,3.5 - parent: 1 - type: Transform - - uid: 509 - components: - - pos: 12.5,3.5 - parent: 1 - type: Transform - - uid: 515 - components: - - pos: 14.5,5.5 - parent: 1 - type: Transform -- proto: MedicalScanner - entities: - - uid: 1041 - components: - - pos: 17.5,8.5 - parent: 1 - type: Transform - - links: - - 1035 - type: DeviceLinkSink -- proto: MedkitAdvancedFilled - entities: - - uid: 788 - components: - - pos: 12.51398,4.511936 - parent: 1 - type: Transform - - uid: 789 - components: - - pos: 13.560855,5.496311 - parent: 1 - type: Transform -- proto: MedkitCombatFilled - entities: - - uid: 787 - components: - - pos: 12.404605,5.605686 - parent: 1 - type: Transform -- proto: MedkitRadiationFilled - entities: - - uid: 790 - components: - - pos: 12.842105,5.605686 - parent: 1 - type: Transform -- proto: MedkitToxinFilled - entities: - - uid: 791 - components: - - pos: 12.373355,5.246311 - parent: 1 - type: Transform -- proto: MonkeyCubeBox - entities: - - uid: 502 - components: - - flags: InContainer - type: MetaData - - parent: 573 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 505 - components: - - flags: InContainer - type: MetaData - - parent: 573 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MopBucketFull - entities: - - uid: 2660 - components: - - pos: -10.48646,-3.4617968 - parent: 1 - type: Transform -- proto: MopItem - entities: - - uid: 548 - components: - - flags: InContainer - type: MetaData - - parent: 577 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 707 - components: - - flags: InContainer - type: MetaData - - parent: 1296 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2658 - components: - - pos: -10.57098,-3.5616817 - parent: 1 - type: Transform -- proto: Morgue - entities: - - uid: 555 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 1 - type: Transform - - uid: 2424 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-1.5 - parent: 1 - type: Transform - - uid: 2622 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 1 - type: Transform -- proto: NitrogenCanister - entities: - - uid: 837 - components: - - pos: -12.5,5.5 - parent: 1 - type: Transform - - uid: 963 - components: - - pos: -7.5,5.5 - parent: 1 - type: Transform -- proto: OxygenCanister - entities: - - uid: 404 - components: - - pos: -10.5,7.5 - parent: 1 - type: Transform - - uid: 972 - components: - - pos: -7.5,3.5 - parent: 1 - type: Transform -- proto: PackPaperRollingFilters - entities: - - uid: 2019 - components: - - pos: -1.538842,8.476898 - parent: 1 - type: Transform -- proto: PaintingMonkey - entities: - - uid: 1382 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,10.5 - parent: 1 - type: Transform -- proto: Paper - entities: - - uid: 1048 - components: - - pos: 33.64058,-2.5800076 - parent: 1 - type: Transform - - uid: 1399 - components: - - pos: -3.7622437,6.611676 - parent: 1 - type: Transform - - uid: 1400 - components: - - pos: -3.7934937,6.689801 - parent: 1 - type: Transform - - uid: 1401 - components: - - pos: -3.6997437,6.502301 - parent: 1 - type: Transform - - uid: 2035 - components: - - pos: 4.828754,10.765942 - parent: 1 - type: Transform - - uid: 2036 - components: - - pos: 4.703754,10.797192 - parent: 1 - type: Transform - - uid: 2037 - components: - - pos: 4.578754,10.828442 - parent: 1 - type: Transform - - uid: 2038 - components: - - pos: 8.813129,10.781567 - parent: 1 - type: Transform - - uid: 2039 - components: - - pos: 8.641254,10.812817 - parent: 1 - type: Transform - - uid: 2040 - components: - - pos: 8.422504,10.844067 - parent: 1 - type: Transform - - uid: 2473 - components: - - pos: 33.45308,-2.5175076 - parent: 1 - type: Transform - - uid: 2478 - components: - - pos: 33.562454,-2.5487576 - parent: 1 - type: Transform -- proto: PaperBin10 - entities: - - uid: 538 - components: - - rot: 3.141592653589793 rad - pos: 21.5,6.5 - parent: 1 - type: Transform - - uid: 2400 - components: - - pos: 15.5,-14.5 - parent: 1 - type: Transform -- proto: PaperRolling - entities: - - uid: 2020 - components: - - pos: 2.133033,10.476898 - parent: 1 - type: Transform -- proto: Pen - entities: - - uid: 539 - components: - - pos: 21.331081,6.325218 - parent: 1 - type: Transform - - uid: 540 - components: - - pos: 21.440456,6.418968 - parent: 1 - type: Transform - - uid: 541 - components: - - pos: 21.565456,6.559593 - parent: 1 - type: Transform - - uid: 542 - components: - - pos: 21.690456,6.700218 - parent: 1 - type: Transform - - uid: 1403 - components: - - pos: -3.7213297,6.4697857 - parent: 1 - type: Transform - - uid: 1404 - components: - - pos: -3.7213297,6.4697857 - parent: 1 - type: Transform - - uid: 2041 - components: - - pos: 4.750629,10.406567 - parent: 1 - type: Transform - - uid: 2042 - components: - - pos: 8.719379,10.422192 - parent: 1 - type: Transform - - uid: 2407 - components: - - pos: 15.475421,-14.465371 - parent: 1 - type: Transform -- proto: PenCap - entities: - - uid: 2405 - components: - - pos: 15.100421,-14.215371 - parent: 1 - type: Transform - - uid: 2406 - components: - - pos: 15.069171,-14.449746 - parent: 1 - type: Transform -- proto: PianoInstrument - entities: - - uid: 1034 - components: - - rot: 3.141592653589793 rad - pos: 29.5,4.5 - parent: 1 - type: Transform -- proto: PinpointerUniversal - entities: - - uid: 1043 - components: - - pos: 14.476934,-0.4496317 - parent: 1 - type: Transform -- proto: PlushieBee - entities: - - uid: 2655 - components: - - pos: 32.502632,-4.706786 - parent: 1 - type: Transform -- proto: PlushieHampter - entities: - - uid: 2654 - components: - - pos: 40.518257,-4.722411 - parent: 1 - type: Transform -- proto: PlushieLizard - entities: - - uid: 2652 - components: - - pos: 32.565132,-0.64428616 - parent: 1 - type: Transform -- proto: PlushieMoffRandom - entities: - - uid: 2657 - components: - - pos: 43.455757,2.4025888 - parent: 1 - type: Transform -- proto: PlushieNuke - entities: - - uid: 1394 - components: - - pos: -5.529349,7.369894 - parent: 1 - type: Transform - - uid: 2653 - components: - - pos: 39.424507,7.386963 - parent: 1 - type: Transform -- proto: PlushieSlime - entities: - - uid: 2656 - components: - - pos: 43.440132,-1.6599112 - parent: 1 - type: Transform -- proto: PortableFlasher - entities: - - uid: 2494 - components: - - anchored: False - pos: -9.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: TriggerOnProximity - - bodyType: Dynamic - type: Physics - - uid: 2553 - components: - - anchored: False - pos: -10.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: TriggerOnProximity - - bodyType: Dynamic - type: Physics -- proto: PortableGeneratorJrPacman - entities: - - uid: 748 - components: - - pos: -11.5,-4.5 - parent: 1 - type: Transform -- proto: PortableScrubber - entities: - - uid: 2645 - components: - - pos: -7.5,7.5 - parent: 1 - type: Transform -- proto: PottedPlantRandom - entities: - - uid: 598 - components: - - pos: 23.5,1.5 - parent: 1 - type: Transform - - uid: 962 - components: - - pos: 13.5,-14.5 - parent: 1 - type: Transform - - uid: 1057 - components: - - pos: 12.5,-7.5 - parent: 1 - type: Transform - - uid: 1059 - components: - - pos: 8.5,3.5 - parent: 1 - type: Transform - - uid: 1060 - components: - - pos: 16.5,1.5 - parent: 1 - type: Transform - - uid: 1221 - components: - - pos: 38.5,2.5 - parent: 1 - type: Transform - - uid: 2573 - components: - - pos: -4.5,2.5 - parent: 1 - type: Transform -- proto: PowerCellRecharger - entities: - - uid: 755 - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform - - uid: 1380 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,2.5 - parent: 1 - type: Transform - - uid: 2500 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,2.5 - parent: 1 - type: Transform -- proto: Poweredlight - entities: - - uid: 2397 - components: - - pos: 19.5,2.5 - parent: 1 - type: Transform - - uid: 2421 - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform - - uid: 2422 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,2.5 - parent: 1 - type: Transform - - uid: 2423 - components: - - rot: 3.141592653589793 rad - pos: 5.5,4.5 - parent: 1 - type: Transform - - uid: 2425 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-4.5 - parent: 1 - type: Transform - - uid: 2426 - components: - - rot: 3.141592653589793 rad - pos: -6.5,1.5 - parent: 1 - type: Transform - - uid: 2427 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,7.5 - parent: 1 - type: Transform - - uid: 2428 - components: - - rot: 3.141592653589793 rad - pos: 1.5,4.5 - parent: 1 - type: Transform - - uid: 2429 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,7.5 - parent: 1 - type: Transform - - uid: 2430 - components: - - rot: 3.141592653589793 rad - pos: 18.5,4.5 - parent: 1 - type: Transform - - uid: 2431 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,5.5 - parent: 1 - type: Transform - - uid: 2432 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,10.5 - parent: 1 - type: Transform - - uid: 2433 - components: - - rot: 3.141592653589793 rad - pos: 14.5,1.5 - parent: 1 - type: Transform - - uid: 2434 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 1 - type: Transform - - uid: 2435 - components: - - pos: 14.5,-0.5 - parent: 1 - type: Transform - - uid: 2436 - components: - - pos: 12.5,-6.5 - parent: 1 - type: Transform - - uid: 2437 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-12.5 - parent: 1 - type: Transform - - uid: 2438 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-14.5 - parent: 1 - type: Transform - - uid: 2439 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,2.5 - parent: 1 - type: Transform - - uid: 2440 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,7.5 - parent: 1 - type: Transform - - uid: 2441 - components: - - rot: 3.141592653589793 rad - pos: 34.5,8.5 - parent: 1 - type: Transform - - uid: 2442 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,10.5 - parent: 1 - type: Transform - - uid: 2461 - components: - - pos: 33.5,1.5 - parent: 1 - type: Transform - - uid: 2462 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-1.5 - parent: 1 - type: Transform - - uid: 2463 - components: - - pos: 37.5,3.5 - parent: 1 - type: Transform - - uid: 2469 - components: - - rot: 3.141592653589793 rad - pos: 21.5,4.5 - parent: 1 - type: Transform - - uid: 2470 - components: - - pos: 21.5,9.5 - parent: 1 - type: Transform - - uid: 2471 - components: - - rot: 3.141592653589793 rad - pos: 25.5,1.5 - parent: 1 - type: Transform - - uid: 2659 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,3.5 - parent: 1 - type: Transform -- proto: PoweredlightColoredFrostyBlue - entities: - - uid: 2574 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 1 - type: Transform - - uid: 2592 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 1 - type: Transform - - uid: 2593 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 1 - type: Transform - - uid: 2594 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-0.5 - parent: 1 - type: Transform - - uid: 2595 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 1 - type: Transform - - uid: 2596 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-0.5 - parent: 1 - type: Transform - - uid: 2597 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-0.5 - parent: 1 - type: Transform - - uid: 2598 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-0.5 - parent: 1 - type: Transform - - uid: 2599 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-0.5 - parent: 1 - type: Transform - - uid: 2600 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-0.5 - parent: 1 - type: Transform - - uid: 2601 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-7.5 - parent: 1 - type: Transform - - uid: 2602 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-7.5 - parent: 1 - type: Transform - - uid: 2603 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,12.5 - parent: 1 - type: Transform - - uid: 2604 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,12.5 - parent: 1 - type: Transform - - uid: 2612 - components: - - rot: 3.141592653589793 rad - pos: -8.5,10.5 - parent: 1 - type: Transform - - uid: 2613 - components: - - rot: 3.141592653589793 rad - pos: 37.5,10.5 - parent: 1 - type: Transform -- proto: PoweredlightColoredRed - entities: - - uid: 2467 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-6.5 - parent: 1 - type: Transform - - uid: 2468 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-6.5 - parent: 1 - type: Transform -- proto: PoweredSmallLight - entities: - - uid: 2445 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-4.5 - parent: 1 - type: Transform - - uid: 2446 - components: - - pos: 39.5,-3.5 - parent: 1 - type: Transform - - links: - - 2475 - type: DeviceLinkSink - - uid: 2447 - components: - - pos: 42.5,-0.5 - parent: 1 - type: Transform - - links: - - 2476 - type: DeviceLinkSink - - uid: 2448 - components: - - rot: 3.141592653589793 rad - pos: 42.5,1.5 - parent: 1 - type: Transform - - links: - - 2477 - type: DeviceLinkSink - - uid: 2449 - components: - - rot: 3.141592653589793 rad - pos: 39.5,5.5 - parent: 1 - type: Transform - - uid: 2450 - components: - - rot: 3.141592653589793 rad - pos: 41.5,4.5 - parent: 1 - type: Transform - - links: - - 2479 - type: DeviceLinkSink - - uid: 2451 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,4.5 - parent: 1 - type: Transform - - links: - - 2605 - type: DeviceLinkSink - - uid: 2452 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,7.5 - parent: 1 - type: Transform - - uid: 2454 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,8.5 - parent: 1 - type: Transform - - links: - - 2606 - type: DeviceLinkSink - - uid: 2455 - components: - - rot: 3.141592653589793 rad - pos: -2.5,4.5 - parent: 1 - type: Transform - - uid: 2456 - components: - - pos: -3.5,10.5 - parent: 1 - type: Transform - - uid: 2457 - components: - - rot: 3.141592653589793 rad - pos: -0.5,7.5 - parent: 1 - type: Transform - - uid: 2458 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 1 - type: Transform - - uid: 2459 - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform - - uid: 2460 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 1 - type: Transform - - uid: 2464 - components: - - rot: 3.141592653589793 rad - pos: 33.5,3.5 - parent: 1 - type: Transform - - uid: 2465 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,5.5 - parent: 1 - type: Transform - - uid: 2466 - components: - - pos: 6.5,10.5 - parent: 1 - type: Transform - - uid: 2472 - components: - - pos: -5.5,10.5 - parent: 1 - type: Transform - - uid: 2554 - components: - - pos: 10.5,10.5 - parent: 1 - type: Transform - - uid: 2644 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,7.5 - parent: 1 - type: Transform - - uid: 2661 - components: - - pos: 33.5,-0.5 - parent: 1 - type: Transform - - links: - - 2443 - type: DeviceLinkSink - - uid: 2662 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-4.5 - parent: 1 - type: Transform - - links: - - 2443 - type: DeviceLinkSink -- proto: Rack - entities: - - uid: 501 - components: - - pos: -10.5,4.5 - parent: 1 - type: Transform - - uid: 679 - components: - - pos: 32.5,6.5 - parent: 1 - type: Transform - - uid: 680 - components: - - pos: 33.5,6.5 - parent: 1 - type: Transform - - uid: 681 - components: - - pos: 34.5,6.5 - parent: 1 - type: Transform - - uid: 682 - components: - - pos: 35.5,6.5 - parent: 1 - type: Transform - - uid: 731 - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform - - uid: 772 - components: - - pos: 14.5,-0.5 - parent: 1 - type: Transform - - uid: 780 - components: - - pos: 12.5,8.5 - parent: 1 - type: Transform - - uid: 1094 - components: - - pos: 32.5,5.5 - parent: 1 - type: Transform - - uid: 1147 - components: - - pos: 32.5,4.5 - parent: 1 - type: Transform -- proto: RandomInstruments - entities: - - uid: 1405 - components: - - pos: -5.5,5.5 - parent: 1 - type: Transform - - uid: 1412 - components: - - pos: 28.5,4.5 - parent: 1 - type: Transform - - uid: 2398 - components: - - pos: 6.5,8.5 - parent: 1 - type: Transform - - uid: 2399 - components: - - pos: 10.5,8.5 - parent: 1 - type: Transform -- proto: RandomPainting - entities: - - uid: 1197 - components: - - pos: 44.5,3.5 - parent: 1 - type: Transform - - uid: 1235 - components: - - pos: 36.5,7.5 - parent: 1 - type: Transform - - uid: 1236 - components: - - pos: 39.5,3.5 - parent: 1 - type: Transform - - uid: 1292 - components: - - pos: 41.5,-2.5 - parent: 1 - type: Transform - - uid: 1381 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,6.5 - parent: 1 - type: Transform - - uid: 2526 - components: - - pos: 33.5,0.5 - parent: 1 - type: Transform -- proto: RandomPosterAny - entities: - - uid: 1253 - components: - - pos: -9.5,-0.5 - parent: 1 - type: Transform - - uid: 1293 - components: - - pos: 32.5,-5.5 - parent: 1 - type: Transform - - uid: 1294 - components: - - pos: 39.5,-2.5 - parent: 1 - type: Transform - - uid: 1446 - components: - - pos: -4.5,-5.5 - parent: 1 - type: Transform - - uid: 2545 - components: - - pos: 35.5,-3.5 - parent: 1 - type: Transform -- proto: RandomPosterContraband - entities: - - uid: 1330 - components: - - pos: 8.5,11.5 - parent: 1 - type: Transform - - uid: 1331 - components: - - pos: 4.5,11.5 - parent: 1 - type: Transform - - uid: 1332 - components: - - pos: -4.5,6.5 - parent: 1 - type: Transform -- proto: RandomPosterLegit - entities: - - uid: 1328 - components: - - pos: 32.5,2.5 - parent: 1 - type: Transform - - uid: 1329 - components: - - pos: 34.5,2.5 - parent: 1 - type: Transform -- proto: RandomSpawner - entities: - - uid: 1408 - components: - - pos: -5.5,10.5 - parent: 1 - type: Transform -- proto: ReinforcedPlasmaWindow - entities: - - uid: 101 - components: - - pos: 27.5,11.5 - parent: 1 - type: Transform - - uid: 121 - components: - - pos: 33.5,11.5 - parent: 1 - type: Transform - - uid: 123 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-13.5 - parent: 1 - type: Transform - - uid: 135 - components: - - pos: 26.5,11.5 - parent: 1 - type: Transform - - uid: 136 - components: - - pos: 11.5,-8.5 - parent: 1 - type: Transform - - uid: 137 - components: - - pos: 11.5,-9.5 - parent: 1 - type: Transform - - uid: 138 - components: - - pos: 11.5,-10.5 - parent: 1 - type: Transform - - uid: 139 - components: - - pos: 11.5,-11.5 - parent: 1 - type: Transform - - uid: 145 - components: - - pos: 17.5,-11.5 - parent: 1 - type: Transform - - uid: 146 - components: - - pos: 17.5,-10.5 - parent: 1 - type: Transform - - uid: 147 - components: - - pos: 17.5,-9.5 - parent: 1 - type: Transform - - uid: 148 - components: - - pos: 17.5,-8.5 - parent: 1 - type: Transform - - uid: 150 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 1 - type: Transform - - uid: 151 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 1 - type: Transform - - uid: 152 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-3.5 - parent: 1 - type: Transform - - uid: 153 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 1 - type: Transform - - uid: 154 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-2.5 - parent: 1 - type: Transform - - uid: 155 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-1.5 - parent: 1 - type: Transform - - uid: 167 - components: - - pos: 11.5,-7.5 - parent: 1 - type: Transform - - uid: 231 - components: - - pos: 17.5,-7.5 - parent: 1 - type: Transform - - uid: 286 - components: - - pos: -0.5,11.5 - parent: 1 - type: Transform - - uid: 287 - components: - - pos: -2.5,11.5 - parent: 1 - type: Transform - - uid: 290 - components: - - pos: 13.5,11.5 - parent: 1 - type: Transform - - uid: 291 - components: - - pos: 25.5,11.5 - parent: 1 - type: Transform - - uid: 306 - components: - - pos: -4.5,11.5 - parent: 1 - type: Transform - - uid: 308 - components: - - pos: 32.5,11.5 - parent: 1 - type: Transform - - uid: 370 - components: - - pos: 1.5,11.5 - parent: 1 - type: Transform - - uid: 371 - components: - - pos: 5.5,11.5 - parent: 1 - type: Transform - - uid: 375 - components: - - pos: 9.5,11.5 - parent: 1 - type: Transform - - uid: 394 - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform - - uid: 395 - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform - - uid: 396 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 397 - components: - - pos: 8.5,0.5 - parent: 1 - type: Transform - - uid: 398 - components: - - pos: 9.5,0.5 - parent: 1 - type: Transform - - uid: 446 - components: - - pos: 22.5,0.5 - parent: 1 - type: Transform - - uid: 447 - components: - - pos: 23.5,0.5 - parent: 1 - type: Transform - - uid: 448 - components: - - pos: 24.5,0.5 - parent: 1 - type: Transform - - uid: 449 - components: - - pos: 28.5,0.5 - parent: 1 - type: Transform - - uid: 450 - components: - - pos: 29.5,0.5 - parent: 1 - type: Transform - - uid: 461 - components: - - pos: 14.5,11.5 - parent: 1 - type: Transform - - uid: 488 - components: - - pos: 16.5,11.5 - parent: 1 - type: Transform - - uid: 489 - components: - - pos: 17.5,11.5 - parent: 1 - type: Transform - - uid: 559 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 1 - type: Transform - - uid: 560 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 1 - type: Transform - - uid: 586 - components: - - pos: 34.5,11.5 - parent: 1 - type: Transform - - uid: 648 - components: - - pos: 38.5,9.5 - parent: 1 - type: Transform - - uid: 649 - components: - - pos: 40.5,7.5 - parent: 1 - type: Transform - - uid: 650 - components: - - pos: 41.5,7.5 - parent: 1 - type: Transform - - uid: 651 - components: - - pos: 41.5,6.5 - parent: 1 - type: Transform - - uid: 652 - components: - - pos: 45.5,2.5 - parent: 1 - type: Transform - - uid: 653 - components: - - pos: 45.5,1.5 - parent: 1 - type: Transform - - uid: 654 - components: - - pos: 45.5,-0.5 - parent: 1 - type: Transform - - uid: 655 - components: - - pos: 43.5,-2.5 - parent: 1 - type: Transform - - uid: 656 - components: - - pos: 43.5,-3.5 - parent: 1 - type: Transform - - uid: 657 - components: - - pos: 42.5,-3.5 - parent: 1 - type: Transform - - uid: 658 - components: - - pos: 40.5,-5.5 - parent: 1 - type: Transform - - uid: 659 - components: - - pos: 36.5,-5.5 - parent: 1 - type: Transform - - uid: 660 - components: - - pos: 31.5,-3.5 - parent: 1 - type: Transform - - uid: 661 - components: - - pos: 31.5,-1.5 - parent: 1 - type: Transform - - uid: 662 - components: - - pos: -7.5,-5.5 - parent: 1 - type: Transform - - uid: 765 - components: - - pos: -11.5,-5.5 - parent: 1 - type: Transform - - uid: 851 - components: - - pos: -7.5,9.5 - parent: 1 - type: Transform - - uid: 976 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-15.5 - parent: 1 - type: Transform - - uid: 977 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-15.5 - parent: 1 - type: Transform - - uid: 978 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-13.5 - parent: 1 - type: Transform -- proto: ReinforcedWindow - entities: - - uid: 307 - components: - - pos: 31.5,8.5 - parent: 1 - type: Transform - - uid: 363 - components: - - pos: 3.5,8.5 - parent: 1 - type: Transform - - uid: 367 - components: - - pos: 1.5,6.5 - parent: 1 - type: Transform - - uid: 368 - components: - - pos: 0.5,6.5 - parent: 1 - type: Transform - - uid: 376 - components: - - pos: 2.5,6.5 - parent: 1 - type: Transform - - uid: 385 - components: - - pos: 3.5,9.5 - parent: 1 - type: Transform - - uid: 386 - components: - - pos: 6.5,6.5 - parent: 1 - type: Transform - - uid: 387 - components: - - pos: 10.5,6.5 - parent: 1 - type: Transform - - uid: 392 - components: - - pos: 7.5,8.5 - parent: 1 - type: Transform - - uid: 393 - components: - - pos: 7.5,9.5 - parent: 1 - type: Transform - - uid: 421 - components: - - pos: 17.5,1.5 - parent: 1 - type: Transform - - uid: 451 - components: - - pos: 19.5,9.5 - parent: 1 - type: Transform - - uid: 456 - components: - - pos: 23.5,9.5 - parent: 1 - type: Transform - - uid: 459 - components: - - pos: 23.5,8.5 - parent: 1 - type: Transform - - uid: 462 - components: - - pos: 19.5,8.5 - parent: 1 - type: Transform - - uid: 473 - components: - - pos: 23.5,5.5 - parent: 1 - type: Transform - - uid: 481 - components: - - rot: 3.141592653589793 rad - pos: 11.5,3.5 - parent: 1 - type: Transform - - uid: 482 - components: - - rot: 3.141592653589793 rad - pos: 11.5,4.5 - parent: 1 - type: Transform - - uid: 498 - components: - - pos: 19.5,5.5 - parent: 1 - type: Transform - - uid: 522 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,6.5 - parent: 1 - type: Transform - - uid: 523 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,6.5 - parent: 1 - type: Transform - - uid: 524 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,7.5 - parent: 1 - type: Transform - - uid: 525 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,8.5 - parent: 1 - type: Transform - - uid: 537 - components: - - rot: 3.141592653589793 rad - pos: 21.5,7.5 - parent: 1 - type: Transform - - uid: 720 - components: - - pos: -12.5,-2.5 - parent: 1 - type: Transform - - uid: 838 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,4.5 - parent: 1 - type: Transform - - uid: 839 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,4.5 - parent: 1 - type: Transform - - uid: 840 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,4.5 - parent: 1 - type: Transform - - uid: 841 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,5.5 - parent: 1 - type: Transform - - uid: 842 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,6.5 - parent: 1 - type: Transform - - uid: 843 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,6.5 - parent: 1 - type: Transform - - uid: 844 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,7.5 - parent: 1 - type: Transform - - uid: 845 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,8.5 - parent: 1 - type: Transform - - uid: 958 - components: - - pos: -11.5,-1.5 - parent: 1 - type: Transform - - uid: 2627 - components: - - pos: 5.5,6.5 - parent: 1 - type: Transform - - uid: 2642 - components: - - pos: 9.5,6.5 - parent: 1 - type: Transform -- proto: RemoteSignaller - entities: - - uid: 2031 - components: - - pos: -7.229599,-4.2299995 - parent: 1 - type: Transform - - uid: 2650 - components: - - pos: -7.526474,-4.5737495 - parent: 1 - type: Transform - - uid: 2651 - components: - - pos: -7.385849,-4.4331245 - parent: 1 - type: Transform -- proto: RevolverCapGun - entities: - - uid: 2586 - components: - - flags: InContainer - type: MetaData - - parent: 2580 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2587 - components: - - flags: InContainer - type: MetaData - - parent: 2580 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: RubberStampApproved - entities: - - uid: 2401 - components: - - pos: 15.912921,-14.215371 - parent: 1 - type: Transform -- proto: RubberStampDenied - entities: - - uid: 2402 - components: - - pos: 15.928546,-14.512246 - parent: 1 - type: Transform -- proto: ScreenTimer - entities: - - uid: 149 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,4.5 - parent: 1 - type: Transform - - linkedPorts: - 466: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource - - uid: 174 - components: - - pos: 7.5,6.5 - parent: 1 - type: Transform - - linkedPorts: - 468: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource - - uid: 232 - components: - - pos: 3.5,6.5 - parent: 1 - type: Transform - - linkedPorts: - 467: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource -- proto: SecBreachingHammer - entities: - - uid: 1092 - components: - - pos: 32.40185,5.6869097 - parent: 1 - type: Transform - - uid: 1093 - components: - - pos: 32.6206,5.5306597 - parent: 1 - type: Transform -- proto: SecurityTechFab - entities: - - uid: 677 - components: - - pos: 33.5,4.5 - parent: 1 - type: Transform -- proto: SheetGlass - entities: - - uid: 757 - components: - - flags: InContainer - type: MetaData - - parent: 756 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 758 - components: - - flags: InContainer - type: MetaData - - parent: 756 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: SheetPlastic - entities: - - uid: 759 - components: - - flags: InContainer - type: MetaData - - parent: 756 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 760 - components: - - flags: InContainer - type: MetaData - - parent: 756 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ShuttersWindowOpen - entities: - - uid: 128 - components: - - pos: 20.5,7.5 - parent: 1 - type: Transform - - links: - - 70 - type: DeviceLinkSink -- proto: SignalButton - entities: - - uid: 70 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,6.5 - parent: 1 - type: Transform - - linkedPorts: - 494: - - Pressed: Toggle - 495: - - Pressed: Toggle - 128: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 2393 - components: - - rot: 3.141592653589793 rad - pos: -0.5,0.5 - parent: 1 - type: Transform - - linkedPorts: - 2389: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 2394 - components: - - rot: 3.141592653589793 rad - pos: 7.5,0.5 - parent: 1 - type: Transform - - linkedPorts: - 2390: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 2395 - components: - - rot: 3.141592653589793 rad - pos: 19.5,0.5 - parent: 1 - type: Transform - - linkedPorts: - 2391: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 2396 - components: - - rot: 3.141592653589793 rad - pos: 27.5,0.5 - parent: 1 - type: Transform - - linkedPorts: - 2392: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 2443 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-2.5 - parent: 1 - type: Transform - - linkedPorts: - 2662: - - Pressed: Toggle - 2661: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 2474 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-5.5 - parent: 1 - type: Transform - - uid: 2475 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-3.5 - parent: 1 - type: Transform - - linkedPorts: - 2446: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 2476 - components: - - pos: 43.5,0.5 - parent: 1 - type: Transform - - linkedPorts: - 2447: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 2477 - components: - - rot: 3.141592653589793 rad - pos: 43.5,0.5 - parent: 1 - type: Transform - - linkedPorts: - 2448: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 2479 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,6.5 - parent: 1 - type: Transform - - linkedPorts: - 2450: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 2605 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,5.5 - parent: 1 - type: Transform - - linkedPorts: - 2451: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 2606 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,7.5 - parent: 1 - type: Transform - - linkedPorts: - 2454: - - Pressed: Toggle - type: DeviceLinkSource -- proto: SignalButtonExt1 - entities: - - uid: 1295 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-6.5 - parent: 1 - type: Transform -- proto: SignalButtonExt2 - entities: - - uid: 1291 - components: - - pos: 35.5,2.5 - parent: 1 - type: Transform -- proto: SignArmory - entities: - - uid: 1193 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,2.5 - parent: 1 - type: Transform -- proto: SignAtmos - entities: - - uid: 1192 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,9.5 - parent: 1 - type: Transform -- proto: SignBridge - entities: - - uid: 1194 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-5.5 - parent: 1 - type: Transform -- proto: SignDisposalSpace - entities: - - uid: 2527 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-2.5 - parent: 1 - type: Transform - - uid: 2528 - components: - - rot: 3.141592653589793 rad - pos: 24.5,11.5 - parent: 1 - type: Transform - - uid: 2529 - components: - - rot: 3.141592653589793 rad - pos: 19.5,10.5 - parent: 1 - type: Transform - - uid: 2530 - components: - - rot: 3.141592653589793 rad - pos: -1.5,2.5 - parent: 1 - type: Transform -- proto: SignEngine - entities: - - uid: 1195 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 1 - type: Transform -- proto: SignMedical - entities: - - uid: 1196 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,11.5 - parent: 1 - type: Transform -- proto: SignMorgue - entities: - - uid: 1200 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 1 - type: Transform -- proto: SignToolStorage - entities: - - uid: 1199 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,0.5 - parent: 1 - type: Transform -- proto: SinkWide - entities: - - uid: 319 - components: - - pos: 30.5,10.5 - parent: 1 - type: Transform - - uid: 1387 - components: - - pos: 0.5,10.5 - parent: 1 - type: Transform -- proto: SMESBasic - entities: - - uid: 732 - components: - - pos: -11.5,0.5 - parent: 1 - type: Transform - - uid: 736 - components: - - pos: -11.5,1.5 - parent: 1 - type: Transform -- proto: SmokingPipeFilledTobacco - entities: - - uid: 2017 - components: - - pos: 39.42258,6.431879 - parent: 1 - type: Transform -- proto: soda_dispenser - entities: - - uid: 585 - components: - - pos: 29.5,10.5 - parent: 1 - type: Transform -- proto: SpaceCash10 - entities: - - uid: 1232 - components: - - pos: 26.709093,3.7970536 - parent: 1 - type: Transform - - uid: 1233 - components: - - pos: 26.474718,4.3126783 - parent: 1 - type: Transform -- proto: SpacemenFigureSpawner - entities: - - uid: 95 - components: - - pos: 26.5,8.5 - parent: 1 - type: Transform - - uid: 708 - components: - - pos: 15.5,-11.5 - parent: 1 - type: Transform - - uid: 949 - components: - - pos: 16.5,-14.5 - parent: 1 - type: Transform - - uid: 1039 - components: - - pos: 14.5,7.5 - parent: 1 - type: Transform - - uid: 1040 - components: - - pos: -5.5,-3.5 - parent: 1 - type: Transform -- proto: SpawnMobShiva - entities: - - uid: 1410 - components: - - pos: 40.5,6.5 - parent: 1 - type: Transform -- proto: SpawnPointBrigmedic - entities: - - uid: 273 - components: - - pos: 43.5,-0.5 - parent: 1 - type: Transform -- proto: SpawnPointChef - entities: - - uid: 2413 - components: - - pos: 29.5,8.5 - parent: 1 - type: Transform -- proto: SpawnPointLatejoin - entities: - - uid: 2380 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,3.5 - parent: 1 - type: Transform -- proto: SpawnPointPrisonGuard - entities: - - uid: 2576 - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform -- proto: SpawnPointSecurityOfficer - entities: - - uid: 2410 - components: - - pos: 32.5,-1.5 - parent: 1 - type: Transform - - uid: 2411 - components: - - pos: 32.5,-3.5 - parent: 1 - type: Transform - - uid: 2412 - components: - - pos: 40.5,-3.5 - parent: 1 - type: Transform -- proto: SpawnPointWarden - entities: - - uid: 640 - components: - - pos: 43.5,1.5 - parent: 1 - type: Transform -- proto: SpeedLoaderCap - entities: - - uid: 2581 - components: - - flags: InContainer - type: MetaData - - parent: 2580 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2582 - components: - - flags: InContainer - type: MetaData - - parent: 2580 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: SpeedLoaderMagnum - entities: - - uid: 1106 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1107 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1108 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1109 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: SpeedLoaderMagnumAP - entities: - - uid: 1095 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1148 - components: - - flags: InContainer - type: MetaData - - parent: 678 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: StationMap - entities: - - uid: 2481 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,2.5 - parent: 1 - type: Transform -- proto: Stool - entities: - - uid: 750 - components: - - rot: 3.141592653589793 rad - pos: 29.5,3.5 - parent: 1 - type: Transform -- proto: StoolBar - entities: - - uid: 899 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,9.5 - parent: 1 - type: Transform - - uid: 900 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,8.5 - parent: 1 - type: Transform - - uid: 901 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,7.5 - parent: 1 - type: Transform - - uid: 902 - components: - - rot: 3.141592653589793 rad - pos: 26.5,6.5 - parent: 1 - type: Transform - - uid: 903 - components: - - rot: 3.141592653589793 rad - pos: 27.5,6.5 - parent: 1 - type: Transform - - uid: 904 - components: - - rot: 3.141592653589793 rad - pos: 28.5,6.5 - parent: 1 - type: Transform -- proto: StorageCanister - entities: - - uid: 1575 - components: - - pos: -9.5,5.5 - parent: 1 - type: Transform -- proto: SubstationBasic - entities: - - uid: 734 - components: - - pos: -10.5,1.5 - parent: 1 - type: Transform - - uid: 735 - components: - - pos: -10.5,0.5 - parent: 1 - type: Transform -- proto: SuitStorageBrigmedic - entities: - - uid: 726 - components: - - pos: 40.5,-1.5 - parent: 1 - type: Transform -- proto: SuitStorageHOS - entities: - - uid: 169 - components: - - pos: 37.5,5.5 - parent: 1 - type: Transform -- proto: SuitStorageSec - entities: - - uid: 127 - components: - - pos: 34.5,-0.5 - parent: 1 - type: Transform - - uid: 141 - components: - - pos: 34.5,-4.5 - parent: 1 - type: Transform - - uid: 160 - components: - - pos: 38.5,-4.5 - parent: 1 - type: Transform - - uid: 674 - components: - - pos: 12.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.734816 - - 6.5262127 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 675 - components: - - pos: 16.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.734816 - - 6.5262127 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 676 - components: - - pos: 14.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.7450964 - - 6.564886 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: SuitStorageWarden - entities: - - uid: 166 - components: - - pos: 40.5,2.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 955 - components: - - pos: 12.5,-12.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraSecurity - entities: - - uid: 1062 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-3.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Quarters [deputy 1/2] - type: SurveillanceCamera - - uid: 2483 - components: - - pos: 7.5,1.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Drone dock 3 - type: SurveillanceCamera - - uid: 2491 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,8.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Medbay 3 - type: SurveillanceCamera - - uid: 2492 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,6.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Medbay 2 - type: SurveillanceCamera - - uid: 2493 - components: - - pos: 13.5,1.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Medbay 1 - type: SurveillanceCamera - - uid: 2534 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,6.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Lobby entrance - type: SurveillanceCamera - - uid: 2535 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,7.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Kitchen 1 - type: SurveillanceCamera - - uid: 2536 - components: - - pos: 27.5,1.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Drone dock 1 - type: SurveillanceCamera - - uid: 2537 - components: - - rot: 3.141592653589793 rad - pos: 21.5,2.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Drone dock 2 - type: SurveillanceCamera - - uid: 2538 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - type: SurveillanceCamera - - uid: 2539 - components: - - pos: 42.5,1.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Quarters [bailiff] - type: SurveillanceCamera - - uid: 2540 - components: - - pos: 39.5,5.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Quarters [sheriff] - type: SurveillanceCamera - - uid: 2541 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,2.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Quarters 2 - type: SurveillanceCamera - - uid: 2542 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-0.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Quarters [brigmedic] - type: SurveillanceCamera - - uid: 2543 - components: - - rot: 3.141592653589793 rad - pos: 39.5,-3.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Quarters [deputy 3] - type: SurveillanceCamera - - uid: 2546 - components: - - pos: 33.5,1.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Quarters 1 - type: SurveillanceCamera - - uid: 2547 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,10.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Kitchen 2 - type: SurveillanceCamera - - uid: 2548 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-0.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Supplies - type: SurveillanceCamera - - uid: 2549 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-6.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Bridge 1 - type: SurveillanceCamera - - uid: 2550 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-12.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Bridge 2 - type: SurveillanceCamera - - uid: 2551 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Drone dock 4 - type: SurveillanceCamera - - uid: 2552 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-6.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Thrusters [Port] - type: SurveillanceCamera - - uid: 2555 - components: - - rot: 3.141592653589793 rad - pos: 2.5,10.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma 1 - type: SurveillanceCamera - - uid: 2557 - components: - - pos: -2.5,4.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma 2 - type: SurveillanceCamera - - uid: 2558 - components: - - rot: 3.141592653589793 rad - pos: -4.5,2.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Engineering hallway - type: SurveillanceCamera - - uid: 2559 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Morgue - type: SurveillanceCamera - - uid: 2560 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Storage room - type: SurveillanceCamera - - uid: 2561 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Engine - type: SurveillanceCamera - - uid: 2562 - components: - - rot: 3.141592653589793 rad - pos: -8.5,8.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Atmos - type: SurveillanceCamera - - uid: 2563 - components: - - pos: -8.5,10.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Disposals - type: SurveillanceCamera - - uid: 2564 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,12.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Main dock - type: SurveillanceCamera - - uid: 2566 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-6.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Thrusters [Starboard] - type: SurveillanceCamera - - uid: 2620 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,7.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 1 - type: SurveillanceCamera - - uid: 2621 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,7.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 2 - type: SurveillanceCamera -- proto: TableCarpet - entities: - - uid: 327 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,2.5 - parent: 1 - type: Transform - - uid: 483 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-0.5 - parent: 1 - type: Transform - - uid: 981 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,6.5 - parent: 1 - type: Transform - - uid: 1150 - components: - - pos: 18.5,1.5 - parent: 1 - type: Transform - - uid: 1222 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,4.5 - parent: 1 - type: Transform - - uid: 1223 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,3.5 - parent: 1 - type: Transform - - uid: 1389 - components: - - pos: -1.5,8.5 - parent: 1 - type: Transform - - uid: 1411 - components: - - pos: 28.5,4.5 - parent: 1 - type: Transform - - uid: 2444 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-2.5 - parent: 1 - type: Transform -- proto: TablePlasmaGlass - entities: - - uid: 124 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-13.5 - parent: 1 - type: Transform - - uid: 668 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-14.5 - parent: 1 - type: Transform - - uid: 722 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-14.5 - parent: 1 - type: Transform - - uid: 956 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-14.5 - parent: 1 - type: Transform -- proto: TableReinforced - entities: - - uid: 204 - components: - - rot: 3.141592653589793 rad - pos: 20.5,7.5 - parent: 1 - type: Transform - - uid: 269 - components: - - rot: 3.141592653589793 rad - pos: 21.5,6.5 - parent: 1 - type: Transform - - uid: 544 - components: - - rot: 3.141592653589793 rad - pos: 21.5,5.5 - parent: 1 - type: Transform - - uid: 752 - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform - - uid: 1020 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,1.5 - parent: 1 - type: Transform - - uid: 1379 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,2.5 - parent: 1 - type: Transform - - uid: 2453 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-3.5 - parent: 1 - type: Transform - - uid: 2480 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,2.5 - parent: 1 - type: Transform - - uid: 2498 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,1.5 - parent: 1 - type: Transform - - uid: 2499 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,2.5 - parent: 1 - type: Transform -- proto: TableReinforcedGlass - entities: - - uid: 516 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,4.5 - parent: 1 - type: Transform - - uid: 517 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,5.5 - parent: 1 - type: Transform - - uid: 526 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,5.5 - parent: 1 - type: Transform - - uid: 775 - components: - - pos: 14.5,7.5 - parent: 1 - type: Transform - - uid: 776 - components: - - pos: 13.5,7.5 - parent: 1 - type: Transform - - uid: 778 - components: - - pos: 14.5,8.5 - parent: 1 - type: Transform - - uid: 786 - components: - - pos: 14.5,9.5 - parent: 1 - type: Transform -- proto: TableStone - entities: - - uid: 709 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-11.5 - parent: 1 - type: Transform - - uid: 961 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-10.5 - parent: 1 - type: Transform - - uid: 974 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-8.5 - parent: 1 - type: Transform - - uid: 975 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-8.5 - parent: 1 - type: Transform -- proto: TableWood - entities: - - uid: 580 - components: - - pos: 28.5,10.5 - parent: 1 - type: Transform - - uid: 581 - components: - - pos: 29.5,10.5 - parent: 1 - type: Transform - - uid: 1384 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,10.5 - parent: 1 - type: Transform - - uid: 1385 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,10.5 - parent: 1 - type: Transform - - uid: 1386 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,9.5 - parent: 1 - type: Transform - - uid: 1398 - components: - - pos: -3.5,6.5 - parent: 1 - type: Transform - - uid: 2023 - components: - - pos: 4.5,10.5 - parent: 1 - type: Transform - - uid: 2024 - components: - - pos: 8.5,10.5 - parent: 1 - type: Transform -- proto: TableWoodReinforced - entities: - - uid: 198 - components: - - pos: 28.5,7.5 - parent: 1 - type: Transform - - uid: 241 - components: - - pos: 27.5,7.5 - parent: 1 - type: Transform - - uid: 242 - components: - - pos: 29.5,7.5 - parent: 1 - type: Transform - - uid: 243 - components: - - pos: 26.5,9.5 - parent: 1 - type: Transform - - uid: 248 - components: - - pos: 26.5,10.5 - parent: 1 - type: Transform - - uid: 271 - components: - - pos: 26.5,7.5 - parent: 1 - type: Transform - - uid: 465 - components: - - pos: 26.5,8.5 - parent: 1 - type: Transform -- proto: TargetClown - entities: - - uid: 742 - components: - - pos: -12.5,-3.5 - parent: 1 - type: Transform -- proto: TargetSyndicate - entities: - - uid: 1049 - components: - - pos: -9.5,-4.5 - parent: 1 - type: Transform -- proto: ThrusterSecurity - entities: - - uid: 2 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-9.5 - parent: 1 - type: Transform - - uid: 3 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-9.5 - parent: 1 - type: Transform - - uid: 4 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-9.5 - parent: 1 - type: Transform - - uid: 5 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-9.5 - parent: 1 - type: Transform - - uid: 6 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-9.5 - parent: 1 - type: Transform - - uid: 7 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-8.5 - parent: 1 - type: Transform - - uid: 8 - components: - - pos: -6.5,-7.5 - parent: 1 - type: Transform - - uid: 9 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-6.5 - parent: 1 - type: Transform - - uid: 10 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-8.5 - parent: 1 - type: Transform - - uid: 11 - components: - - pos: -7.5,-7.5 - parent: 1 - type: Transform - - uid: 12 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-6.5 - parent: 1 - type: Transform - - uid: 13 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-9.5 - parent: 1 - type: Transform - - uid: 14 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-9.5 - parent: 1 - type: Transform - - uid: 15 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-9.5 - parent: 1 - type: Transform - - uid: 16 - components: - - rot: 3.141592653589793 rad - pos: 36.5,-9.5 - parent: 1 - type: Transform - - uid: 17 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-9.5 - parent: 1 - type: Transform - - uid: 18 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-8.5 - parent: 1 - type: Transform - - uid: 19 - components: - - pos: 35.5,-7.5 - parent: 1 - type: Transform - - uid: 20 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-6.5 - parent: 1 - type: Transform - - uid: 21 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-8.5 - parent: 1 - type: Transform - - uid: 22 - components: - - pos: -5.5,-7.5 - parent: 1 - type: Transform - - uid: 23 - components: - - pos: 34.5,-7.5 - parent: 1 - type: Transform - - uid: 24 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-6.5 - parent: 1 - type: Transform - - uid: 25 - components: - - pos: 36.5,-7.5 - parent: 1 - type: Transform - - uid: 26 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-7.5 - parent: 1 - type: Transform - - uid: 27 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-7.5 - parent: 1 - type: Transform - - uid: 28 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-7.5 - parent: 1 - type: Transform - - uid: 29 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-7.5 - parent: 1 - type: Transform -- proto: ToiletDirtyWater - entities: - - uid: 1009 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,10.5 - parent: 1 - type: Transform -- proto: ToiletEmpty - entities: - - uid: 1007 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,4.5 - parent: 1 - type: Transform - - uid: 2409 - components: - - rot: 3.141592653589793 rad - pos: 36.5,-4.5 - parent: 1 - type: Transform -- proto: Truncheon - entities: - - uid: 2556 - components: - - pos: 32.412285,5.46834 - parent: 1 - type: Transform - - uid: 2567 - components: - - pos: 32.412285,5.46834 - parent: 1 - type: Transform -- proto: VendingMachineBooze - entities: - - uid: 1320 - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,10.5 - parent: 1 - type: Transform -- proto: VendingMachineBountyVend - entities: - - uid: 458 - components: - - flags: SessionSpecific - type: MetaData - - pos: 16.5,-0.5 - parent: 1 - type: Transform -- proto: VendingMachineChemicals - entities: - - uid: 779 - components: - - flags: SessionSpecific - type: MetaData - - pos: 12.5,10.5 - parent: 1 - type: Transform -- proto: VendingMachineCigs - entities: - - uid: 906 - components: - - flags: SessionSpecific - type: MetaData - - pos: 24.5,10.5 - parent: 1 - type: Transform -- proto: VendingMachineDonut - entities: - - uid: 907 - components: - - flags: SessionSpecific - type: MetaData - - pos: 24.5,5.5 - parent: 1 - type: Transform -- proto: VendingMachineSec - entities: - - uid: 625 - components: - - flags: SessionSpecific - type: MetaData - - pos: 16.5,-2.5 - parent: 1 - type: Transform -- proto: VendingMachineSecDrobe - entities: - - uid: 624 - components: - - flags: SessionSpecific - type: MetaData - - pos: 38.5,0.5 - parent: 1 - type: Transform -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 1251 - components: - - flags: SessionSpecific - type: MetaData - - pos: 32.5,8.5 - parent: 1 - type: Transform - - uid: 1409 - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,10.5 - parent: 1 - type: Transform -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 967 - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,5.5 - parent: 1 - type: Transform -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 616 - components: - - flags: SessionSpecific - type: MetaData - - pos: 12.5,-2.5 - parent: 1 - type: Transform -- proto: VendingMachineWallMedical - entities: - - uid: 792 - components: - - flags: SessionSpecific - type: MetaData - - rot: 3.141592653589793 rad - pos: 17.5,3.5 - parent: 1 - type: Transform -- proto: VendingMachineYouTool - entities: - - uid: 965 - components: - - flags: SessionSpecific - type: MetaData - - pos: -7.5,4.5 - parent: 1 - type: Transform -- proto: WallmountTelescreen - entities: - - uid: 407 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-8.5 - parent: 1 - type: Transform - - uid: 1036 - components: - - pos: 15.5,-10.5 - parent: 1 - type: Transform - - uid: 2568 - components: - - pos: 43.5,3.5 - parent: 1 - type: Transform - - uid: 2569 - components: - - rot: 3.141592653589793 rad - pos: 39.5,4.5 - parent: 1 - type: Transform - - uid: 2570 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 1 - type: Transform - - uid: 2571 - components: - - rot: 3.141592653589793 rad - pos: -6.5,0.5 - parent: 1 - type: Transform -- proto: WallPlastitanium - entities: - - uid: 30 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-8.5 - parent: 1 - type: Transform - - uid: 32 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-7.5 - parent: 1 - type: Transform - - uid: 33 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-6.5 - parent: 1 - type: Transform - - uid: 34 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-8.5 - parent: 1 - type: Transform - - uid: 36 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-7.5 - parent: 1 - type: Transform - - uid: 38 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-5.5 - parent: 1 - type: Transform - - uid: 39 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-5.5 - parent: 1 - type: Transform - - uid: 40 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-5.5 - parent: 1 - type: Transform - - uid: 42 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-5.5 - parent: 1 - type: Transform - - uid: 44 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-5.5 - parent: 1 - type: Transform - - uid: 45 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-5.5 - parent: 1 - type: Transform - - uid: 50 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-8.5 - parent: 1 - type: Transform - - uid: 52 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-7.5 - parent: 1 - type: Transform - - uid: 53 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-5.5 - parent: 1 - type: Transform - - uid: 54 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-5.5 - parent: 1 - type: Transform - - uid: 56 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-7.5 - parent: 1 - type: Transform - - uid: 57 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-6.5 - parent: 1 - type: Transform - - uid: 58 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-5.5 - parent: 1 - type: Transform - - uid: 59 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-5.5 - parent: 1 - type: Transform - - uid: 60 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-8.5 - parent: 1 - type: Transform - - uid: 61 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-6.5 - parent: 1 - type: Transform - - uid: 62 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-5.5 - parent: 1 - type: Transform - - uid: 64 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-5.5 - parent: 1 - type: Transform - - uid: 65 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-5.5 - parent: 1 - type: Transform - - uid: 66 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-5.5 - parent: 1 - type: Transform - - uid: 69 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-5.5 - parent: 1 - type: Transform - - uid: 72 - components: - - rot: 3.141592653589793 rad - pos: 41.5,-5.5 - parent: 1 - type: Transform - - uid: 73 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-5.5 - parent: 1 - type: Transform - - uid: 75 - components: - - rot: 3.141592653589793 rad - pos: 39.5,-6.5 - parent: 1 - type: Transform - - uid: 78 - components: - - pos: -11.5,-0.5 - parent: 1 - type: Transform - - uid: 81 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-6.5 - parent: 1 - type: Transform - - uid: 82 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-5.5 - parent: 1 - type: Transform - - uid: 83 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-5.5 - parent: 1 - type: Transform - - uid: 84 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-6.5 - parent: 1 - type: Transform - - uid: 85 - components: - - pos: 1.5,3.5 - parent: 1 - type: Transform - - uid: 86 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-5.5 - parent: 1 - type: Transform - - uid: 102 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-4.5 - parent: 1 - type: Transform - - uid: 106 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-4.5 - parent: 1 - type: Transform - - uid: 110 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-5.5 - parent: 1 - type: Transform - - uid: 111 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-5.5 - parent: 1 - type: Transform - - uid: 112 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-15.5 - parent: 1 - type: Transform - - uid: 114 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-0.5 - parent: 1 - type: Transform - - uid: 115 - components: - - rot: 3.141592653589793 rad - pos: 10.5,0.5 - parent: 1 - type: Transform - - uid: 116 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-0.5 - parent: 1 - type: Transform - - uid: 117 - components: - - rot: 3.141592653589793 rad - pos: 18.5,0.5 - parent: 1 - type: Transform - - uid: 120 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-15.5 - parent: 1 - type: Transform - - uid: 133 - components: - - pos: 17.5,-12.5 - parent: 1 - type: Transform - - uid: 134 - components: - - pos: 11.5,-12.5 - parent: 1 - type: Transform - - uid: 156 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,0.5 - parent: 1 - type: Transform - - uid: 161 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,0.5 - parent: 1 - type: Transform - - uid: 163 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,0.5 - parent: 1 - type: Transform - - uid: 170 - components: - - pos: 11.5,2.5 - parent: 1 - type: Transform - - uid: 172 - components: - - pos: -5.5,11.5 - parent: 1 - type: Transform - - uid: 176 - components: - - pos: -1.5,11.5 - parent: 1 - type: Transform - - uid: 180 - components: - - pos: 2.5,11.5 - parent: 1 - type: Transform - - uid: 181 - components: - - pos: 3.5,11.5 - parent: 1 - type: Transform - - uid: 182 - components: - - pos: 4.5,11.5 - parent: 1 - type: Transform - - uid: 184 - components: - - pos: 6.5,11.5 - parent: 1 - type: Transform - - uid: 185 - components: - - pos: 7.5,11.5 - parent: 1 - type: Transform - - uid: 186 - components: - - pos: 8.5,11.5 - parent: 1 - type: Transform - - uid: 188 - components: - - pos: 10.5,11.5 - parent: 1 - type: Transform - - uid: 189 - components: - - pos: 11.5,11.5 - parent: 1 - type: Transform - - uid: 190 - components: - - pos: 12.5,11.5 - parent: 1 - type: Transform - - uid: 191 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,11.5 - parent: 1 - type: Transform - - uid: 192 - components: - - pos: 11.5,8.5 - parent: 1 - type: Transform - - uid: 193 - components: - - pos: 11.5,9.5 - parent: 1 - type: Transform - - uid: 194 - components: - - pos: -2.5,3.5 - parent: 1 - type: Transform - - uid: 195 - components: - - pos: -4.5,3.5 - parent: 1 - type: Transform - - uid: 196 - components: - - pos: 18.5,11.5 - parent: 1 - type: Transform - - uid: 197 - components: - - pos: 19.5,11.5 - parent: 1 - type: Transform - - uid: 199 - components: - - pos: 21.5,11.5 - parent: 1 - type: Transform - - uid: 200 - components: - - pos: 19.5,10.5 - parent: 1 - type: Transform - - uid: 201 - components: - - pos: 23.5,11.5 - parent: 1 - type: Transform - - uid: 202 - components: - - pos: 24.5,11.5 - parent: 1 - type: Transform - - uid: 205 - components: - - pos: 23.5,7.5 - parent: 1 - type: Transform - - uid: 209 - components: - - pos: 5.5,3.5 - parent: 1 - type: Transform - - uid: 210 - components: - - pos: 18.5,3.5 - parent: 1 - type: Transform - - uid: 211 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-2.5 - parent: 1 - type: Transform - - uid: 213 - components: - - pos: 35.5,11.5 - parent: 1 - type: Transform - - uid: 214 - components: - - pos: -2.5,0.5 - parent: 1 - type: Transform - - uid: 215 - components: - - pos: -2.5,-0.5 - parent: 1 - type: Transform - - uid: 216 - components: - - pos: -1.5,0.5 - parent: 1 - type: Transform - - uid: 217 - components: - - pos: 30.5,0.5 - parent: 1 - type: Transform - - uid: 218 - components: - - pos: 31.5,0.5 - parent: 1 - type: Transform - - uid: 219 - components: - - pos: 31.5,-0.5 - parent: 1 - type: Transform - - uid: 220 - components: - - pos: 31.5,-4.5 - parent: 1 - type: Transform - - uid: 222 - components: - - pos: 31.5,-2.5 - parent: 1 - type: Transform - - uid: 224 - components: - - pos: 41.5,-4.5 - parent: 1 - type: Transform - - uid: 225 - components: - - pos: 42.5,-4.5 - parent: 1 - type: Transform - - uid: 229 - components: - - pos: 44.5,-2.5 - parent: 1 - type: Transform - - uid: 234 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,11.5 - parent: 1 - type: Transform - - uid: 235 - components: - - pos: -3.5,3.5 - parent: 1 - type: Transform - - uid: 236 - components: - - pos: 44.5,4.5 - parent: 1 - type: Transform - - uid: 237 - components: - - pos: 43.5,4.5 - parent: 1 - type: Transform - - uid: 238 - components: - - pos: 43.5,5.5 - parent: 1 - type: Transform - - uid: 240 - components: - - pos: 42.5,6.5 - parent: 1 - type: Transform - - uid: 244 - components: - - pos: 40.5,8.5 - parent: 1 - type: Transform - - uid: 246 - components: - - pos: 39.5,9.5 - parent: 1 - type: Transform - - uid: 249 - components: - - pos: 36.5,9.5 - parent: 1 - type: Transform - - uid: 250 - components: - - pos: 36.5,10.5 - parent: 1 - type: Transform - - uid: 251 - components: - - pos: 35.5,10.5 - parent: 1 - type: Transform - - uid: 255 - components: - - pos: -10.5,9.5 - parent: 1 - type: Transform - - uid: 256 - components: - - pos: -9.5,9.5 - parent: 1 - type: Transform - - uid: 258 - components: - - pos: -11.5,8.5 - parent: 1 - type: Transform - - uid: 259 - components: - - pos: -10.5,8.5 - parent: 1 - type: Transform - - uid: 260 - components: - - pos: -11.5,7.5 - parent: 1 - type: Transform - - uid: 261 - components: - - pos: -12.5,7.5 - parent: 1 - type: Transform - - uid: 262 - components: - - pos: -12.5,6.5 - parent: 1 - type: Transform - - uid: 263 - components: - - pos: -13.5,6.5 - parent: 1 - type: Transform - - uid: 264 - components: - - pos: -13.5,5.5 - parent: 1 - type: Transform - - uid: 265 - components: - - pos: -14.5,5.5 - parent: 1 - type: Transform - - uid: 266 - components: - - pos: -14.5,4.5 - parent: 1 - type: Transform - - uid: 267 - components: - - pos: -15.5,4.5 - parent: 1 - type: Transform - - uid: 268 - components: - - pos: -15.5,3.5 - parent: 1 - type: Transform - - uid: 272 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-5.5 - parent: 1 - type: Transform - - uid: 274 - components: - - pos: -15.5,-2.5 - parent: 1 - type: Transform - - uid: 275 - components: - - pos: -14.5,-3.5 - parent: 1 - type: Transform - - uid: 276 - components: - - pos: -14.5,-2.5 - parent: 1 - type: Transform - - uid: 277 - components: - - pos: -13.5,-3.5 - parent: 1 - type: Transform - - uid: 278 - components: - - pos: -13.5,-4.5 - parent: 1 - type: Transform - - uid: 279 - components: - - pos: -12.5,-4.5 - parent: 1 - type: Transform - - uid: 280 - components: - - pos: -2.5,-4.5 - parent: 1 - type: Transform - - uid: 288 - components: - - pos: 11.5,6.5 - parent: 1 - type: Transform - - uid: 294 - components: - - pos: 3.5,10.5 - parent: 1 - type: Transform - - uid: 296 - components: - - pos: 7.5,10.5 - parent: 1 - type: Transform - - uid: 297 - components: - - pos: 11.5,10.5 - parent: 1 - type: Transform - - uid: 298 - components: - - pos: 11.5,7.5 - parent: 1 - type: Transform - - uid: 299 - components: - - pos: 7.5,7.5 - parent: 1 - type: Transform - - uid: 301 - components: - - pos: 3.5,7.5 - parent: 1 - type: Transform - - uid: 302 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,11.5 - parent: 1 - type: Transform - - uid: 309 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,11.5 - parent: 1 - type: Transform - - uid: 311 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,11.5 - parent: 1 - type: Transform - - uid: 312 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,11.5 - parent: 1 - type: Transform - - uid: 313 - components: - - pos: -0.5,6.5 - parent: 1 - type: Transform - - uid: 315 - components: - - pos: -0.5,4.5 - parent: 1 - type: Transform - - uid: 316 - components: - - pos: -6.5,3.5 - parent: 1 - type: Transform - - uid: 320 - components: - - pos: -1.5,2.5 - parent: 1 - type: Transform - - uid: 321 - components: - - pos: -0.5,0.5 - parent: 1 - type: Transform - - uid: 322 - components: - - pos: -1.5,3.5 - parent: 1 - type: Transform - - uid: 325 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,0.5 - parent: 1 - type: Transform - - uid: 326 - components: - - pos: -5.5,3.5 - parent: 1 - type: Transform - - uid: 335 - components: - - pos: 43.5,3.5 - parent: 1 - type: Transform - - uid: 336 - components: - - pos: 44.5,3.5 - parent: 1 - type: Transform - - uid: 337 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,3.5 - parent: 1 - type: Transform - - uid: 338 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,0.5 - parent: 1 - type: Transform - - uid: 340 - components: - - pos: 33.5,7.5 - parent: 1 - type: Transform - - uid: 343 - components: - - pos: 31.5,6.5 - parent: 1 - type: Transform - - uid: 347 - components: - - pos: 19.5,3.5 - parent: 1 - type: Transform - - uid: 350 - components: - - pos: 36.5,6.5 - parent: 1 - type: Transform - - uid: 351 - components: - - pos: 36.5,2.5 - parent: 1 - type: Transform - - uid: 352 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-1.5 - parent: 1 - type: Transform - - uid: 353 - components: - - pos: 35.5,2.5 - parent: 1 - type: Transform - - uid: 354 - components: - - pos: 31.5,5.5 - parent: 1 - type: Transform - - uid: 355 - components: - - pos: 23.5,10.5 - parent: 1 - type: Transform - - uid: 356 - components: - - pos: 23.5,6.5 - parent: 1 - type: Transform - - uid: 357 - components: - - pos: 34.5,2.5 - parent: 1 - type: Transform - - uid: 358 - components: - - pos: 31.5,7.5 - parent: 1 - type: Transform - - uid: 359 - components: - - pos: 32.5,7.5 - parent: 1 - type: Transform - - uid: 360 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 1 - type: Transform - - uid: 361 - components: - - pos: -6.5,11.5 - parent: 1 - type: Transform - - uid: 366 - components: - - pos: 19.5,0.5 - parent: 1 - type: Transform - - uid: 372 - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform - - uid: 374 - components: - - pos: 7.5,0.5 - parent: 1 - type: Transform - - uid: 379 - components: - - pos: 5.5,0.5 - parent: 1 - type: Transform - - uid: 382 - components: - - pos: 3.5,6.5 - parent: 1 - type: Transform - - uid: 383 - components: - - pos: 7.5,6.5 - parent: 1 - type: Transform - - uid: 400 - components: - - pos: -6.5,5.5 - parent: 1 - type: Transform - - uid: 401 - components: - - pos: 5.5,-0.5 - parent: 1 - type: Transform - - uid: 402 - components: - - pos: 25.5,-0.5 - parent: 1 - type: Transform - - uid: 403 - components: - - pos: 21.5,-0.5 - parent: 1 - type: Transform - - uid: 405 - components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform - - uid: 408 - components: - - pos: -6.5,7.5 - parent: 1 - type: Transform - - uid: 413 - components: - - pos: -6.5,4.5 - parent: 1 - type: Transform - - uid: 420 - components: - - pos: 17.5,3.5 - parent: 1 - type: Transform - - uid: 424 - components: - - pos: 21.5,0.5 - parent: 1 - type: Transform - - uid: 425 - components: - - pos: 25.5,0.5 - parent: 1 - type: Transform - - uid: 426 - components: - - pos: 27.5,0.5 - parent: 1 - type: Transform - - uid: 432 - components: - - pos: 19.5,6.5 - parent: 1 - type: Transform - - uid: 434 - components: - - pos: 12.5,0.5 - parent: 1 - type: Transform - - uid: 435 - components: - - pos: 13.5,0.5 - parent: 1 - type: Transform - - uid: 436 - components: - - pos: 16.5,0.5 - parent: 1 - type: Transform - - uid: 437 - components: - - pos: 21.5,3.5 - parent: 1 - type: Transform - - uid: 438 - components: - - pos: 23.5,3.5 - parent: 1 - type: Transform - - uid: 440 - components: - - pos: 22.5,3.5 - parent: 1 - type: Transform - - uid: 441 - components: - - pos: 20.5,3.5 - parent: 1 - type: Transform - - uid: 444 - components: - - pos: 21.5,10.5 - parent: 1 - type: Transform - - uid: 453 - components: - - pos: 31.5,10.5 - parent: 1 - type: Transform - - uid: 457 - components: - - pos: 39.5,3.5 - parent: 1 - type: Transform - - uid: 464 - components: - - pos: 11.5,5.5 - parent: 1 - type: Transform - - uid: 472 - components: - - pos: 19.5,12.5 - parent: 1 - type: Transform - - uid: 487 - components: - - rot: 3.141592653589793 rad - pos: 14.5,0.5 - parent: 1 - type: Transform - - uid: 490 - components: - - pos: 23.5,12.5 - parent: 1 - type: Transform - - uid: 491 - components: - - pos: 21.5,12.5 - parent: 1 - type: Transform - - uid: 504 - components: - - pos: 12.5,6.5 - parent: 1 - type: Transform - - uid: 506 - components: - - pos: 15.5,9.5 - parent: 1 - type: Transform - - uid: 510 - components: - - pos: 15.5,6.5 - parent: 1 - type: Transform - - uid: 550 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,0.5 - parent: 1 - type: Transform - - uid: 551 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-3.5 - parent: 1 - type: Transform - - uid: 553 - components: - - pos: 44.5,0.5 - parent: 1 - type: Transform - - uid: 558 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-2.5 - parent: 1 - type: Transform - - uid: 565 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,7.5 - parent: 1 - type: Transform - - uid: 566 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,7.5 - parent: 1 - type: Transform - - uid: 567 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,8.5 - parent: 1 - type: Transform - - uid: 568 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,7.5 - parent: 1 - type: Transform - - uid: 570 - components: - - pos: 31.5,11.5 - parent: 1 - type: Transform - - uid: 584 - components: - - pos: -6.5,8.5 - parent: 1 - type: Transform - - uid: 588 - components: - - pos: -6.5,10.5 - parent: 1 - type: Transform - - uid: 589 - components: - - pos: -6.5,-0.5 - parent: 1 - type: Transform - - uid: 590 - components: - - pos: -6.5,-1.5 - parent: 1 - type: Transform - - uid: 591 - components: - - pos: -6.5,-2.5 - parent: 1 - type: Transform - - uid: 592 - components: - - pos: -6.5,-3.5 - parent: 1 - type: Transform - - uid: 593 - components: - - pos: -6.5,-4.5 - parent: 1 - type: Transform - - uid: 594 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-2.5 - parent: 1 - type: Transform - - uid: 595 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 1 - type: Transform - - uid: 596 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-3.5 - parent: 1 - type: Transform - - uid: 597 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,2.5 - parent: 1 - type: Transform - - uid: 601 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,3.5 - parent: 1 - type: Transform - - uid: 602 - components: - - pos: 43.5,0.5 - parent: 1 - type: Transform - - uid: 603 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-2.5 - parent: 1 - type: Transform - - uid: 604 - components: - - pos: 40.5,0.5 - parent: 1 - type: Transform - - uid: 605 - components: - - pos: 39.5,2.5 - parent: 1 - type: Transform - - uid: 606 - components: - - pos: 31.5,2.5 - parent: 1 - type: Transform - - uid: 609 - components: - - pos: 32.5,2.5 - parent: 1 - type: Transform - - uid: 614 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,1.5 - parent: 1 - type: Transform - - uid: 615 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,0.5 - parent: 1 - type: Transform - - uid: 617 - components: - - pos: 40.5,3.5 - parent: 1 - type: Transform - - uid: 618 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,0.5 - parent: 1 - type: Transform - - uid: 619 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-4.5 - parent: 1 - type: Transform - - uid: 620 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-2.5 - parent: 1 - type: Transform - - uid: 621 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-1.5 - parent: 1 - type: Transform - - uid: 626 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-5.5 - parent: 1 - type: Transform - - uid: 627 - components: - - pos: 41.5,0.5 - parent: 1 - type: Transform - - uid: 628 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-0.5 - parent: 1 - type: Transform - - uid: 629 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,3.5 - parent: 1 - type: Transform - - uid: 630 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,2.5 - parent: 1 - type: Transform - - uid: 631 - components: - - pos: 33.5,2.5 - parent: 1 - type: Transform - - uid: 632 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,0.5 - parent: 1 - type: Transform - - uid: 634 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-1.5 - parent: 1 - type: Transform - - uid: 635 - components: - - pos: 42.5,0.5 - parent: 1 - type: Transform - - uid: 636 - components: - - pos: 39.5,0.5 - parent: 1 - type: Transform - - uid: 637 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 1 - type: Transform - - uid: 638 - components: - - pos: 37.5,4.5 - parent: 1 - type: Transform - - uid: 641 - components: - - pos: 39.5,-1.5 - parent: 1 - type: Transform - - uid: 644 - components: - - pos: 39.5,4.5 - parent: 1 - type: Transform - - uid: 645 - components: - - pos: 36.5,5.5 - parent: 1 - type: Transform - - uid: 646 - components: - - pos: 41.5,3.5 - parent: 1 - type: Transform - - uid: 647 - components: - - pos: 42.5,3.5 - parent: 1 - type: Transform - - uid: 663 - components: - - pos: 36.5,4.5 - parent: 1 - type: Transform - - uid: 664 - components: - - pos: 35.5,-3.5 - parent: 1 - type: Transform - - uid: 683 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,0.5 - parent: 1 - type: Transform - - uid: 693 - components: - - pos: 37.5,9.5 - parent: 1 - type: Transform - - uid: 697 - components: - - pos: -13.5,-2.5 - parent: 1 - type: Transform - - uid: 698 - components: - - pos: -10.5,-0.5 - parent: 1 - type: Transform - - uid: 700 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,0.5 - parent: 1 - type: Transform - - uid: 714 - components: - - rot: 3.141592653589793 rad - pos: -6.5,0.5 - parent: 1 - type: Transform - - uid: 771 - components: - - pos: -9.5,-0.5 - parent: 1 - type: Transform - - uid: 799 - components: - - pos: -6.5,6.5 - parent: 1 - type: Transform - - uid: 802 - components: - - pos: -6.5,9.5 - parent: 1 - type: Transform - - uid: 836 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,6.5 - parent: 1 - type: Transform - - uid: 846 - components: - - pos: -8.5,9.5 - parent: 1 - type: Transform - - uid: 887 - components: - - pos: -4.5,5.5 - parent: 1 - type: Transform - - uid: 888 - components: - - pos: -4.5,7.5 - parent: 1 - type: Transform - - uid: 889 - components: - - pos: -5.5,6.5 - parent: 1 - type: Transform - - uid: 890 - components: - - pos: -4.5,6.5 - parent: 1 - type: Transform - - uid: 891 - components: - - pos: -4.5,9.5 - parent: 1 - type: Transform - - uid: 892 - components: - - pos: -5.5,9.5 - parent: 1 - type: Transform - - uid: 952 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-15.5 - parent: 1 - type: Transform - - uid: 954 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-14.5 - parent: 1 - type: Transform - - uid: 957 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-14.5 - parent: 1 - type: Transform - - uid: 1056 - components: - - pos: 37.5,-2.5 - parent: 1 - type: Transform - - uid: 1063 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,4.5 - parent: 1 - type: Transform - - uid: 1264 - components: - - pos: 19.5,-0.5 - parent: 1 - type: Transform - - uid: 1429 - components: - - pos: 1.5,-0.5 - parent: 1 - type: Transform - - uid: 1431 - components: - - pos: 27.5,-0.5 - parent: 1 - type: Transform - - uid: 1432 - components: - - pos: 37.5,-4.5 - parent: 1 - type: Transform - - uid: 1437 - components: - - pos: 7.5,-0.5 - parent: 1 - type: Transform - - uid: 2057 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,7.5 - parent: 1 - type: Transform -- proto: WallPlastitaniumDiagonal - entities: - - uid: 31 - components: - - rot: 3.141592653589793 rad - pos: 39.5,-8.5 - parent: 1 - type: Transform - - uid: 35 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-8.5 - parent: 1 - type: Transform - - uid: 47 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-9.5 - parent: 1 - type: Transform - - uid: 48 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-9.5 - parent: 1 - type: Transform - - uid: 51 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-8.5 - parent: 1 - type: Transform - - uid: 55 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-8.5 - parent: 1 - type: Transform - - uid: 67 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-9.5 - parent: 1 - type: Transform - - uid: 68 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-9.5 - parent: 1 - type: Transform - - uid: 80 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-15.5 - parent: 1 - type: Transform - - uid: 125 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-15.5 - parent: 1 - type: Transform - - uid: 331 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,0.5 - parent: 1 - type: Transform - - uid: 496 - components: - - rot: 3.141592653589793 rad - pos: -0.5,3.5 - parent: 1 - type: Transform - - uid: 500 - components: - - pos: -1.5,4.5 - parent: 1 - type: Transform - - uid: 599 - components: - - pos: 30.5,5.5 - parent: 1 - type: Transform - - uid: 1050 - components: - - pos: 44.5,-1.5 - parent: 1 - type: Transform - - uid: 1051 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,8.5 - parent: 1 - type: Transform - - uid: 1052 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,5.5 - parent: 1 - type: Transform -- proto: WallWeaponCapacitorRecharger - entities: - - uid: 665 - components: - - pos: 22.5,3.5 - parent: 1 - type: Transform - - uid: 666 - components: - - pos: 20.5,3.5 - parent: 1 - type: Transform -- proto: WardrobePrison - entities: - - uid: 1413 - components: - - pos: -3.5,7.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1428 - - 1427 - - 1426 - - 1422 - - 1421 - - 1420 - - 1419 - - 1418 - - 1417 - - 1416 - - 1415 - - 1414 - - 1423 - - 1424 - - 1425 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: WardrobePrisonFilled - entities: - - uid: 365 - components: - - pos: 9.5,7.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 384 - components: - - pos: 5.5,7.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: WarningN2 - entities: - - uid: 1323 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,4.5 - parent: 1 - type: Transform -- proto: WarningO2 - entities: - - uid: 1324 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,6.5 - parent: 1 - type: Transform -- proto: WarpPointShip - entities: - - uid: 2381 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-2.5 - parent: 1 - type: Transform -- proto: WeaponCapacitorRecharger - entities: - - uid: 543 - components: - - rot: 3.141592653589793 rad - pos: 21.5,5.5 - parent: 1 - type: Transform - - uid: 2415 - components: - - pos: 15.5,-8.5 - parent: 1 - type: Transform - - uid: 2501 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,2.5 - parent: 1 - type: Transform -- proto: WeaponDisabler - entities: - - uid: 164 - components: - - flags: InContainer - type: MetaData - - parent: 162 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 168 - components: - - flags: InContainer - type: MetaData - - parent: 162 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 171 - components: - - flags: InContainer - type: MetaData - - parent: 162 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 228 - components: - - flags: InContainer - type: MetaData - - parent: 162 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 253 - components: - - flags: InContainer - type: MetaData - - parent: 162 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: WeaponEmpEmitter - entities: - - uid: 257 - components: - - flags: InContainer - type: MetaData - - parent: 162 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 346 - components: - - flags: InContainer - type: MetaData - - parent: 162 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 399 - components: - - flags: InContainer - type: MetaData - - parent: 162 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: WeaponGrapplingGun - entities: - - uid: 1044 - components: - - pos: 14.570684,-0.4965067 - parent: 1 - type: Transform - - uid: 1045 - components: - - pos: 14.570684,-0.4965067 - parent: 1 - type: Transform -- proto: WeaponLaserCannon - entities: - - uid: 1100 - components: - - pos: 32.452354,4.644346 - parent: 1 - type: Transform -- proto: WeaponLaserCarbine - entities: - - uid: 1083 - components: - - pos: 34.509674,6.736328 - parent: 1 - type: Transform - - uid: 1084 - components: - - pos: 34.5253,6.548828 - parent: 1 - type: Transform - - uid: 1085 - components: - - pos: 34.5253,6.330078 - parent: 1 - type: Transform -- proto: WeaponLauncherRocket - entities: - - uid: 1122 - components: - - flags: InContainer - type: MetaData - - parent: 157 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: WeaponLauncherRocketEmp - entities: - - uid: 1140 - components: - - flags: InContainer - desc: A modified ancient rocket-propelled grenade launcher capable of launching EMP rounds. - name: EMP-RPG-7 - type: MetaData - - parent: 113 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: WeaponPistolMk58 - entities: - - uid: 1086 - components: - - pos: 32.697174,6.455078 - parent: 1 - type: Transform - - uid: 1087 - components: - - pos: 32.822174,6.283203 - parent: 1 - type: Transform -- proto: WeaponRevolverInspector - entities: - - uid: 747 - components: - - pos: 32.48671,6.6033573 - parent: 1 - type: Transform - - uid: 764 - components: - - pos: 32.39647,6.7194366 - parent: 1 - type: Transform -- proto: WeaponRifleLecter - entities: - - uid: 1088 - components: - - pos: 33.509674,6.673828 - parent: 1 - type: Transform - - uid: 1089 - components: - - pos: 33.5253,6.470703 - parent: 1 - type: Transform - - uid: 1090 - components: - - pos: 33.5253,6.267578 - parent: 1 - type: Transform -- proto: WeaponShotgunEnforcer - entities: - - uid: 239 - components: - - pos: 35.541386,6.5527573 - parent: 1 - type: Transform - - uid: 245 - components: - - pos: 35.52576,6.7402573 - parent: 1 - type: Transform - - uid: 1091 - components: - - pos: 35.572636,6.3496323 - parent: 1 - type: Transform -- proto: WeldingFuelTankFull - entities: - - uid: 749 - components: - - pos: -10.5,-4.5 - parent: 1 - type: Transform -- proto: Windoor - entities: - - uid: 479 - components: - - rot: 3.141592653589793 rad - pos: 3.5,3.5 - parent: 1 - type: Transform - - uid: 531 - components: - - rot: 3.141592653589793 rad - pos: 13.5,2.5 - parent: 1 - type: Transform - - uid: 532 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,4.5 - parent: 1 - type: Transform - - uid: 587 - components: - - pos: 30.5,7.5 - parent: 1 - type: Transform -- proto: WindoorSecure - entities: - - uid: 751 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,4.5 - parent: 1 - type: Transform - - uid: 996 - components: - - pos: 36.5,-2.5 - parent: 1 - type: Transform -- proto: WindoorSecureArmoryLocked - entities: - - uid: 1097 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,3.5 - parent: 1 - type: Transform - - uid: 2615 - components: - - pos: 35.5,5.5 - parent: 1 - type: Transform -- proto: WindoorSecureSecurityLocked - entities: - - uid: 270 - components: - - pos: 20.5,7.5 - parent: 1 - type: Transform -- proto: WindowFrostedDirectional - entities: - - uid: 1439 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,5.5 - parent: 1 - type: Transform -- proto: WindowReinforcedDirectional - entities: - - uid: 208 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 1 - type: Transform - - uid: 247 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,1.5 - parent: 1 - type: Transform - - uid: 475 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,1.5 - parent: 1 - type: Transform - - uid: 476 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,2.5 - parent: 1 - type: Transform - - uid: 477 - components: - - rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 1 - type: Transform - - uid: 478 - components: - - rot: 3.141592653589793 rad - pos: 4.5,3.5 - parent: 1 - type: Transform - - uid: 527 - components: - - rot: 3.141592653589793 rad - pos: 12.5,2.5 - parent: 1 - type: Transform - - uid: 528 - components: - - rot: 3.141592653589793 rad - pos: 14.5,2.5 - parent: 1 - type: Transform - - uid: 529 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,3.5 - parent: 1 - type: Transform - - uid: 530 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,5.5 - parent: 1 - type: Transform - - uid: 1096 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,4.5 - parent: 1 - type: Transform - - uid: 1098 - components: - - pos: 32.5,5.5 - parent: 1 - type: Transform - - uid: 2565 - components: - - pos: 33.5,5.5 - parent: 1 - type: Transform - - uid: 2614 - components: - - pos: 34.5,5.5 - parent: 1 - type: Transform -... diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml index 7ff76c10205..046ab18ea01 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml @@ -145,6 +145,7 @@ - id: DoorRemoteSecurity # Frontier - id: SecurityTechFabCircuitboard # Frontier - id: BaseSecurityUplinkRadioSheriff # Frontier + - id: ClothingNeckNfsdBadgeHoS # Frontier - type: entity noSpawn: true diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml index a81f0de5fe0..65bb5dfabc4 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml @@ -155,6 +155,7 @@ - id: DoorRemoteSecurity # Frontier - id: SecurityTechFabCircuitboard # Frontier - id: BaseSecurityUplinkRadioSheriff # Frontier + - id: ClothingNeckNfsdBadgeHoS # Frontier - type: entity noSpawn: true diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/satchel.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/satchel.yml index b7f279f84f0..9e93242a26b 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/satchel.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/satchel.yml @@ -169,6 +169,7 @@ - id: DoorRemoteSecurity # Frontier - id: SecurityTechFabCircuitboard # Frontier - id: BaseSecurityUplinkRadioSheriff # Frontier + - id: ClothingNeckNfsdBadgeHoS # Frontier - type: entity noSpawn: true diff --git a/Resources/Prototypes/Catalog/Fills/Items/belt.yml b/Resources/Prototypes/Catalog/Fills/Items/belt.yml index 26e32087bb0..15114e5ff41 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/belt.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/belt.yml @@ -191,3 +191,15 @@ contents: - id: FoodShakerSalt - id: FoodShakerPepper + +- type: entity + id: ClothingNeckMantleSheriffFilled + parent: ClothingNeckMantleSheriff + suffix: Filled + components: + - type: StorageFill + contents: + - id: CigarGold + amount: 4 + - id: FlippoEngravedLighter + amount: 1 diff --git a/Resources/Prototypes/Catalog/Fills/Items/misc.yml b/Resources/Prototypes/Catalog/Fills/Items/misc.yml index a45b1d07b92..893172ed444 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/misc.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/misc.yml @@ -2,10 +2,18 @@ id: ClothingShoesBootsCombatFilled parent: ClothingShoesBootsCombat suffix: Filled - + components: + - type: ContainerFill + containers: + item: + - CombatKnife - type: entity id: ClothingShoesBootsMercenaryFilled # Frontier - Merc to Mercenary - parent: ClothingShoesBootsMercenary + parent: ClothingShoesBootsMercenary # Frontier - Merc to Mercenary suffix: Filled - + components: + - type: ContainerFill + containers: + item: + - KukriKnife diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Player/harpy.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Player/harpy.yml index e2541def035..4396bb9006d 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/Player/harpy.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Player/harpy.yml @@ -26,3 +26,4 @@ - type: NpcFactionMember factions: - NanoTrasen + - Harpy # Frontier diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/harpy.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/harpy.yml index a4498299c9a..1a8f2655d85 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/harpy.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/harpy.yml @@ -127,7 +127,7 @@ templateId: digitigrade - type: HarpyVisuals - type: UltraVision - + - type: entity save: false name: Urist McHands diff --git a/Resources/Prototypes/Entities/Mobs/Player/dwarf.yml b/Resources/Prototypes/Entities/Mobs/Player/dwarf.yml index ea1069cbaaa..cc3e1543ee6 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/dwarf.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/dwarf.yml @@ -3,4 +3,8 @@ name: Urist McHands The Dwarf parent: BaseMobDwarf id: MobDwarf - + components: + - type: NpcFactionMember + factions: + - NanoTrasen + - Dwarf # Frontier diff --git a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml index 100e3ff9f73..830df2622a1 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml @@ -445,6 +445,8 @@ layers: - state: default - state: idbrigmedic + - type: PresetIdCard + job: Brigmedic - type: entity parent: IDCardStandard @@ -848,3 +850,5 @@ layers: - state: default - state: idseniorofficer + - type: PresetIdCard + job: SeniorOfficer diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/lathe.yml index d5d89cef66a..30b76f88f23 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/lathe.yml @@ -182,9 +182,75 @@ runningState: icon # Frontier Start staticRecipes: + - Wirecutter + - Igniter + - Signaller + - Screwdriver + - Welder + - Wrench + - Crowbar + - Multitool + - NetworkConfigurator + - SprayPainter + - FlashlightLantern + - CableStack + - CableMVStack + - CableHVStack + - HandheldGPSBasic + - TRayScanner + - AirTank + - GasAnalyzer + - UtilityBelt + - SheetRGlass + - LightTube + - SodiumLightTube + - ExteriorLightTube + - LightBulb + - Bucket + - MopItem + - Holoprojector + - Mousetrap + - LightReplacer + - TrashBag + - PowerCellSmall + - PowerCellMedium + - MicroManipulatorStockPart + - MatterBinStockPart + - CapacitorStockPart + - ConveyorBeltAssembly + - IntercomElectronics + - FirelockElectronics + - DoorElectronics + - AirAlarmElectronics + - StationMapElectronics + - FireAlarmElectronics + - MailingUnitElectronics + - SignalTimerElectronics + - APCElectronics + - SMESMachineCircuitboard + - SubstationMachineCircuitboard + - CellRechargerCircuitboard + - BorgChargerCircuitboard + - WeaponCapacitorRechargerCircuitboard + - Durathread + - Plasteel - ClothingOuterSuitEmergency - ClothingHeadHelmetEVA + - ClothingHeadHelmetEVALarge - ClothingOuterHardsuitEVA + # Engi fab has shuttle power and tech at base + - SolarControlComputerCircuitboard + - SolarTrackerElectronics + - ShuttleConsoleCircuitboard + - PortableGeneratorPacmanMachineCircuitboard + - PortableGeneratorSuperPacmanMachineCircuitboard + - PortableGeneratorJrPacmanMachineCircuitboard + - ThrusterMachineCircuitboard + - GyroscopeMachineCircuitboard + - MiniGravityGeneratorCircuitboard + - SmallThrusterMachineCircuitboard # Frontier + - SmallGyroscopeMachineCircuitboard # Frontier + - WallmountSubstationElectronics # Frontier end dynamicRecipes: - Flash @@ -247,3 +313,7 @@ - Glass - Plastic - Steel + # Frontier Start + - Gold + - Silver + # Frontier End diff --git a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Cargo/mail_carrier.yml b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Cargo/mail_carrier.yml index 3a1ed796c83..09d250d2512 100644 --- a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Cargo/mail_carrier.yml +++ b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Cargo/mail_carrier.yml @@ -3,6 +3,7 @@ name: job-name-mail-carrier description: job-name-mail-carrier startingGear: MailCarrierGear + alwaysUseSpawner: true playTimeTracker: JobMailCarrier requirements: - !type:OverallPlaytimeRequirement diff --git a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Civilian/valet.yml b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Civilian/valet.yml index 26f2135e61a..6e3a90eae68 100644 --- a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Civilian/valet.yml +++ b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Civilian/valet.yml @@ -7,6 +7,7 @@ - !type:OverallPlaytimeRequirement time: 10800 startingGear: ValetGear + alwaysUseSpawner: true icon: "JobIconServiceWorker" supervisors: job-supervisors-everyone access: diff --git a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/prisoner.yml b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/prisoner.yml index bf6bccd67ba..f809dcdf369 100644 --- a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/prisoner.yml +++ b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/prisoner.yml @@ -6,6 +6,7 @@ requirements: - !type:WhitelistRequirement startingGear: PrisonerGear +# alwaysUseSpawner: true canBeAntag: false whitelistRequired: true icon: "JobIconPrisoner" diff --git a/Resources/Prototypes/Reagents/chemicals.yml b/Resources/Prototypes/Reagents/chemicals.yml index b2b4850c8f6..644d3be8cad 100644 --- a/Resources/Prototypes/Reagents/chemicals.yml +++ b/Resources/Prototypes/Reagents/chemicals.yml @@ -80,6 +80,10 @@ conditions: - !type:ReagentThreshold min: 5 + - !type:DisintegrateArtifact + conditions: + - !type:ReagentThreshold + min: 5 - type: reagent id: Benzene diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/detective.yml b/Resources/Prototypes/Roles/Jobs/Civilian/detective.yml index 7186d9fcce8..e69de29bb2d 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/detective.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/detective.yml @@ -1,42 +0,0 @@ -- type: job - id: Detective - name: job-name-detective - description: job-description-detective - playTimeTracker: JobDetective - requirements: - - !type:OverallPlaytimeRequirement - time: 36000 # Frontier - 10 hrs - startingGear: DetectiveGear - icon: "JobIconDetective" - supervisors: job-supervisors-hos - canBeAntag: false - access: - - Security - - Brig - - Maintenance - - Service - - Detective - - External # Frontier - - Mercenary # Frontier - - Captain # Frontier - special: - - !type:AddImplantSpecial - implants: [ MindShieldImplant, TrackingImplant ] - -- type: startingGear - id: DetectiveGear - equipment: - jumpsuit: ClothingUniformJumpsuitDetective - outerClothing: ClothingOuterVestDetective - back: ClothingBackpackFilledDetective - shoes: ClothingShoesBootsJack - eyes: ClothingEyesGlassesSunglasses - head: ClothingHeadHatFedoraBrown - id: DetectivePDA - ears: ClothingHeadsetSecurity - belt: ClothingBeltHolsterFilled - gloves: ClothingHandsGlovesCombat # Frontier - innerClothingSkirt: ClothingUniformJumpskirtDetective - satchel: ClothingBackpackSatchelFilledDetective - duffelbag: ClothingBackpackDuffelFilledDetective - messenger: ClothingBackpackMessengerSecurityFilledDetective # Frontier diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml b/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml index 837ab94ba40..49a948d23fd 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml @@ -7,6 +7,7 @@ - !type:OverallPlaytimeRequirement time: 10800 startingGear: JanitorGear + alwaysUseSpawner: true icon: "JobIconJanitor" supervisors: job-supervisors-hop access: diff --git a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml index 435021a3398..82b86ae3c92 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml @@ -9,6 +9,7 @@ - !type:WhitelistRequirement weight: 20 startingGear: HoPGear + alwaysUseSpawner: true icon: "JobIconHeadOfPersonnel" requireAdminNotify: true supervisors: job-supervisors-centcom # Frontier diff --git a/Resources/Prototypes/StatusEffects/job.yml b/Resources/Prototypes/StatusEffects/job.yml index 0811877ab5b..5c2d3a2fa05 100644 --- a/Resources/Prototypes/StatusEffects/job.yml +++ b/Resources/Prototypes/StatusEffects/job.yml @@ -85,8 +85,8 @@ parent: JobIcon id: JobIconSecurityOfficer icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: SecurityOfficer + sprite: _NF/Interface/Misc/job_icons.rsi + state: nfsddeputy - type: statusIcon parent: JobIcon @@ -225,15 +225,15 @@ parent: JobIcon id: JobIconHeadOfSecurity icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: HeadOfSecurity + sprite: _NF/Interface/Misc/job_icons.rsi + state: nfsdsheriff - type: statusIcon parent: JobIcon id: JobIconBrigmedic icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: Brigmedic + sprite: _NF/Interface/Misc/job_icons.rsi + state: nfsdbrigmed - type: statusIcon parent: JobIcon @@ -260,8 +260,8 @@ parent: JobIcon id: JobIconWarden icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: Warden + sprite: _NF/Interface/Misc/job_icons.rsi + state: nfsdbailiff - type: statusIcon parent: JobIcon @@ -323,8 +323,8 @@ parent: JobIcon id: JobIconSecurityCadet icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: SecurityCadet + sprite: _NF/Interface/Misc/job_icons.rsi + state: nfsdcadet - type: statusIcon parent: JobIcon @@ -351,8 +351,8 @@ parent: JobIcon id: JobIconSeniorOfficer icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: SeniorOfficer + sprite: _NF/Interface/Misc/job_icons.rsi + state: nfsdsergeant - type: statusIcon parent: JobIcon diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Items/belt.yml b/Resources/Prototypes/_NF/Catalog/Fills/Items/belt.yml index ddcb47730c1..2d9a99210d4 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Items/belt.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Items/belt.yml @@ -13,3 +13,36 @@ - id: RemoteSignaller - id: InflatableWallStack5 - id: InflatableDoorStack1 + +- type: entity + id: ClothingBeltNfsdFilled + parent: [ClothingBeltNfsd, ClothingBeltSecurityFilled] + +- type: entity + id: ClothingBeltNfsdWebbingFilledBrigmedic + parent: ClothingBeltNfsdWebbing + suffix: Filled, Brigmedic + components: + - type: StorageFill + contents: + - id: Brutepack + amount: 2 + - id: Ointment + amount: 1 + - id: Bloodpack + amount: 1 + - id: Gauze + - id: EmergencyMedipen #You never know what people are going to latejoin into + +- type: entity + id: ClothingBeltNfsdWebbingFilled + parent: ClothingBeltNfsdWebbing + suffix: Filled + components: + - type: StorageFill + contents: + - id: GrenadeFlashBang + - id: TearGasGrenade + - id: Stunbaton + - id: Handcuffs + - id: Handcuffs diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Items/misc.yml b/Resources/Prototypes/_NF/Catalog/Fills/Items/misc.yml index 57a93d1b0cb..37b2b62c8ad 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Items/misc.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Items/misc.yml @@ -1,14 +1,15 @@ - type: entity id: ClothingShoesBootsMagCombatFilled - parent: ClothingShoesBootsMagCombat - suffix: Filled + parent: [ClothingShoesBootsMagCombat, ClothingShoesBootsCombatFilled] - type: entity - id: ClothingShoesBootsMagMercenaryFilled - parent: ClothingShoesBootsMagMercenary - suffix: Filled + id: ClothingShoesBootsMagNfsdFilled + parent: [ClothingShoesBootsMagNfsd, ClothingShoesBootsCombatFilled] - type: entity id: ClothingShoesBootsMagPirateFilled - parent: ClothingShoesBootsMagPirate - suffix: Filled + parent: [ClothingShoesBootsMagPirate, ClothingShoesBootsCombatFilled] + +- type: entity + id: ClothingShoesBootsMagMercenaryFilled + parent: [ClothingShoesBootsMagMercenary, ClothingShoesBootsMercenaryFilled] diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Back/backpacks.yml b/Resources/Prototypes/_NF/Entities/Clothing/Back/backpacks.yml index 8d2c83547e1..c051d0d533d 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Back/backpacks.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Back/backpacks.yml @@ -6,7 +6,7 @@ components: - type: Sprite sprite: _NF/Clothing/Back/Backpacks/arcadia.rsi - + - type: entity parent: ClothingBackpack id: ClothingBackpackPilot @@ -36,3 +36,61 @@ - type: Storage storageOpenSound: collection: CatMeows + +- type: entity + parent: ClothingBackpackSecurityFilled + id: ClothingBackpacknfsdFilled + name: nfsd backpack + description: A backpack for Deputy Sheriff. + suffix: Filled + components: + - type: Sprite + sprite: _NF/Clothing/Back/Backpacks/nfsd_backpack.rsi + +- type: entity + parent: ClothingBackpack + id: ClothingBackpacknfsd + name: nfsd backpack + description: A backpack for Deputy Sheriff. + components: + - type: Sprite + sprite: _NF/Clothing/Back/Backpacks/nfsd_backpack.rsi + +- type: entity + parent: ClothingBackpackHOSFilled + id: ClothingBackpacknfsdsheriffFilled + name: nfsd backpack + description: A backpack for the Sheriff. + suffix: Filled - Sheriff + components: + - type: Sprite + sprite: _NF/Clothing/Back/Backpacks/nfsd_backpack.rsi + + +- type: entity + parent: ClothingBackpack + id: ClothingBackpacknfsdsheriff + name: nfsd backpack + description: A backpack for the Sheriff. + components: + - type: Sprite + sprite: _NF/Clothing/Back/Backpacks/nfsd_backpack.rsi + +- type: entity + parent: ClothingBackpackBrigmedicFilled + id: ClothingBackpacknfsdBrigmedFilled + name: nfsd brigmedic backpack + description: A backpack for Deputized Physician. + suffix: Filled + components: + - type: Sprite + sprite: _NF/Clothing/Back/Backpacks/nfsd_brigmed_backpack.rsi + +- type: entity + parent: ClothingBackpack + id: ClothingBackpacknfsdBrigmed + name: nfsd brigmedic backpack + description: A backpack for Deputized Physician. + components: + - type: Sprite + sprite: _NF/Clothing/Back/Backpacks/nfsd_brigmed_backpack.rsi diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Back/duffel.yml b/Resources/Prototypes/_NF/Entities/Clothing/Back/duffel.yml index 728919eb048..7f8a6c57537 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Back/duffel.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Back/duffel.yml @@ -24,3 +24,51 @@ components: - type: Sprite sprite: _NF/Clothing/Back/Duffels/pilot.rsi + +- type: entity + parent: ClothingBackpackDuffelSecurityFilled + id: ClothingBackpackDuffelnfsdFilled + name: nfsd duffel + description: A duffelbag produced for a Deputy Sheriff. + suffix: Filled + components: + - type: Sprite + sprite: _NF/Clothing/Back/Duffels/nfsd_duffle.rsi + +- type: entity + parent: ClothingBackpackDuffel + id: ClothingBackpackDuffelnfsd + name: nfsd duffel + description: A duffelbag produced for a Deputy Sheriff. + components: + - type: Sprite + sprite: _NF/Clothing/Back/Duffels/nfsd_duffle.rsi + +- type: entity + parent: ClothingBackpackHOSFilled + id: ClothingBackpackDuffelnfsdsheriffFilled + name: nfsd duffel + description: A duffelbag produced for a Deputy Sheriff. + suffix: Filled - Sheriff + components: + - type: Sprite + sprite: _NF/Clothing/Back/Duffels/nfsd_duffle.rsi + +- type: entity + parent: ClothingBackpackDuffel + id: ClothingBackpackDuffelnfsdBrigmed + name: nfsd brigmedic duffel + description: A duffelbag produced for a Deputized Physician. + components: + - type: Sprite + sprite: _NF/Clothing/Back/Duffels/nfsd_brigmed_duffle.rsi + +- type: entity + parent: ClothingBackpackDuffelBrigmedicFilled + id: ClothingBackpackDuffelnfsdBrigmedFilled + name: nfsd brigmedic duffel + description: A duffelbag produced for a Deputized Physician. + suffix: Filled + components: + - type: Sprite + sprite: _NF/Clothing/Back/Duffels/nfsd_brigmed_duffle.rsi \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Back/satchel.yml b/Resources/Prototypes/_NF/Entities/Clothing/Back/satchel.yml index 81e59232e68..cbef2983ce4 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Back/satchel.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Back/satchel.yml @@ -24,3 +24,60 @@ components: - type: Sprite sprite: _NF/Clothing/Back/Satchels/pilot.rsi + +- type: entity + parent: ClothingBackpackSatchelSecurityFilled + id: ClothingBackpackSatchelnfsdFilled + name: nfsd satchel + description: A satchel produced for a Deputy Sheriff. + suffix: Filled + components: + - type: Sprite + sprite: _NF/Clothing/Back/Satchels/nfsd_satchel.rsi + +- type: entity + parent: ClothingBackpackSatchel + id: ClothingBackpackSatchelnfsd + name: nfsd satchel + description: A satchel produced for a Deputy Sheriff. + components: + - type: Sprite + sprite: _NF/Clothing/Back/Satchels/nfsd_satchel.rsi + +- type: entity + parent: ClothingBackpackHOSFilled + id: ClothingBackpackSatchelnfsdsheriffFilled + name: nfsd satchel + description: A satchel produced for the Sheriff. + suffix: Filled - Sheriff + components: + - type: Sprite + sprite: _NF/Clothing/Back/Satchels/nfsd_satchel.rsi + +- type: entity + parent: ClothingBackpackSatchel + id: ClothingBackpackSatchelnfsdsheriff + name: nfsd satchel + description: A satchel produced for the Sheriff. + components: + - type: Sprite + sprite: _NF/Clothing/Back/Satchels/nfsd_satchel.rsi + +- type: entity + parent: ClothingBackpackSatchelBrigmedicFilled + id: ClothingBackpackSatchelnfsdBrigmedFilled + name: nfsd brigmedic satchel + description: A satchel produced for a Deputized Physician. + suffix: Filled + components: + - type: Sprite + sprite: _NF/Clothing/Back/Satchels/nfsd_brigmed_satchel.rsi + +- type: entity + parent: ClothingBackpackSatchel + id: ClothingBackpackSatchelnfsdBrigmed + name: nfsd brigmedic satchel + description: A satchel produced for a Deputized Physician. + components: + - type: Sprite + sprite: _NF/Clothing/Back/Satchels/nfsd_brigmed_satchel.rsi \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/_NF/Entities/Clothing/Belt/belts.yml index d4a1299a623..7e254c7b15b 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Belt/belts.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Belt/belts.yml @@ -75,3 +75,25 @@ sprite: _NF/Clothing/Belt/pilot.rsi - type: Clothing sprite: _NF/Clothing/Belt/pilot.rsi + +- type: entity + parent: ClothingBeltAssault + id: ClothingBeltNfsd + name: nfsd belt + description: A tactical assault belt. + components: + - type: Sprite + sprite: _NF/Clothing/Belt/nfsd_belt.rsi + - type: Clothing + sprite: _NF/Clothing/Belt/nfsd_belt.rsi + +- type: entity + parent: ClothingBeltSecurityWebbing + id: ClothingBeltNfsdWebbing + name: nfsd webbing + description: A tactical assault webbing. + components: + - type: Sprite + sprite: _NF/Clothing/Belt/nfsd_webbing.rsi + - type: Clothing + sprite: _NF/Clothing/Belt/nfsd_webbing.rsi \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Ears/headsets.yml b/Resources/Prototypes/_NF/Entities/Clothing/Ears/headsets.yml index 0bacafb5431..05eb08f2f5a 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Ears/headsets.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Ears/headsets.yml @@ -20,3 +20,36 @@ - EncryptionKeyService - EncryptionKeyCargo - EncryptionKeyCommon + +- type: entity + parent: ClothingHeadsetSecurity + id: ClothingHeadsetNFSDgreen # Ask SR or Sheriff for keys + name: nfsd headset + description: A headset for deputy sheriff's. + components: + - type: Sprite + sprite: _NF/Clothing/Ears/Headsets/nfsd_e_green.rsi + - type: Clothing + sprite: _NF/Clothing/Ears/Headsets/nfsd_e_green.rsi + +- type: entity + parent: ClothingHeadsetSecurity + id: ClothingHeadsetNFSDbrown # Ask SR or Sheriff for keys + name: nfsd headset + description: A headset for deputy sheriff's. + components: + - type: Sprite + sprite: _NF/Clothing/Ears/Headsets/nfsd_e_brown.rsi + - type: Clothing + sprite: _NF/Clothing/Ears/Headsets/nfsd_e_brown.rsi + +- type: entity + parent: ClothingHeadsetSecurity + id: ClothingHeadsetNFSDcb # Ask SR or Sheriff for keys + name: nfsd headset + description: A headset for deputy sheriff's. + components: + - type: Sprite + sprite: _NF/Clothing/Ears/Headsets/nfsd_e_cb.rsi + - type: Clothing + sprite: _NF/Clothing/Ears/Headsets/nfsd_e_cb.rsi diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Ears/headsets_alt.yml b/Resources/Prototypes/_NF/Entities/Clothing/Ears/headsets_alt.yml index ba7168bf4af..84d45643646 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Ears/headsets_alt.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Ears/headsets_alt.yml @@ -43,3 +43,33 @@ sprite: _NF/Clothing/Ears/Headsets/pilot.rsi - type: Clothing sprite: _NF/Clothing/Ears/Headsets/pilot.rsi + +- type: entity + parent: ClothingHeadsetAlt + id: ClothingHeadsetAltNFSDgreen + name: nfsd over-ear headset + components: + - type: Sprite + sprite: _NF/Clothing/Ears/Headsets/nfsd_h_green.rsi + - type: Clothing + sprite: _NF/Clothing/Ears/Headsets/nfsd_h_green.rsi + +- type: entity + parent: ClothingHeadsetAlt + id: ClothingHeadsetAltNFSDbrown + name: nfsd over-ear headset + components: + - type: Sprite + sprite: _NF/Clothing/Ears/Headsets/nfsd_h_brown.rsi + - type: Clothing + sprite: _NF/Clothing/Ears/Headsets/nfsd_h_brown.rsi + +- type: entity + parent: ClothingHeadsetAltSecurity + id: ClothingHeadsetAltNFSDCreamandBrown + name: sheriff's over-ear headset + components: + - type: Sprite + sprite: _NF/Clothing/Ears/Headsets/nfsd_h_cb.rsi + - type: Clothing + sprite: _NF/Clothing/Ears/Headsets/nfsd_h_cb.rsi diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/_NF/Entities/Clothing/Eyes/glasses.yml index 8fc33bdd7ad..f45cb6c7c60 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Eyes/glasses.yml @@ -25,3 +25,14 @@ sprite: _NF/Clothing/Eyes/Glasses/pilot.rsi - type: HandheldGPS - type: VisionCorrection + +- type: entity + parent: ClothingEyesGlassesSecurity + id: ClothingEyesGlassesNFSD + name: nfsd glasses + description: Upgraded sunglasses that provide flash immunity and a security HUD. + components: + - type: Sprite + sprite: _NF/Clothing/Eyes/Glasses/nfsd_glasses.rsi + - type: Clothing + sprite: _NF/Clothing/Eyes/Glasses/nfsd_glasses.rsi \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Eyes/hud.yml b/Resources/Prototypes/_NF/Entities/Clothing/Eyes/hud.yml index 7a2fb0c414d..6a03d428186 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Eyes/hud.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Eyes/hud.yml @@ -1,3 +1,15 @@ +- type: entity + parent: ClothingEyesHudSecurity + id: ClothingEyesHudNfsd + name: nfsd hud + description: A heads-up display that scans the humanoids in view and provides accurate data about their ID status and security records. + components: + - type: Sprite + sprite: _NF/Clothing/Eyes/Hud/nfsd_hud.rsi + - type: Clothing + sprite: _NF/Clothing/Eyes/Hud/nfsd_hud.rsi + - type: ShowSecurityIcons + - type: entity parent: ClothingEyesBase id: ClothingEyesHudMail diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/_NF/Entities/Clothing/Hands/gloves.yml index d9cc7a9af2f..8ed5fdfff5f 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Hands/gloves.yml @@ -33,6 +33,28 @@ fiberColor: fibers-brown - type: FingerprintMask +- type: entity + parent: ClothingHandsGlovesCombat + id: ClothingHandsGlovesCombatNfsdBrown + name: nfsd combat gloves + description: Insulated gloves for a deputy sheriff. + components: + - type: Sprite + sprite: _NF/Clothing/Hands/Gloves/nfsd_brown.rsi + - type: Clothing + sprite: _NF/Clothing/Hands/Gloves/nfsd_brown.rsi + +- type: entity + parent: ClothingHandsGlovesCombat + id: ClothingHandsGlovesCombatNfsdCream + name: nfsd combat gloves + description: Insulated gloves for a deputy sheriff. + components: + - type: Sprite + sprite: _NF/Clothing/Hands/Gloves/nfsd_cream.rsi + - type: Clothing + sprite: _NF/Clothing/Hands/Gloves/nfsd_cream.rsi + # Gloves with fake guns visuals for NPCs - type: entity parent: ClothingHandsGlovesSyntheticBase diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/_NF/Entities/Clothing/Head/hardsuit-helmets.yml index 845394852bf..d05b516f940 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Head/hardsuit-helmets.yml @@ -124,3 +124,63 @@ Slash: 0.95 Piercing: 1.05 Heat: 1.1 + +- type: entity + parent: ClothingHeadHelmetHardsuitSecuritypatrol + id: ClothingHeadHelmetHardsuitNfsdBronze + noSpawn: true + name: nfsd patrol hardsuit helmet + description: Lightly armored hardsuit helmet for beat-cop needs. + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hardsuits/nfsd_helm.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hardsuits/nfsd_helm.rsi + +- type: entity + parent: ClothingHeadHelmetHardsuitSecurity + id: ClothingHeadHelmetHardsuitNfsdSilver + noSpawn: true + name: nfsd patrol hardsuit helmet + description: Lightly armored hardsuit helmet for beat-cop needs. + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hardsuits/nfsd_helm.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hardsuits/nfsd_helm.rsi + +- type: entity + parent: ClothingHeadHelmetHardsuitWarden + id: ClothingHeadHelmetHardsuitNfsdGold + noSpawn: true + name: nfsd patrol hardsuit helmet + description: Lightly armored hardsuit helmet for beat-cop needs. + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hardsuits/nfsd_helm.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hardsuits/nfsd_helm.rsi + +- type: entity + parent: ClothingHeadHelmetHardsuitBrigmedic + id: ClothingHeadHelmetHardsuitNfsdBrigmed + noSpawn: true + name: nfsd patrol hardsuit helmet + description: Lightly armored hardsuit helmet for beat-cop needs. + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hardsuits/nfsd_helm.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hardsuits/nfsd_helm.rsi + +- type: entity + parent: ClothingHeadHelmetHardsuitSecurityRed + id: ClothingHeadHelmetHardsuitNfsdSheriff + noSpawn: true + name: nfsd sheriff hardsuit helmet + description: Lightly armored hardsuit helmet for beat-cop-cop needs. + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/_NF/Entities/Clothing/Head/hats.yml index 5ab7eece6ec..b50ff7961b1 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Head/hats.yml @@ -137,3 +137,79 @@ tags: - ClothMade - WhitelistChameleon + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatNfsdBeretGreen + name: nfsd beret + description: a blue beret produced for deputy sheriff's. + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hats/nfsd_beret_green.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hats/nfsd_beret_green.rsi + - type: Tag + tags: + - ClothMade + - WhitelistChameleon + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatNfsdBeretBrown + name: nfsd beret + description: a brown beret produced for deputy sheriff's. + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hats/nfsd_beret_brown.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hats/nfsd_beret_brown.rsi + - type: Tag + tags: + - ClothMade + - WhitelistChameleon + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatNfsdBeretCream + name: nfsd beret + description: a cream beret produced for deputy sheriff's. + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hats/nfsd_beret_cream.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hats/nfsd_beret_cream.rsi + - type: Tag + tags: + - ClothMade + - WhitelistChameleon + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatNfsdCampaign + name: nfsd campaign hat + description: yee-haw partner. + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hats/nfsd_campaign.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hats/nfsd_campaign.rsi + - type: Tag + tags: + - ClothMade + - WhitelistChameleon + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatNfsdSmallCampaign + name: nfsd campaign cap + description: yee partner. + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hats/nfsd_campaign_small.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hats/nfsd_campaign_small.rsi + - type: Tag + tags: + - ClothMade + - WhitelistChameleon + diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Neck/cloaks.yml b/Resources/Prototypes/_NF/Entities/Clothing/Neck/cloaks.yml new file mode 100644 index 00000000000..2dd8bc28136 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Clothing/Neck/cloaks.yml @@ -0,0 +1,10 @@ +- type: entity + parent: ClothingNeckBase + id: ClothingNeckCloakSheriff + name: sheriff's cloak + description: An exquisite brown and green cloak fitting for those who can assert dominance over wrongdoers. Take a stab at being civil in prosecution! + components: + - type: Sprite + sprite: _NF/Clothing/Neck/Cloaks/nfsdsheriff.rsi + - type: StealTarget + stealGroup: HeadCloak \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Neck/mantles.yml b/Resources/Prototypes/_NF/Entities/Clothing/Neck/mantles.yml index e9bd9a13b4d..f4867fbf3e6 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Neck/mantles.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Neck/mantles.yml @@ -35,3 +35,14 @@ containers: item: - Plunger + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckMantleSheriff + name: sheriff's mantle + description: Shootouts with nukies are just another Tuesday for this Sheriff. This mantle is a symbol of commitment to the station. + components: + - type: Sprite + sprite: _NF/Clothing/Neck/Mantles/nfsdsheriff.rsi + - type: Clothing + sprite: _NF/Clothing/Neck/Mantles/nfsdsheriff.rsi diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Neck/scarfs.yml b/Resources/Prototypes/_NF/Entities/Clothing/Neck/scarfs.yml index 29c406961bd..ea7381b1775 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Neck/scarfs.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Neck/scarfs.yml @@ -22,3 +22,82 @@ sprite: _NF/Clothing/Neck/Scarfs/pilot.rsi - type: Clothing sprite: _NF/Clothing/Neck/Scarfs/pilot.rsi + +- type: entity # Base Badge + parent: ClothingNeckBase + id: ClothingNeckNfsdBadge + name: nfsd badge + description: Respect my authority! + abstract: true + components: + - type: Sprite + sprite: _NF/Clothing/Neck/Scarfs/nfsd_bronze_badge.rsi + layers: [] + - type: Clothing + sprite: _NF/Clothing/Neck/Scarfs/nfsd_bronze_badge.rsi + +- type: entity + parent: ClothingNeckNfsdBadge + id: ClothingNeckNfsdBadgeSecurityCadet + suffix: Bronze - Cadet + +- type: entity + parent: ClothingNeckNfsdBadge + id: ClothingNeckNfsdBadgeSecurity + suffix: Silver - Deputy + components: + - type: Sprite + sprite: _NF/Clothing/Neck/Scarfs/nfsd_silver_badge.rsi + - type: Clothing + sprite: _NF/Clothing/Neck/Scarfs/nfsd_silver_badge.rsi + +- type: entity + parent: ClothingNeckNfsdBadge + id: ClothingNeckNfsdBadgeDetective + suffix: Silver - Detective + components: + - type: Sprite + sprite: _NF/Clothing/Neck/Scarfs/nfsd_silver_badge.rsi + - type: Clothing + sprite: _NF/Clothing/Neck/Scarfs/nfsd_silver_badge.rsi + +- type: entity + parent: ClothingNeckNfsdBadge + id: ClothingNeckNfsdBadgeBrigmedic + suffix: Silver - Brigmedic + components: + - type: Sprite + sprite: _NF/Clothing/Neck/Scarfs/nfsd_silver_badge.rsi + - type: Clothing + sprite: _NF/Clothing/Neck/Scarfs/nfsd_silver_badge.rsi + +- type: entity + parent: ClothingNeckNfsdBadge + id: ClothingNeckNfsdBadgeSeniorOfficer + suffix: Gold - Sergeant + components: + - type: Sprite + sprite: _NF/Clothing/Neck/Scarfs/nfsd_gold_badge.rsi + - type: Clothing + sprite: _NF/Clothing/Neck/Scarfs/nfsd_gold_badge.rsi + +- type: entity + parent: ClothingNeckNfsdBadge + id: ClothingNeckNfsdBadgeWarden + suffix: Gold - Bailiff + components: + - type: Sprite + sprite: _NF/Clothing/Neck/Scarfs/nfsd_gold_badge.rsi + - type: Clothing + sprite: _NF/Clothing/Neck/Scarfs/nfsd_gold_badge.rsi + +- type: entity + parent: ClothingNeckNfsdBadge + id: ClothingNeckNfsdBadgeHoS + suffix: Star - Sheriff + components: + - type: Sprite + sprite: _NF/Clothing/Neck/Scarfs/nfsd_star_badge.rsi + - type: Clothing + sprite: _NF/Clothing/Neck/Scarfs/nfsd_star_badge.rsi + diff --git a/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/armor.yml index a7c4ee65059..1dd5d735183 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/armor.yml @@ -48,3 +48,28 @@ - type: ExplosionResistance damageCoefficient: 0.60 - type: Contraband + +- type: entity + parent: ClothingOuterBaseLarge + id: ClothingOuterArmorNfsdArmor + name: nfsd armor + description: get shot, maybe survive? + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Armor/nfsd_armor.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Armor/nfsd_armor.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.6 + Slash: 0.6 + Piercing: 0.5 + Heat: 0.6 + Caustic: 0.6 + - type: ClothingSpeedModifier + walkModifier: 1.0 + sprintModifier: 1.0 + - type: ExplosionResistance + damageCoefficient: 0.60 + - type: GroupExamine diff --git a/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/coats.yml index a7c847cde32..47f60714d90 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/coats.yml @@ -50,3 +50,58 @@ sprite: _NF/Clothing/OuterClothing/Misc/cardinal_robe.rsi - type: ToggleableClothing clothingPrototype: ClothingHeadHatHoodCardinalHood + +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatNfsdBomber + name: nfsd bomber + description: Lookin slick Tom. + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Misc/nfsd_bomber.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Misc/nfsd_bomber.rsi + +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatNfsdBomberBrigmed + name: nfsd brigmedic bomber + description: Blood may stain. + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Misc/nfsd_brigmed_bomber.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Misc/nfsd_brigmed_bomber.rsi + +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatNfsdFormal + name: nfsd formal coat + description: Snazzy. + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Misc/nfsd_formal.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Misc/nfsd_formal.rsi + +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatNfsdFormalSheriff + name: nfsd sheriff's formal coat + description: Snazzier. + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Misc/nfsd_sheriff_formal.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Misc/nfsd_sheriff_formal.rsi + +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatNfsdLongCoat + name: nfsd long coat + description: Big iron on his hip.. + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Misc/nfsd_long.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Misc/nfsd_long.rsi diff --git a/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/hardsuits.yml index 5add01ecc37..67254ccedc5 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/hardsuits.yml @@ -107,7 +107,7 @@ - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitERTMailCarrier -# MAXIM Nerfed: mining hardsuit stats, but slightly worse expl and piercing res, better caustic res, better movement speed +# MAXIM Nerfed: used best stats from spationaut, mining and luxury hardsuits, additionally increased caustic resistance - type: entity parent: ClothingOuterHardsuitMaxim id: ClothingOuterHardsuitMaximPrototype @@ -119,19 +119,19 @@ - type: Clothing sprite: _NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi - type: ExplosionResistance - damageCoefficient: 0.6 + damageCoefficient: 0.5 - type: Armor modifiers: coefficients: Blunt: 0.7 Slash: 0.7 - Piercing: 0.6 + Piercing: 0.5 Heat: 0.8 Radiation: 0.3 Caustic: 0.5 - type: ClothingSpeedModifier - walkModifier: 0.9 - sprintModifier: 0.8 + walkModifier: 0.8 + sprintModifier: 0.9 - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitMaximPrototype @@ -172,3 +172,69 @@ sprite: Clothing/OuterClothing/Hardsuits/syndicate.rsi - type: Clothing sprite: Clothing/OuterClothing/Hardsuits/syndicate.rsi + - type: Contraband + +- type: entity + parent: ClothingOuterHardsuitSecuritypatrol + id: ClothingOuterHardsuitNfsdBronze + name: nfsd bronze patrol hardsuit + description: A special suit that protects from the danger of space, employed by nfsd patrol officers. Not certified to be blunderbuss proof. + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Hardsuits/nfsd_bronze.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Hardsuits/nfsd_bronze.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitNfsdBronze + +- type: entity + parent: ClothingOuterHardsuitSecurity + id: ClothingOuterHardsuitNfsdSilver + name: nfsd silver patrol hardsuit + description: A special suit that protects from the danger of space, employed by nfsd patrol officers. Not certified to be blunderbuss proof. + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Hardsuits/nfsd_silver.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Hardsuits/nfsd_silver.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitNfsdSilver + +- type: entity + parent: ClothingOuterHardsuitWarden + id: ClothingOuterHardsuitNfsdGold + name: nfsd gold patrol hardsuit + description: A special suit that protects from the danger of space, employed by nfsd patrol officers. Not certified to be blunderbuss proof. + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Hardsuits/nfsd_gold.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Hardsuits/nfsd_gold.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitNfsdGold + +- type: entity + parent: ClothingOuterHardsuitSecurityRed + id: ClothingOuterHardsuitNfsdSheriff + name: nfsd sheriff patrol hardsuit + description: A special suit that protects from the danger of space, employed by nfsd patrol officers. Not certified to be blunderbuss proof. + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Hardsuits/nfsd_sheriff.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Hardsuits/nfsd_sheriff.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitNfsdSheriff + +- type: entity + parent: ClothingOuterHardsuitBrigmedic + id: ClothingOuterHardsuitNfsdBrigMed + name: nfsd brigmedic patrol hardsuit + description: A special suit that protects from the danger of space, employed by nfsd patrol officers. Not certified to be blunderbuss proof. + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Hardsuits/nfsd_brigmed.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Hardsuits/nfsd_brigmed.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitNfsdBrigmed diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Shoes/boots.yml b/Resources/Prototypes/_NF/Entities/Clothing/Shoes/boots.yml index f2c8ba0fdc6..8fae5818cf1 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Shoes/boots.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Shoes/boots.yml @@ -9,3 +9,25 @@ - type: Clothing sprite: _NF/Clothing/Shoes/Boots/pilot.rsi - type: Matchbox + +- type: entity + parent: ClothingShoesMilitaryBase + id: ClothingShoesBootsNFSDBrown + name: nfsd brown boots + description: Stylish boots for running in circles on a deck during emergencies. + components: + - type: Sprite + sprite: _NF/Clothing/Shoes/Boots/nfsd_brown_boots.rsi + - type: Clothing + sprite: _NF/Clothing/Shoes/Boots/nfsd_brown_boots.rsi + +- type: entity + parent: ClothingShoesMilitaryBase + id: ClothingShoesBootsNFSDCream + name: nfsd cream boots + description: Stylish boots for running in circles on a deck during emergencies. + components: + - type: Sprite + sprite: _NF/Clothing/Shoes/Boots/nfsd_cream_boots.rsi + - type: Clothing + sprite: _NF/Clothing/Shoes/Boots/nfsd_cream_boots.rsi \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Shoes/magboots.yml b/Resources/Prototypes/_NF/Entities/Clothing/Shoes/magboots.yml index 18a9f05d5ee..fb648bde7a0 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Shoes/magboots.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Shoes/magboots.yml @@ -1,5 +1,5 @@ - type: entity - parent: ClothingShoesBootsMag + parent: [ClothingShoesBootsMag, ClothingShoesBootsCombat] id: ClothingShoesBootsMagCombat name: combat magboots description: Combat magnetic boots, often used during extravehicular activity to ensure the user remains safely attached to the vehicle. @@ -14,29 +14,19 @@ - type: ClothingSpeedModifier walkModifier: 0.95 sprintModifier: 0.9 - enabled: false - - type: NoSlip - - type: MovementSpeedModifier - weightlessAcceleration: 1 - weightlessFriction: 0.3 - weightlessModifier: 1.2 - - type: Tag - tags: - - WhitelistChameleon - type: entity parent: ClothingShoesBootsMagCombat - id: ClothingShoesBootsMagMercenary - name: mercenary magboots - description: Mercenary magnetic boots, often used during extravehicular activity to ensure the user remains safely attached to the vehicle. + id: ClothingShoesBootsMagNfsd + name: nfsd magboots components: - type: Sprite - sprite: _NF/Clothing/Shoes/Boots/magboots-mercenary.rsi + sprite: _NF/Clothing/Shoes/Boots/magboots-nfsd.rsi state: icon - type: Clothing - sprite: _NF/Clothing/Shoes/Boots/magboots-mercenary.rsi + sprite: _NF/Clothing/Shoes/Boots/magboots-nfsd.rsi - type: Magboots - toggleAction: ActionToggleMagbootsMercenary + toggleAction: ActionToggleMagbootsNfsd - type: entity parent: ClothingShoesBootsMagCombat @@ -52,6 +42,20 @@ - type: Magboots toggleAction: ActionToggleMagbootsPirate +- type: entity + parent: ClothingShoesBootsMagCombat + id: ClothingShoesBootsMagMercenary + name: mercenary magboots + description: Mercenary magnetic boots, often used during extravehicular activity to ensure the user remains safely attached to the vehicle. + components: + - type: Sprite + sprite: _NF/Clothing/Shoes/Boots/magboots-mercenary.rsi + state: icon + - type: Clothing + sprite: _NF/Clothing/Shoes/Boots/magboots-mercenary.rsi + - type: Magboots + toggleAction: ActionToggleMagbootsMercenary + - type: entity parent: ClothingShoesBootsMag id: ClothingShoesBootsMagGaloshes @@ -77,13 +81,13 @@ iconOn: _NF/Clothing/Shoes/Boots/magboots-combat.rsi/icon-on.png - type: entity - id: ActionToggleMagbootsMercenary + id: ActionToggleMagbootsNfsd parent: ActionBaseToggleMagboots noSpawn: true components: - type: InstantAction - icon: { sprite: _NF/Clothing/Shoes/Boots/magboots-mercenary.rsi, state: icon } - iconOn: _NF/Clothing/Shoes/Boots/magboots-mercenary.rsi/icon-on.png + icon: { sprite: _NF/Clothing/Shoes/Boots/magboots-nfsd.rsi, state: icon } + iconOn: _NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/icon-on.png - type: entity id: ActionToggleMagbootsPirate @@ -94,6 +98,15 @@ icon: { sprite: _NF/Clothing/Shoes/Boots/magboots-pirate.rsi, state: icon } iconOn: _NF/Clothing/Shoes/Boots/magboots-pirate.rsi/icon-on.png +- type: entity + id: ActionToggleMagbootsMercenary + parent: ActionBaseToggleMagboots + noSpawn: true + components: + - type: InstantAction + icon: { sprite: _NF/Clothing/Shoes/Boots/magboots-mercenary.rsi, state: icon } + iconOn: _NF/Clothing/Shoes/Boots/magboots-mercenary.rsi/icon-on.png + - type: entity id: ActionToggleMagbootsGaloshes parent: ActionBaseToggleMagboots diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Uniforms/jumpskirts.yml b/Resources/Prototypes/_NF/Entities/Clothing/Uniforms/jumpskirts.yml index f1b442392ea..44818b16036 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Uniforms/jumpskirts.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Uniforms/jumpskirts.yml @@ -53,3 +53,25 @@ sprite: _NF/Clothing/Uniforms/Jumpskirt/security_guard.rsi - type: Clothing sprite: _NF/Clothing/Uniforms/Jumpskirt/security_guard.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtNfsd + name: nfsd jumpskirt + description: A long sleeved jumpskirt produced for deputy sheriff's. Designed to reduce chaffing between the legs for the comfort of skin, slime, scales, fluff, and wood + components: + - type: Sprite + sprite: _NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt.rsi + - type: Clothing + sprite: _NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtNfsdShort + name: nfsd jumpskirt + description: A short sleeved jumpskirt produced for deputy sheriff's. Designed to reduce chaffing between the legs for the comfort of skin, slime, scales, fluff, and wood + components: + - type: Sprite + sprite: _NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt_short.rsi + - type: Clothing + sprite: _NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt_short.rsi \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/_NF/Entities/Clothing/Uniforms/jumpsuits.yml index 3cce0c773d1..eb98b2777e0 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Uniforms/jumpsuits.yml @@ -75,3 +75,69 @@ sprite: _NF/Clothing/Uniforms/Jumpsuit/ert_mailcarrier.rsi - type: Clothing sprite: _NF/Clothing/Uniforms/Jumpsuit/ert_mailcarrier.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitNfsd + name: nfsd jumpsuit + description: A long sleeved jumpsuit produced for deputy sheriff's. Designed to reduce chaffing between the legs for the comfort of skin, slime, scales, fluff, and wood + components: + - type: Sprite + sprite: _NF/Clothing/Uniforms/Jumpsuit/nfsd_jump.rsi + - type: Clothing + sprite: _NF/Clothing/Uniforms/Jumpsuit/nfsd_jump.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitNfsdShort + name: nfsd jumpsuit + description: A short sleeved jumpsuit produced for deputy sheriff's. Designed to reduce chaffing between the legs for the comfort of skin, slime, scales, fluff, and wood + components: + - type: Sprite + sprite: _NF/Clothing/Uniforms/Jumpsuit/nfsd_jump_short.rsi + - type: Clothing + sprite: _NF/Clothing/Uniforms/Jumpsuit/nfsd_jump_short.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitNfsdTacBlack + name: nfsd tactical jumpsuit + description: A tactical jumpsuit for deputies in the field. + components: + - type: Sprite + sprite: _NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_black.rsi + - type: Clothing + sprite: _NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_black.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitNfsdTacGray + name: nfsd tactical jumpsuit + description: A tactical jumpsuit for deputies in the field. + components: + - type: Sprite + sprite: _NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_gray.rsi + - type: Clothing + sprite: _NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_gray.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitNfsdTacCamo + name: nfsd tactical jumpsuit + description: A tactical jumpsuit for deputies in the field. + components: + - type: Sprite + sprite: _NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_camo.rsi + - type: Clothing + sprite: _NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_camo.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitNfsdTacCream + name: nfsd tactical jumpsuit + description: A tactical jumpsuit for deputies in the field. + components: + - type: Sprite + sprite: _NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_cream.rsi + - type: Clothing + sprite: _NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_cream.rsi diff --git a/Resources/Prototypes/_NF/Entities/Mobs/NPCs/artifact_construct.yml b/Resources/Prototypes/_NF/Entities/Mobs/NPCs/artifact_construct.yml new file mode 100644 index 00000000000..c3a7dc02cf6 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Mobs/NPCs/artifact_construct.yml @@ -0,0 +1,131 @@ +- type: entity + abstract: true + parent: + - BaseMob + - MobDamageable + - MobCombat + id: SimpleArtifactMobBase # Mob without barotrauma, freezing and asphyxiation (for space carps!?) + suffix: AI + components: + - type: NpcFactionMember + factions: + - ArtifactConstruct + - type: HTN + rootTask: + task: SimpleHostileCompound + blackboard: + NavClimb: !type:Bool + true + NavSmash: !type:Bool + true + - type: MobThresholds + thresholds: + 0: Alive + 120: Dead + - type: Body + - type: Climbing + - type: NameIdentifier + group: GenericNumber + - type: SlowOnDamage + speedModifierThresholds: + 60: 0.7 + 80: 0.5 + - type: ZombieImmune # Artifact constructs should not be able to become zombie + - type: MobPrice + price: 1000 # Living critters are valuable in space. + +- type: entity + parent: [ SimpleArtifactMobBase, FlyingMobBase ] + id: BaseMobArtifactConstruct + name: artifact construct + description: A towering golem crafted from twisted metal and ancient stones. + abstract: true + components: + - type: Tag + tags: + - DoorBumpOpener + - type: Sprite + drawdepth: Mobs + sprite: _NF/Mobs/Aliens/grim_forged.rsi + - type: MovementAlwaysTouching + - type: MovementSpeedModifier + baseWalkSpeed: 1 + baseSprintSpeed: 1.5 + - type: StatusEffects + allowed: + - SlowedDown + - Electrocution + - type: MobState + allowedStates: + - Alive + - Dead + - type: CombatMode + - type: MeleeWeapon + damage: + types: + Blunt: 20 + animation: WeaponArcFist + - type: ReplacementAccent + accent: genericAggressive + +- type: entity + parent: BaseMobArtifactConstruct + id: MobGrimForged + name: artifact construct 1 + components: + - type: Sprite + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: move + - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + state: flash + shader: unshaded + - map: [ "clownedon" ] + sprite: "_NF/Effects/creampie_64.rsi" + state: "creampie_grimforged" + visible: false + - type: GenericVisualizer + visuals: + enum.CreamPiedVisuals.Creamed: + clownedon: + True: { visible: true } + False: { visible: false } + - type: AmbientSound + volume: -6 + range: 8 + sound: + path: /Audio/_NF/Ambience/force-field.ogg + - type: CreamPied + - type: DamageStateVisuals + states: + Alive: + Base: move + Critical: + Base: dead + Dead: + Base: dead + - type: MobThresholds + thresholds: + 0: Alive + 50: Dead + - type: HTN + rootTask: + task: SimpleRangedHostileCompound + - type: Stamina + critThreshold: 300 + - type: HitscanBatteryAmmoProvider + proto: RedLightLaser + fireCost: 50 + - type: BatterySelfRecharger + autoRecharge: true + autoRechargeRate: 50 + - type: Battery + maxCharge: 1000 + startingCharge: 1000 + - type: Gun + fireRate: 1 + useKey: false + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: /Audio/Weapons/Guns/Gunshots/laser_cannon.ogg diff --git a/Resources/Prototypes/_NF/Entities/Objects/Devices/Misc/identification_cards.yml b/Resources/Prototypes/_NF/Entities/Objects/Devices/Misc/identification_cards.yml index 2b7e49e73b4..4ad19490f5a 100644 --- a/Resources/Prototypes/_NF/Entities/Objects/Devices/Misc/identification_cards.yml +++ b/Resources/Prototypes/_NF/Entities/Objects/Devices/Misc/identification_cards.yml @@ -45,6 +45,120 @@ - type: Item heldPrefix: silver +- type: entity + parent: IDCardStandard + id: nfsdcadetID + name: nfsd cadet ID card + components: + - type: PresetIdCard + job: SecurityCadet + - type: Sprite + sprite: _NF/Objects/Misc/id_cards.rsi + layers: + - state: nfsd + - state: idnfsdcadet + - type: Clothing + slots: + - idcard + sprite: _NF/Objects/Misc/id_cards.rsi + - type: Item + heldPrefix: nfsd + +- type: entity + parent: IDCardStandard + id: nfsddeputyID + name: nfsd deputy ID card + components: + - type: PresetIdCard + job: SecurityOfficer + - type: Sprite + sprite: _NF/Objects/Misc/id_cards.rsi + layers: + - state: nfsd + - state: idnfsddeputy + - type: Clothing + slots: + - idcard + sprite: _NF/Objects/Misc/id_cards.rsi + - type: Item + heldPrefix: nfsd + +- type: entity + parent: IDCardStandard + id: nfsdbrigmedicID + name: nfsd brigmedic ID card + components: + - type: PresetIdCard + job: Brigmedic + - type: Sprite + sprite: _NF/Objects/Misc/id_cards.rsi + layers: + - state: nfsd + - state: idnfsdbrigmed + - type: Clothing + slots: + - idcard + sprite: _NF/Objects/Misc/id_cards.rsi + - type: Item + heldPrefix: nfsd + +- type: entity + parent: IDCardStandard + id: nfsdsergeantID + name: nfsd sergeant ID card + components: + - type: PresetIdCard + job: SeniorOfficer + - type: Sprite + sprite: _NF/Objects/Misc/id_cards.rsi + layers: + - state: nfsd + - state: idnfsdsergeant + - type: Clothing + slots: + - idcard + sprite: _NF/Objects/Misc/id_cards.rsi + - type: Item + heldPrefix: nfsd + +- type: entity + parent: IDCardStandard + id: nfsdbailiffID + name: nfsd bailiff ID card + components: + - type: PresetIdCard + job: Warden + - type: Sprite + sprite: _NF/Objects/Misc/id_cards.rsi + layers: + - state: nfsd + - state: idnfsdbailiff + - type: Clothing + slots: + - idcard + sprite: _NF/Objects/Misc/id_cards.rsi + - type: Item + heldPrefix: nfsd + +- type: entity + parent: IDCardStandard + id: nfsdsheriffID + name: nfsd sheriff ID card + components: + - type: PresetIdCard + job: HeadOfSecurity + - type: Sprite + sprite: _NF/Objects/Misc/id_cards.rsi + layers: + - state: silver + - state: idnfsdsheriff + - type: Clothing + slots: + - idcard + sprite: _NF/Objects/Misc/id_cards.rsi + - type: Item + heldPrefix: silver + - type: entity parent: SecurityIDCard id: SecurityGuardIDCard diff --git a/Resources/Prototypes/_NF/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/_NF/Entities/Objects/Devices/pda.yml index 81f7488b551..0b450d9c936 100644 --- a/Resources/Prototypes/_NF/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/_NF/Entities/Objects/Devices/pda.yml @@ -100,3 +100,171 @@ components: - type: Pda id: ERTMailCarrierIDCard + +- type: entity + parent: BasePDA + id: NfsdSheriff + name: sheriff PDA + description: Whosoever bears this PDA is the law. + components: + - type: Pda + id: nfsdsheriffID + state: pda-sheriff + - type: PdaBorderColor + borderColor: "#FFFDD0" + accentHColor: "#896b49" + - type: Sprite + sprite: _NF/Objects/Devices/pda.rsi + layers: + - map: [ "enum.PdaVisualLayers.Base" ] + - state: "light_overlay" + map: [ "enum.PdaVisualLayers.Flashlight" ] + shader: "unshaded" + visible: false + - state: "id_overlay" + map: [ "enum.PdaVisualLayers.IdLight" ] + shader: "unshaded" + visible: false + - type: Icon + sprite: _NF/Objects/Devices/pda.rsi + state: pda-sheriff + +- type: entity + parent: BasePDA + id: NfsdCadet + name: cadet PDA + description: Whosoever bears this PDA could be the law. + components: + - type: Pda + id: nfsdcadetID + state: pda-cadet + - type: PdaBorderColor + borderColor: "#FFFDD0" + accentHColor: "#896b49" + - type: Sprite + sprite: _NF/Objects/Devices/pda.rsi + layers: + - map: [ "enum.PdaVisualLayers.Base" ] + - state: "light_overlay" + map: [ "enum.PdaVisualLayers.Flashlight" ] + shader: "unshaded" + visible: false + - state: "id_overlay" + map: [ "enum.PdaVisualLayers.IdLight" ] + shader: "unshaded" + visible: false + - type: Icon + sprite: _NF/Objects/Devices/pda.rsi + state: pda-cadet + +- type: entity + parent: BasePDA + id: NfsdDeputy + name: deputy PDA + description: Whosoever bears this PDA is close to being the law. + components: + - type: Pda + id: nfsddeputyID + state: pda-deputy + - type: PdaBorderColor + borderColor: "#FFFDD0" + accentHColor: "#896b49" + - type: Sprite + sprite: _NF/Objects/Devices/pda.rsi + layers: + - map: [ "enum.PdaVisualLayers.Base" ] + - state: "light_overlay" + map: [ "enum.PdaVisualLayers.Flashlight" ] + shader: "unshaded" + visible: false + - state: "id_overlay" + map: [ "enum.PdaVisualLayers.IdLight" ] + shader: "unshaded" + visible: false + - type: Icon + sprite: _NF/Objects/Devices/pda.rsi + state: pda-deputy + +- type: entity + parent: BasePDA + id: NfsdBrigmedic + name: brigmedic PDA + description: Whosoever bears this PDA heals the law. + components: + - type: Pda + id: nfsdbrigmedicID + state: pda-brigmed + - type: PdaBorderColor + borderColor: "#FFFDD0" + accentHColor: "#896b49" + - type: Sprite + sprite: _NF/Objects/Devices/pda.rsi + layers: + - map: [ "enum.PdaVisualLayers.Base" ] + - state: "light_overlay" + map: [ "enum.PdaVisualLayers.Flashlight" ] + shader: "unshaded" + visible: false + - state: "id_overlay" + map: [ "enum.PdaVisualLayers.IdLight" ] + shader: "unshaded" + visible: false + - type: Icon + sprite: _NF/Objects/Devices/pda.rsi + state: pda-brigmed + +- type: entity + parent: BasePDA + id: NfsdSergeant + name: sergeant PDA + description: Whosoever bears this PDA puts the law on their back. + components: + - type: Pda + id: nfsdsergeantID + state: pda-sergeant + - type: PdaBorderColor + borderColor: "#FFFDD0" + accentHColor: "#896b49" + - type: Sprite + sprite: _NF/Objects/Devices/pda.rsi + layers: + - map: [ "enum.PdaVisualLayers.Base" ] + - state: "light_overlay" + map: [ "enum.PdaVisualLayers.Flashlight" ] + shader: "unshaded" + visible: false + - state: "id_overlay" + map: [ "enum.PdaVisualLayers.IdLight" ] + shader: "unshaded" + visible: false + - type: Icon + sprite: _NF/Objects/Devices/pda.rsi + state: pda-sergeant + +- type: entity + parent: BasePDA + id: NfsdBailiff + name: bailiff PDA + description: Whosoever bears this PDA puts the law on their back. + components: + - type: Pda + id: nfsdbailiffID + state: pda-bailiff + - type: PdaBorderColor + borderColor: "#FFFDD0" + accentHColor: "#896b49" + - type: Sprite + sprite: _NF/Objects/Devices/pda.rsi + layers: + - map: [ "enum.PdaVisualLayers.Base" ] + - state: "light_overlay" + map: [ "enum.PdaVisualLayers.Flashlight" ] + shader: "unshaded" + visible: false + - state: "id_overlay" + map: [ "enum.PdaVisualLayers.IdLight" ] + shader: "unshaded" + visible: false + - type: Icon + sprite: _NF/Objects/Devices/pda.rsi + state: pda-bailiff diff --git a/Resources/Prototypes/_NF/Roles/Jobs/Command/stc.yml b/Resources/Prototypes/_NF/Roles/Jobs/Command/stc.yml index f385ab13bf5..6d4cca52fcc 100644 --- a/Resources/Prototypes/_NF/Roles/Jobs/Command/stc.yml +++ b/Resources/Prototypes/_NF/Roles/Jobs/Command/stc.yml @@ -4,6 +4,7 @@ description: job-description-stc playTimeTracker: JobStc startingGear: StcGear + alwaysUseSpawner: true requirements: - !type:OverallPlaytimeRequirement time: 72000 # 20 hrs diff --git a/Resources/Prototypes/Roles/Jobs/Security/brigmedic.yml b/Resources/Prototypes/_NF/Roles/Jobs/NFSD/brigmedic.yml similarity index 57% rename from Resources/Prototypes/Roles/Jobs/Security/brigmedic.yml rename to Resources/Prototypes/_NF/Roles/Jobs/NFSD/brigmedic.yml index cdbee2ebbda..0a219a6fd5b 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/brigmedic.yml +++ b/Resources/Prototypes/_NF/Roles/Jobs/NFSD/brigmedic.yml @@ -28,18 +28,19 @@ - type: startingGear id: BrigmedicGear equipment: - jumpsuit: ClothingUniformJumpsuitBrigmedic - outerClothing: ClothingOuterCoatAMG - back: ClothingBackpackBrigmedicFilled - shoes: ClothingShoesBootsCombatFilled + jumpsuit: ClothingUniformJumpsuitNfsd # Frontier + outerClothing: ClothingOuterCoatNfsdBomberBrigmed # Frontier + back: ClothingBackpacknfsdBrigmedFilled # Frontier + shoes: ClothingShoesBootsNFSDCream # Frontier gloves: ClothingHandsGlovesNitrile eyes: ClothingEyesHudMedical - head: ClothingHeadHatBeretSecurity - id: BrigmedicPDA - ears: ClothingHeadsetBrigmedic - belt: ClothingBeltMedicalFilled + head: ClothingHeadHatNfsdBeretCream # Frontier + id: NfsdBrigmedic # Frontier + ears: ClothingHeadsetNFSDbrown # Frontier + belt: ClothingBeltNfsdWebbingFilledBrigmedic # Frontier + neck: ClothingNeckNfsdBadgeBrigmedic # Frontier pocket1: WeaponPistolMk58Nonlethal # Frontier - innerClothingSkirt: ClothingUniformJumpskirtBrigmedic - satchel: ClothingBackpackSatchelBrigmedicFilled - duffelbag: ClothingBackpackDuffelBrigmedicFilled + innerClothingSkirt: ClothingUniformJumpskirtNfsd # Frontier + satchel: ClothingBackpackSatchelnfsdBrigmedFilled # Frontier + duffelbag: ClothingBackpackDuffelnfsdBrigmed # Frontier messenger: ClothingBackpackMessengerBrigmedicFilled # Frontier diff --git a/Resources/Prototypes/_NF/Roles/Jobs/NFSD/detective.yml b/Resources/Prototypes/_NF/Roles/Jobs/NFSD/detective.yml new file mode 100644 index 00000000000..d0d5922145e --- /dev/null +++ b/Resources/Prototypes/_NF/Roles/Jobs/NFSD/detective.yml @@ -0,0 +1,42 @@ +- type: job + id: Detective + name: job-name-detective + description: job-description-detective + playTimeTracker: JobDetective + requirements: + - !type:OverallPlaytimeRequirement + time: 36000 # Frontier - 10 hrs + startingGear: DetectiveGear + icon: "JobIconDetective" + supervisors: job-supervisors-hos + canBeAntag: false + access: + - Security + - Brig + - Maintenance + - Service + - Detective + - External # Frontier + - Mercenary # Frontier + - Captain # Frontier + special: + - !type:AddImplantSpecial + implants: [ MindShieldImplant, TrackingImplant ] + +- type: startingGear + id: DetectiveGear + equipment: + jumpsuit: ClothingUniformJumpsuitDetective + back: ClothingBackpackFilledDetective + shoes: ClothingShoesBootsCombatFilled + eyes: ClothingEyesGlassesSunglasses + head: ClothingHeadHatFedoraBrown + outerClothing: ClothingOuterVestDetective + id: DetectivePDA + ears: ClothingHeadsetSecurity + belt: ClothingBeltHolsterFilled + gloves: ClothingHandsGlovesCombat # Frontier + innerClothingSkirt: ClothingUniformJumpskirtDetective + satchel: ClothingBackpackSatchelFilledDetective + duffelbag: ClothingBackpackDuffelFilledDetective + messenger: ClothingBackpackMessengerSecurityFilledDetective # Frontier diff --git a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml b/Resources/Prototypes/_NF/Roles/Jobs/NFSD/head_of_security.yml similarity index 72% rename from Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml rename to Resources/Prototypes/_NF/Roles/Jobs/NFSD/head_of_security.yml index 1d7935c811f..efcc21fb94d 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml +++ b/Resources/Prototypes/_NF/Roles/Jobs/NFSD/head_of_security.yml @@ -21,6 +21,7 @@ # time: 108000 # 30 hrs weight: 10 startingGear: HoSGear + alwaysUseSpawner: true icon: "JobIconHeadOfSecurity" requireAdminNotify: true supervisors: job-supervisors-hop # Frontier @@ -72,21 +73,21 @@ - type: startingGear id: HoSGear equipment: - jumpsuit: ClothingUniformJumpsuitHoS - back: ClothingBackpackHOSFilled - shoes: ClothingShoesBootsCombatFilled - outerClothing: ClothingOuterCoatHoSTrench - eyes: ClothingEyesGlassesSunglasses - head: ClothingHeadHatBeretHoS - id: HoSPDA - gloves: ClothingHandsGlovesCombat - ears: ClothingHeadsetAltSecurity - belt: ClothingBeltSecurityFilled + jumpsuit: ClothingUniformJumpsuitNfsdTacGray # Frontier + back: ClothingBackpacknfsdsheriffFilled # Frontier + shoes: ClothingShoesBootsNFSDBrown # Frontier + outerClothing: ClothingOuterCoatNfsdFormalSheriff # Frontier + eyes: ClothingEyesGlassesNFSD # Frontier + head: ClothingHeadHatNfsdCampaign # Frontier + id: NfsdSheriff # Frontier + gloves: ClothingHandsGlovesCombatNfsdCream # Frontier + ears: ClothingHeadsetAltNFSDCreamandBrown # Frontier + belt: ClothingBeltNfsdWebbingFilled # Frontier pocket1: WeaponPistolMk58Nonlethal pocket2: HoloprojectorSecurity # Frontier - neck: ClothingNeckCloakHos # Frontier + neck: ClothingNeckMantleSheriffFilled # Frontier suitstorage: WeaponEnergyGunMultiphase # Frontier - DeltaV gun - innerClothingSkirt: ClothingUniformJumpskirtHoS - satchel: ClothingBackpackSatchelHOSFilled - duffelbag: ClothingBackpackDuffelHOSFilled + innerClothingSkirt: ClothingUniformJumpskirtNfsd # Frontier + satchel: ClothingBackpackSatchelnfsdsheriffFilled # Frontier + duffelbag: ClothingBackpackDuffelnfsdsheriffFilled # Frontier messenger: ClothingBackpackMessengerHOSFilled # Frontier diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml b/Resources/Prototypes/_NF/Roles/Jobs/NFSD/security_cadet.yml similarity index 56% rename from Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml rename to Resources/Prototypes/_NF/Roles/Jobs/NFSD/security_cadet.yml index 7e72037e24b..15710bcb2ce 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml +++ b/Resources/Prototypes/_NF/Roles/Jobs/NFSD/security_cadet.yml @@ -29,16 +29,20 @@ - type: startingGear id: SecurityCadetGear equipment: - jumpsuit: ClothingUniformJumpsuitColorRed - back: ClothingBackpackSecurityFilled - shoes: ClothingShoesBootsCombatFilled - outerClothing: ClothingOuterArmorBasic - id: SecurityCadetPDA - ears: ClothingHeadsetSecurity + jumpsuit: ClothingUniformJumpsuitNfsdShort # Frontier + back: ClothingBackpacknfsdFilled # Frontier + shoes: ClothingShoesBootsNFSDBrown # Frontier + outerClothing: ClothingOuterArmorNfsdArmor # Frontier + id: NfsdCadet # Frontier + ears: ClothingHeadsetNFSDbrown # Frontier pocket1: WeaponPistolMk58Nonlethal pocket2: BookSecurity - gloves: ClothingHandsGlovesCombat # Frontier - innerClothingSkirt: ClothingUniformJumpskirtColorRed - satchel: ClothingBackpackSatchelSecurityFilled - duffelbag: ClothingBackpackDuffelSecurityFilled + gloves: ClothingHandsGlovesCombatNfsdBrown # Frontier + belt: ClothingBeltNfsd # Frontier + head: ClothingHeadHatNfsdSmallCampaign # Frontier + eyes: ClothingEyesGlassesNFSD # Frontier + neck: ClothingNeckNfsdBadgeSecurityCadet # Frontier + innerClothingSkirt: ClothingUniformJumpskirtNfsdShort # Frontier + satchel: ClothingBackpackSatchelnfsdFilled # Frontier + duffelbag: ClothingBackpackDuffelnfsdFilled # Frontier messenger: ClothingBackpackMessengerSecurityFilled # Frontier diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml b/Resources/Prototypes/_NF/Roles/Jobs/NFSD/security_officer.yml similarity index 50% rename from Resources/Prototypes/Roles/Jobs/Security/security_officer.yml rename to Resources/Prototypes/_NF/Roles/Jobs/NFSD/security_officer.yml index 03f7932f84d..1580a5a1e50 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml +++ b/Resources/Prototypes/_NF/Roles/Jobs/NFSD/security_officer.yml @@ -25,18 +25,19 @@ - type: startingGear id: SecurityOfficerGear equipment: - jumpsuit: ClothingUniformJumpsuitSec - back: ClothingBackpackSecurityFilled - shoes: ClothingShoesBootsCombatFilled - eyes: ClothingEyesGlassesSunglasses - head: ClothingHeadHelmetBasic - outerClothing: ClothingOuterArmorBasic - id: SecurityPDA - ears: ClothingHeadsetSecurity - belt: ClothingBeltSecurityFilled + jumpsuit: ClothingUniformJumpsuitNfsd # Frontier + back: ClothingBackpacknfsdFilled # Frontier + shoes: ClothingShoesBootsNFSDBrown # Frontier + eyes: ClothingEyesGlassesNFSD # Frontier + head: ClothingHeadHatNfsdSmallCampaign # Frontier + outerClothing: ClothingOuterArmorNfsdArmor # Frontier + id: NfsdDeputy # Frontier + ears: ClothingHeadsetNFSDbrown # Frontier + belt: ClothingBeltNfsdWebbingFilled # Frontier pocket1: WeaponPistolMk58Nonlethal - gloves: ClothingHandsGlovesCombat # Frontier - innerClothingSkirt: ClothingUniformJumpskirtSec - satchel: ClothingBackpackSatchelSecurityFilled - duffelbag: ClothingBackpackDuffelSecurityFilled + gloves: ClothingHandsGlovesCombatNfsdBrown # Frontier + neck: ClothingNeckNfsdBadgeSecurity # Frontier + innerClothingSkirt: ClothingUniformJumpskirtNfsd # Frontier + satchel: ClothingBackpackSatchelnfsdFilled # Frontier + duffelbag: ClothingBackpackDuffelnfsdFilled # Frontier messenger: ClothingBackpackMessengerSecurityFilled # Frontier diff --git a/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml b/Resources/Prototypes/_NF/Roles/Jobs/NFSD/senior_officer.yml similarity index 57% rename from Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml rename to Resources/Prototypes/_NF/Roles/Jobs/NFSD/senior_officer.yml index 4ce7e89e139..4486db85997 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml +++ b/Resources/Prototypes/_NF/Roles/Jobs/NFSD/senior_officer.yml @@ -35,18 +35,19 @@ - type: startingGear id: SeniorOfficerGear equipment: - jumpsuit: ClothingUniformJumpsuitSeniorOfficer - back: ClothingBackpackOfficerFilled # Frontier - shoes: ClothingShoesBootsCombatFilled - eyes: ClothingEyesGlassesSecurity - head: ClothingHeadHatBeret - outerClothing: ClothingOuterArmorBasic - id: SeniorOfficerPDA - ears: ClothingHeadsetSecurity - belt: ClothingBeltSecurityFilled + jumpsuit: ClothingUniformJumpsuitNfsdTacBlack # Frontier + back: ClothingBackpacknfsdFilled # Frontier + shoes: ClothingShoesBootsNFSDBrown # Frontier + eyes: ClothingEyesGlassesNFSD # Frontier + head: ClothingHeadHatNfsdBeretGreen # Frontier + outerClothing: ClothingOuterCoatNfsdLongCoat # Frontier + id: NfsdSergeant # Frontier + ears: ClothingHeadsetAltNFSDbrown # Frontier + belt: ClothingBeltNfsdFilled # Frontier pocket1: WeaponPistolMk58Nonlethal - gloves: ClothingHandsGlovesCombat # Frontier - innerClothingSkirt: ClothingUniformJumpskirtSeniorOfficer - satchel: ClothingBackpackSatchelOfficerFilled # Frontier - duffelbag: ClothingBackpackDuffelOfficerFilled # Frontier + gloves: ClothingHandsGlovesCombatNfsdCream # Frontier + neck: ClothingNeckNfsdBadgeSeniorOfficer # Frontier + innerClothingSkirt: ClothingUniformJumpskirtNfsd # Frontier + satchel: ClothingBackpackSatchelnfsdFilled # Frontier + duffelbag: ClothingBackpackDuffelnfsdFilled # Frontier messenger: ClothingBackpackMessengerOfficerFilled # Frontier diff --git a/Resources/Prototypes/Roles/Jobs/Security/warden.yml b/Resources/Prototypes/_NF/Roles/Jobs/NFSD/warden.yml similarity index 54% rename from Resources/Prototypes/Roles/Jobs/Security/warden.yml rename to Resources/Prototypes/_NF/Roles/Jobs/NFSD/warden.yml index 5c75f309761..4f0d747ed3b 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/warden.yml +++ b/Resources/Prototypes/_NF/Roles/Jobs/NFSD/warden.yml @@ -30,19 +30,20 @@ - type: startingGear id: WardenGear equipment: - head: ClothingHeadHatWarden - jumpsuit: ClothingUniformJumpsuitWarden - back: ClothingBackpackOfficerFilled # Frontier - shoes: ClothingShoesBootsCombatFilled - eyes: ClothingEyesGlassesSunglasses - outerClothing: ClothingOuterCoatWarden - id: WardenPDA - ears: ClothingHeadsetAltSecurityWarden # Frontier - belt: ClothingBeltSecurityFilled + head: ClothingHeadHatNfsdBeretBrown # Frontier + jumpsuit: ClothingUniformJumpsuitNfsdTacCream # Frontier + back: ClothingBackpacknfsdFilled # Frontier + shoes: ClothingShoesBootsNFSDCream # Frontier + eyes: ClothingEyesGlassesNFSD # Frontier + outerClothing: ClothingOuterCoatNfsdFormal # Frontier + id: NfsdBailiff # Frontier + ears: ClothingHeadsetAltNFSDgreen # Frontierr + belt: ClothingBeltNfsdWebbingFilled # Frontier pocket1: WeaponPistolMk58Nonlethal pocket2: HoloprojectorSecurity # Frontier - gloves: ClothingHandsGlovesCombat # Frontier - innerClothingSkirt: ClothingUniformJumpskirtWarden - satchel: ClothingBackpackSatchelOfficerFilled # Frontier - duffelbag: ClothingBackpackDuffelOfficerFilled # Frontier + gloves: ClothingHandsGlovesCombatNfsdCream # Frontier + neck: ClothingNeckNfsdBadgeWarden # Frontier + innerClothingSkirt: ClothingUniformJumpskirtNfsd # Frontier + satchel: ClothingBackpackSatchelnfsdFilled # Frontier + duffelbag: ClothingBackpackDuffelnfsdFilled # Frontier messenger: ClothingBackpackMessengerOfficerFilled # Frontier diff --git a/Resources/Prototypes/_NF/Roles/Jobs/Security/security_guard.yml b/Resources/Prototypes/_NF/Roles/Jobs/Security/security_guard.yml index 4c34a506c87..2db4ea183b2 100644 --- a/Resources/Prototypes/_NF/Roles/Jobs/Security/security_guard.yml +++ b/Resources/Prototypes/_NF/Roles/Jobs/Security/security_guard.yml @@ -7,6 +7,7 @@ - !type:OverallPlaytimeRequirement time: 36000 # Frontier - 10 hrs startingGear: SecurityGuardGear + alwaysUseSpawner: true icon: "JobIconSecurityGuard" supervisors: job-supervisors-hop # not hos canBeAntag: false diff --git a/Resources/Prototypes/_NF/Shipyard/cleric.yml b/Resources/Prototypes/_NF/Shipyard/Security/cleric.yml similarity index 83% rename from Resources/Prototypes/_NF/Shipyard/cleric.yml rename to Resources/Prototypes/_NF/Shipyard/Security/cleric.yml index 77422bbf2ae..da770deda75 100644 --- a/Resources/Prototypes/_NF/Shipyard/cleric.yml +++ b/Resources/Prototypes/_NF/Shipyard/Security/cleric.yml @@ -2,16 +2,16 @@ id: Cleric name: NSF Cleric description: Small support vessel used for emergency rescues and first aid. - price: 10800 #Appraisal is 10500 + price: 11800 #Appraisal is 10500 category: Small group: None mapchecker_group_override: Security # Treat this as a security vessel for mapchecker purposes - shuttlePath: /Maps/Shuttles/cleric.yml + shuttlePath: /Maps/_NF/Shuttles/Security/cleric.yml - type: gameMap id: Cleric mapName: 'NSF Cleric' - mapPath: /Maps/Shuttles/cleric.yml + mapPath: /Maps/_NF/Shuttles/Security/cleric.yml minPlayers: 0 stations: Cleric: diff --git a/Resources/Prototypes/_NF/Shipyard/empress.yml b/Resources/Prototypes/_NF/Shipyard/Security/empress.yml similarity index 84% rename from Resources/Prototypes/_NF/Shipyard/empress.yml rename to Resources/Prototypes/_NF/Shipyard/Security/empress.yml index 5fa3b127814..9d059f9eabd 100644 --- a/Resources/Prototypes/_NF/Shipyard/empress.yml +++ b/Resources/Prototypes/_NF/Shipyard/Security/empress.yml @@ -2,15 +2,15 @@ id: Empress name: NSF Empress description: A large patrol vessel capable of carrying up to 3 smaller faster attack ships. the flagship vessel of security. - price: 170200 + price: 203300 #Appraisal value is 173000 category: Large group: Security - shuttlePath: /Maps/_NF/Shuttles/empress.yml + shuttlePath: /Maps/_NF/Shuttles/Security/empress.yml - type: gameMap id: Empress mapName: 'NSF Empress' - mapPath: /Maps/_NF/Shuttles/empress.yml + mapPath: /Maps/_NF/Shuttles/Security/empress.yml minPlayers: 0 stations: Empress: diff --git a/Resources/Prototypes/_NF/Shipyard/fighter.yml b/Resources/Prototypes/_NF/Shipyard/Security/fighter.yml similarity index 86% rename from Resources/Prototypes/_NF/Shipyard/fighter.yml rename to Resources/Prototypes/_NF/Shipyard/Security/fighter.yml index 560e4556021..b1acb94d8df 100644 --- a/Resources/Prototypes/_NF/Shipyard/fighter.yml +++ b/Resources/Prototypes/_NF/Shipyard/Security/fighter.yml @@ -2,16 +2,16 @@ id: Fighter name: NSF Fighter description: Small attack vessel used for boarding and transport of prisoners. - price: 9000 #not sure how much mark up % to add but the appraisal is 8491$ + price: 9000 #not sure how much mark up % to add but the appraisal is 7150$ now category: Small group: None mapchecker_group_override: Security # Treat this as a security vessel for mapchecker purposes - shuttlePath: /Maps/Shuttles/fighter.yml + shuttlePath: /Maps/_NF/Shuttles/Security/fighter.yml - type: gameMap id: Fighter mapName: 'NSF Fighter' - mapPath: /Maps/Shuttles/fighter.yml + mapPath: /Maps/_NF/Shuttles/Security/fighter.yml minPlayers: 0 stations: Fighter: diff --git a/Resources/Prototypes/_NF/Shipyard/rogue.yml b/Resources/Prototypes/_NF/Shipyard/Security/rogue.yml similarity index 83% rename from Resources/Prototypes/_NF/Shipyard/rogue.yml rename to Resources/Prototypes/_NF/Shipyard/Security/rogue.yml index 33d40b8bb20..d4d5cb7a2c6 100644 --- a/Resources/Prototypes/_NF/Shipyard/rogue.yml +++ b/Resources/Prototypes/_NF/Shipyard/Security/rogue.yml @@ -2,16 +2,16 @@ id: Rogue name: NSF Rogue description: Small assault vessel with a toggle for going dark in deep space. - price: 8200 #the appraisal is 7941$ + price: 12200 #the appraisal is 9100$ category: Small group: None mapchecker_group_override: Security # Treat this as a security vessel for mapchecker purposes - shuttlePath: /Maps/Shuttles/rogue.yml + shuttlePath: /Maps/_NF/Shuttles/Security/rogue.yml - type: gameMap id: Rogue mapName: 'NSF Rogue' - mapPath: /Maps/Shuttles/rogue.yml + mapPath: /Maps/_NF/Shuttles/Security/rogue.yml minPlayers: 0 stations: Rogue: diff --git a/Resources/Prototypes/_NF/Shipyard/cleithro.yml b/Resources/Prototypes/_NF/Shipyard/cleithro.yml new file mode 100644 index 00000000000..e8a0e77284e --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/cleithro.yml @@ -0,0 +1,35 @@ +# Maintainer Info +# GitHub: dvir001 +# Discord: dvir01 (84770870936997888) + +# Shuttle Notes: +# + +- type: vessel + id: Cleithro + name: DC Cleithro + description: "A simple psychologist ship, ready to help anyone in need, nothing seems weird about it" + price: 30000 # 10+% up from sell + category: Medium + group: Civilian + shuttlePath: /Maps/_NF/Shuttles/cleithro.yml + +- type: gameMap + id: Cleithro + mapName: 'DC Cleithro' + mapPath: /Maps/_NF/Shuttles/cleithro.yml + minPlayers: 0 + stations: + Cleithro: + stationProto: StandardFrontierVessel + components: + - type: StationNameSetup + mapNameTemplate: 'Cleithro {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + Psychologist: [ 0, 0 ] + ServiceWorker: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/dartx.yml b/Resources/Prototypes/_NF/Shipyard/dartx.yml index c2a9a255ed0..f95430610da 100644 --- a/Resources/Prototypes/_NF/Shipyard/dartx.yml +++ b/Resources/Prototypes/_NF/Shipyard/dartx.yml @@ -1,8 +1,18 @@ +# Author Info +# GitHub: Checkraze??? +# Discord: ??? + +# Maintainer Info +# GitHub: ??? +# Discord: ??? + +# Shuttle Notes: +# - type: vessel id: DartX name: NT Dart-X description: A light emergency response cruiser outfitted for extended rescue missions. - price: 80500 + price: 83500 #~72400 after mapinit +15% (10860) category: Medium group: Expedition shuttlePath: /Maps/_NF/Shuttles/dartx.yml diff --git a/Resources/Prototypes/_NF/ai_factions.yml b/Resources/Prototypes/_NF/ai_factions.yml index 4563e92a96f..f81972dd77c 100644 --- a/Resources/Prototypes/_NF/ai_factions.yml +++ b/Resources/Prototypes/_NF/ai_factions.yml @@ -7,10 +7,10 @@ - SimpleHostile - Dwarf - Felinid + - Harpy - Cat - Chicken - Monkey - - Mailman - type: npcFaction id: Dwarf @@ -19,7 +19,7 @@ id: Felinid - type: npcFaction - id: Mailman # Need ClothingAddFaction to work from Nyanotrasen code + id: Harpy - type: npcFaction id: Cat diff --git a/Resources/Prototypes/ai_factions.yml b/Resources/Prototypes/ai_factions.yml index 1ad7071ea62..6188509124e 100644 --- a/Resources/Prototypes/ai_factions.yml +++ b/Resources/Prototypes/ai_factions.yml @@ -99,3 +99,9 @@ - Dragon - WizFedFaction # Frontier - BloodCultNF # Frontier +- type: npcFaction + id: ArtifactConstruct + hostile: + - NanoTrasen + - Syndicate + - Revolutionary diff --git a/Resources/Textures/_NF/Clothing/Back/Backpacks/arcadia.rsi/meta.json b/Resources/Textures/_NF/Clothing/Back/Backpacks/arcadia.rsi/meta.json index 154f526df0e..a1272c7c562 100644 --- a/Resources/Textures/_NF/Clothing/Back/Backpacks/arcadia.rsi/meta.json +++ b/Resources/Textures/_NF/Clothing/Back/Backpacks/arcadia.rsi/meta.json @@ -1,26 +1,26 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe Based and edited by SungYandy", + "size": { + "x": 32, + "y": 32 }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_backpack.rsi/equipped-BACKPACK.png b/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_backpack.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..5b125432cd6 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_backpack.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_backpack.rsi/icon.png b/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_backpack.rsi/icon.png new file mode 100644 index 00000000000..fd5283dfaba Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_backpack.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_backpack.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_backpack.rsi/inhand-left.png new file mode 100644 index 00000000000..5c3fde14e26 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_backpack.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_backpack.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_backpack.rsi/inhand-right.png new file mode 100644 index 00000000000..17a7c48d83c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_backpack.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_backpack.rsi/meta.json b/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_backpack.rsi/meta.json new file mode 100644 index 00000000000..f81a72aeecd --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_backpack.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_brigmed_backpack.rsi/equipped-BACKPACK.png b/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_brigmed_backpack.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..261efce2c83 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_brigmed_backpack.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_brigmed_backpack.rsi/icon.png b/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_brigmed_backpack.rsi/icon.png new file mode 100644 index 00000000000..f90dd461d8a Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_brigmed_backpack.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_brigmed_backpack.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_brigmed_backpack.rsi/inhand-left.png new file mode 100644 index 00000000000..72dc1e371ed Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_brigmed_backpack.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_brigmed_backpack.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_brigmed_backpack.rsi/inhand-right.png new file mode 100644 index 00000000000..7374fbcf046 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_brigmed_backpack.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_brigmed_backpack.rsi/meta.json b/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_brigmed_backpack.rsi/meta.json new file mode 100644 index 00000000000..f81a72aeecd --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Back/Backpacks/nfsd_brigmed_backpack.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_brigmed_duffle.rsi/equipped-BACKPACK.png b/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_brigmed_duffle.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..576f46263e9 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_brigmed_duffle.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_brigmed_duffle.rsi/icon.png b/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_brigmed_duffle.rsi/icon.png new file mode 100644 index 00000000000..5a0de63268e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_brigmed_duffle.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_brigmed_duffle.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_brigmed_duffle.rsi/inhand-left.png new file mode 100644 index 00000000000..d5917a9f42d Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_brigmed_duffle.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_brigmed_duffle.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_brigmed_duffle.rsi/inhand-right.png new file mode 100644 index 00000000000..6f6d9193d4d Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_brigmed_duffle.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_brigmed_duffle.rsi/meta.json b/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_brigmed_duffle.rsi/meta.json new file mode 100644 index 00000000000..f81a72aeecd --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_brigmed_duffle.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_duffle.rsi/equipped-BACKPACK.png b/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_duffle.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..fbfe6c1b36b Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_duffle.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_duffle.rsi/icon.png b/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_duffle.rsi/icon.png new file mode 100644 index 00000000000..70917a1c3a5 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_duffle.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_duffle.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_duffle.rsi/inhand-left.png new file mode 100644 index 00000000000..132671671b2 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_duffle.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_duffle.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_duffle.rsi/inhand-right.png new file mode 100644 index 00000000000..fe67b92522b Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_duffle.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_duffle.rsi/meta.json b/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_duffle.rsi/meta.json new file mode 100644 index 00000000000..f81a72aeecd --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Back/Duffels/nfsd_duffle.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_brigmed_satchel.rsi/equipped-BACKPACK.png b/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_brigmed_satchel.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..7d3614dea0f Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_brigmed_satchel.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_brigmed_satchel.rsi/icon.png b/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_brigmed_satchel.rsi/icon.png new file mode 100644 index 00000000000..c163e1b5733 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_brigmed_satchel.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_brigmed_satchel.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_brigmed_satchel.rsi/inhand-left.png new file mode 100644 index 00000000000..bf658d69a6e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_brigmed_satchel.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_brigmed_satchel.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_brigmed_satchel.rsi/inhand-right.png new file mode 100644 index 00000000000..6593e4c8c95 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_brigmed_satchel.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_brigmed_satchel.rsi/meta.json b/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_brigmed_satchel.rsi/meta.json new file mode 100644 index 00000000000..f81a72aeecd --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_brigmed_satchel.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_satchel.rsi/equipped-BACKPACK.png b/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_satchel.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..b30d1cbcff4 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_satchel.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_satchel.rsi/icon.png b/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_satchel.rsi/icon.png new file mode 100644 index 00000000000..d7fa017df53 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_satchel.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_satchel.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_satchel.rsi/inhand-left.png new file mode 100644 index 00000000000..3b4e9844296 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_satchel.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_satchel.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_satchel.rsi/inhand-right.png new file mode 100644 index 00000000000..3b9471ef1bc Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_satchel.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_satchel.rsi/meta.json b/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_satchel.rsi/meta.json new file mode 100644 index 00000000000..f81a72aeecd --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Back/Satchels/nfsd_satchel.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Belt/nfsd_belt.rsi/equipped-BELT.png b/Resources/Textures/_NF/Clothing/Belt/nfsd_belt.rsi/equipped-BELT.png new file mode 100644 index 00000000000..9947d1f4707 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Belt/nfsd_belt.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/_NF/Clothing/Belt/nfsd_belt.rsi/icon.png b/Resources/Textures/_NF/Clothing/Belt/nfsd_belt.rsi/icon.png new file mode 100644 index 00000000000..f7ecdb817eb Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Belt/nfsd_belt.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Belt/nfsd_belt.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Belt/nfsd_belt.rsi/inhand-left.png new file mode 100644 index 00000000000..4b40a5cffaf Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Belt/nfsd_belt.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Belt/nfsd_belt.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Belt/nfsd_belt.rsi/inhand-right.png new file mode 100644 index 00000000000..01eb91b3c4c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Belt/nfsd_belt.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Belt/nfsd_belt.rsi/meta.json b/Resources/Textures/_NF/Clothing/Belt/nfsd_belt.rsi/meta.json new file mode 100644 index 00000000000..d7a51e3ca73 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Belt/nfsd_belt.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "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/_NF/Clothing/Belt/nfsd_webbing.rsi/equipped-BELT.png b/Resources/Textures/_NF/Clothing/Belt/nfsd_webbing.rsi/equipped-BELT.png new file mode 100644 index 00000000000..70db77647ac Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Belt/nfsd_webbing.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/_NF/Clothing/Belt/nfsd_webbing.rsi/icon.png b/Resources/Textures/_NF/Clothing/Belt/nfsd_webbing.rsi/icon.png new file mode 100644 index 00000000000..9a9bfbd2b39 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Belt/nfsd_webbing.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Belt/nfsd_webbing.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Belt/nfsd_webbing.rsi/inhand-left.png new file mode 100644 index 00000000000..c6c477410c1 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Belt/nfsd_webbing.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Belt/nfsd_webbing.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Belt/nfsd_webbing.rsi/inhand-right.png new file mode 100644 index 00000000000..f43af00f0fe Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Belt/nfsd_webbing.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Belt/nfsd_webbing.rsi/meta.json b/Resources/Textures/_NF/Clothing/Belt/nfsd_webbing.rsi/meta.json new file mode 100644 index 00000000000..d7a51e3ca73 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Belt/nfsd_webbing.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "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/_NF/Clothing/Ears/Headsets/nfsd_e_brown.rsi/equipped-EARS.png b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_brown.rsi/equipped-EARS.png new file mode 100644 index 00000000000..d41a1b2e706 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_brown.rsi/equipped-EARS.png differ diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_brown.rsi/icon.png b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_brown.rsi/icon.png new file mode 100644 index 00000000000..48101b4ae30 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_brown.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_brown.rsi/icon_alt.png b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_brown.rsi/icon_alt.png new file mode 100644 index 00000000000..48101b4ae30 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_brown.rsi/icon_alt.png differ diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_brown.rsi/meta.json b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_brown.rsi/meta.json new file mode 100644 index 00000000000..9cdc73d5c65 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_brown.rsi/meta.json @@ -0,0 +1,21 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon_alt" + }, + { + "name": "icon" + }, + { + "name": "equipped-EARS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_cb.rsi/equipped-EARS.png b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_cb.rsi/equipped-EARS.png new file mode 100644 index 00000000000..7dd6c905aec Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_cb.rsi/equipped-EARS.png differ diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_cb.rsi/icon.png b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_cb.rsi/icon.png new file mode 100644 index 00000000000..200e483f3b3 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_cb.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_cb.rsi/icon_alt.png b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_cb.rsi/icon_alt.png new file mode 100644 index 00000000000..200e483f3b3 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_cb.rsi/icon_alt.png differ diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_cb.rsi/meta.json b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_cb.rsi/meta.json new file mode 100644 index 00000000000..9cdc73d5c65 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_cb.rsi/meta.json @@ -0,0 +1,21 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon_alt" + }, + { + "name": "icon" + }, + { + "name": "equipped-EARS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_green.rsi/equipped-EARS.png b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_green.rsi/equipped-EARS.png new file mode 100644 index 00000000000..be4bec8eb4d Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_green.rsi/equipped-EARS.png differ diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_green.rsi/icon.png b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_green.rsi/icon.png new file mode 100644 index 00000000000..ce2d4617ac2 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_green.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_green.rsi/icon_alt.png b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_green.rsi/icon_alt.png new file mode 100644 index 00000000000..c9a60c28a84 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_green.rsi/icon_alt.png differ diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_green.rsi/meta.json b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_green.rsi/meta.json new file mode 100644 index 00000000000..9cdc73d5c65 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_e_green.rsi/meta.json @@ -0,0 +1,21 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon_alt" + }, + { + "name": "icon" + }, + { + "name": "equipped-EARS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_brown.rsi/alt-equipped-EARS.png b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_brown.rsi/alt-equipped-EARS.png new file mode 100644 index 00000000000..6e2b021974e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_brown.rsi/alt-equipped-EARS.png differ diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_brown.rsi/icon_alt.png b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_brown.rsi/icon_alt.png new file mode 100644 index 00000000000..218f216cdf8 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_brown.rsi/icon_alt.png differ diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_brown.rsi/meta.json b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_brown.rsi/meta.json new file mode 100644 index 00000000000..a3a6e543ec2 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_brown.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon_alt" + }, + { + "name": "alt-equipped-EARS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_cb.rsi/alt-equipped-EARS.png b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_cb.rsi/alt-equipped-EARS.png new file mode 100644 index 00000000000..22fe4c0fe26 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_cb.rsi/alt-equipped-EARS.png differ diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_cb.rsi/icon_alt.png b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_cb.rsi/icon_alt.png new file mode 100644 index 00000000000..50dbb2e80cb Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_cb.rsi/icon_alt.png differ diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_cb.rsi/meta.json b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_cb.rsi/meta.json new file mode 100644 index 00000000000..a3a6e543ec2 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_cb.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon_alt" + }, + { + "name": "alt-equipped-EARS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_green.rsi/alt-equipped-EARS.png b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_green.rsi/alt-equipped-EARS.png new file mode 100644 index 00000000000..6abfd5e8781 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_green.rsi/alt-equipped-EARS.png differ diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_green.rsi/icon_alt.png b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_green.rsi/icon_alt.png new file mode 100644 index 00000000000..2898f2e65b4 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_green.rsi/icon_alt.png differ diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_green.rsi/meta.json b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_green.rsi/meta.json new file mode 100644 index 00000000000..a3a6e543ec2 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Ears/Headsets/nfsd_h_green.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon_alt" + }, + { + "name": "alt-equipped-EARS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Eyes/Glasses/nfsd_glasses.rsi/equipped-EYES.png b/Resources/Textures/_NF/Clothing/Eyes/Glasses/nfsd_glasses.rsi/equipped-EYES.png new file mode 100644 index 00000000000..2bc42c4b5b3 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Eyes/Glasses/nfsd_glasses.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/_NF/Clothing/Eyes/Glasses/nfsd_glasses.rsi/icon.png b/Resources/Textures/_NF/Clothing/Eyes/Glasses/nfsd_glasses.rsi/icon.png new file mode 100644 index 00000000000..d15af0d3e51 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Eyes/Glasses/nfsd_glasses.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Eyes/Glasses/nfsd_glasses.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Eyes/Glasses/nfsd_glasses.rsi/inhand-left.png new file mode 100644 index 00000000000..7513f010727 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Eyes/Glasses/nfsd_glasses.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Eyes/Glasses/nfsd_glasses.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Eyes/Glasses/nfsd_glasses.rsi/inhand-right.png new file mode 100644 index 00000000000..f99c4cde4ca Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Eyes/Glasses/nfsd_glasses.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Eyes/Glasses/nfsd_glasses.rsi/meta.json b/Resources/Textures/_NF/Clothing/Eyes/Glasses/nfsd_glasses.rsi/meta.json new file mode 100644 index 00000000000..9dcb9b01973 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Eyes/Glasses/nfsd_glasses.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Eyes/Hud/nfsd_hud.rsi/equipped-EYES.png b/Resources/Textures/_NF/Clothing/Eyes/Hud/nfsd_hud.rsi/equipped-EYES.png new file mode 100644 index 00000000000..04516b5f245 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Eyes/Hud/nfsd_hud.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/_NF/Clothing/Eyes/Hud/nfsd_hud.rsi/icon.png b/Resources/Textures/_NF/Clothing/Eyes/Hud/nfsd_hud.rsi/icon.png new file mode 100644 index 00000000000..9e520b0d5fe Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Eyes/Hud/nfsd_hud.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Eyes/Hud/nfsd_hud.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Eyes/Hud/nfsd_hud.rsi/inhand-left.png new file mode 100644 index 00000000000..8d8c8e418ce Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Eyes/Hud/nfsd_hud.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Eyes/Hud/nfsd_hud.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Eyes/Hud/nfsd_hud.rsi/inhand-right.png new file mode 100644 index 00000000000..824bc4a4114 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Eyes/Hud/nfsd_hud.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Eyes/Hud/nfsd_hud.rsi/meta.json b/Resources/Textures/_NF/Clothing/Eyes/Hud/nfsd_hud.rsi/meta.json new file mode 100644 index 00000000000..9dcb9b01973 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Eyes/Hud/nfsd_hud.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Hands/Gloves/Gloves.rar b/Resources/Textures/_NF/Clothing/Hands/Gloves/Gloves.rar new file mode 100644 index 00000000000..d964f75c39e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Hands/Gloves/Gloves.rar differ diff --git a/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_brown.rsi/equipped-HAND.png b/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_brown.rsi/equipped-HAND.png new file mode 100644 index 00000000000..c8846028831 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_brown.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_brown.rsi/icon.png b/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_brown.rsi/icon.png new file mode 100644 index 00000000000..edecb27e5bb Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_brown.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_brown.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_brown.rsi/inhand-left.png new file mode 100644 index 00000000000..9c75c1399f1 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_brown.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_brown.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_brown.rsi/inhand-right.png new file mode 100644 index 00000000000..be92036671f Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_brown.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_brown.rsi/meta.json b/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_brown.rsi/meta.json new file mode 100644 index 00000000000..e775e6f7c28 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_brown.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_cream.rsi/equipped-HAND.png b/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_cream.rsi/equipped-HAND.png new file mode 100644 index 00000000000..ad1f251101c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_cream.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_cream.rsi/icon.png b/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_cream.rsi/icon.png new file mode 100644 index 00000000000..b9c8bacc87c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_cream.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_cream.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_cream.rsi/inhand-left.png new file mode 100644 index 00000000000..4cf2dfb5da9 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_cream.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_cream.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_cream.rsi/inhand-right.png new file mode 100644 index 00000000000..820863dfe8e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_cream.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_cream.rsi/meta.json b/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_cream.rsi/meta.json new file mode 100644 index 00000000000..e775e6f7c28 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Hands/Gloves/nfsd_cream.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/icon-flash.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/icon-flash.png new file mode 100644 index 00000000000..3f3663431c7 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/icon-flash.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/icon.png new file mode 100644 index 00000000000..e9154375e3b Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/meta.json new file mode 100644 index 00000000000..c1850cf5215 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/meta.json @@ -0,0 +1,57 @@ +{ + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "off-equipped-HELMET", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-lizard", + "directions": 4 + }, + { + "name": "off-inhand-left", + "directions": 4 + }, + { + "name": "off-inhand-right", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-lizard", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", + "directions": 4 + } + ], + "version": 1 +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/off-equipped-HELMET-lizard.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/off-equipped-HELMET-lizard.png new file mode 100644 index 00000000000..bd1b0d972ca Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/off-equipped-HELMET-lizard.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 00000000000..bcf710388c3 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/off-equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/off-equipped-HELMET.png new file mode 100644 index 00000000000..038e6660b68 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/off-inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/off-inhand-left.png new file mode 100644 index 00000000000..b22769b2f9f Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/off-inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/off-inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/off-inhand-right.png new file mode 100644 index 00000000000..890f0f8dd0f Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/off-inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/on-equipped-HELMET-lizard.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/on-equipped-HELMET-lizard.png new file mode 100644 index 00000000000..85bc0f0b0e3 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/on-equipped-HELMET-lizard.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 00000000000..3690e9efae0 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/on-equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/on-equipped-HELMET.png new file mode 100644 index 00000000000..401abcc15b7 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/on-inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/on-inhand-left.png new file mode 100644 index 00000000000..add7e0da5e2 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/on-inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/on-inhand-right.png new file mode 100644 index 00000000000..f3bfc0f8ba0 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_helm.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/icon-flash.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/icon-flash.png new file mode 100644 index 00000000000..f87f30b0c36 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/icon-flash.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/icon.png new file mode 100644 index 00000000000..db598bdc767 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/meta.json new file mode 100644 index 00000000000..c1850cf5215 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/meta.json @@ -0,0 +1,57 @@ +{ + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "off-equipped-HELMET", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-lizard", + "directions": 4 + }, + { + "name": "off-inhand-left", + "directions": 4 + }, + { + "name": "off-inhand-right", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-lizard", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", + "directions": 4 + } + ], + "version": 1 +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/off-equipped-HELMET-lizard.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/off-equipped-HELMET-lizard.png new file mode 100644 index 00000000000..95a00cce95c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/off-equipped-HELMET-lizard.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 00000000000..43e688a11a3 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/off-equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/off-equipped-HELMET.png new file mode 100644 index 00000000000..a49dd305a8f Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/off-inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/off-inhand-left.png new file mode 100644 index 00000000000..90d8b803c86 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/off-inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/off-inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/off-inhand-right.png new file mode 100644 index 00000000000..8cd1bada565 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/off-inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/on-equipped-HELMET-lizard.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/on-equipped-HELMET-lizard.png new file mode 100644 index 00000000000..6da17cc34f4 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/on-equipped-HELMET-lizard.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 00000000000..84aace5511f Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/on-equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/on-equipped-HELMET.png new file mode 100644 index 00000000000..25bda6dba0f Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/on-inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/on-inhand-left.png new file mode 100644 index 00000000000..87db6e8e435 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/on-inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/on-inhand-right.png new file mode 100644 index 00000000000..7ffc012b2de Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/nfsd_sheriff_helm.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_brown.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_brown.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..ef7c7565a1d Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_brown.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_brown.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_brown.rsi/icon.png new file mode 100644 index 00000000000..5bb898533a8 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_brown.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_brown.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_brown.rsi/inhand-left.png new file mode 100644 index 00000000000..1c3af090015 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_brown.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_brown.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_brown.rsi/inhand-right.png new file mode 100644 index 00000000000..4382f0720cb Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_brown.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_brown.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_brown.rsi/meta.json new file mode 100644 index 00000000000..1e0b86e0745 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_brown.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_cream.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_cream.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..57acfa587cf Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_cream.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_cream.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_cream.rsi/icon.png new file mode 100644 index 00000000000..1d5804839bd Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_cream.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_cream.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_cream.rsi/inhand-left.png new file mode 100644 index 00000000000..a8fd58c665d Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_cream.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_cream.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_cream.rsi/inhand-right.png new file mode 100644 index 00000000000..723e3f1fa1b Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_cream.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_cream.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_cream.rsi/meta.json new file mode 100644 index 00000000000..1e0b86e0745 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_cream.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_green.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_green.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..6eaeb2fb0ee Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_green.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_green.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_green.rsi/icon.png new file mode 100644 index 00000000000..508a02bf5bb Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_green.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_green.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_green.rsi/inhand-left.png new file mode 100644 index 00000000000..59d8e38992b Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_green.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_green.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_green.rsi/inhand-right.png new file mode 100644 index 00000000000..3c9b8124805 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_green.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_green.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_green.rsi/meta.json new file mode 100644 index 00000000000..1e0b86e0745 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_beret_green.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 00000000000..e2705b0cf85 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..45fe8ebfb9c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign.rsi/icon.png new file mode 100644 index 00000000000..ea668eaa950 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign.rsi/inhand-left.png new file mode 100644 index 00000000000..9ab550f31c9 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign.rsi/inhand-right.png new file mode 100644 index 00000000000..c421e06ccd7 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign.rsi/meta.json new file mode 100644 index 00000000000..1b74f944ba6 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign_small.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign_small.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 00000000000..6935566dd59 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign_small.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign_small.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign_small.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..5b8a70738b9 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign_small.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign_small.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign_small.rsi/icon.png new file mode 100644 index 00000000000..c73b98c799e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign_small.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign_small.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign_small.rsi/inhand-left.png new file mode 100644 index 00000000000..0ead31206c8 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign_small.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign_small.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign_small.rsi/inhand-right.png new file mode 100644 index 00000000000..9b86ba7607c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign_small.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign_small.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign_small.rsi/meta.json new file mode 100644 index 00000000000..1b74f944ba6 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hats/nfsd_campaign_small.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Neck/Cloaks/nfsdsheriff.rsi/equipped-NECK.png b/Resources/Textures/_NF/Clothing/Neck/Cloaks/nfsdsheriff.rsi/equipped-NECK.png new file mode 100644 index 00000000000..65eb456a79f Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Cloaks/nfsdsheriff.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Cloaks/nfsdsheriff.rsi/icon.png b/Resources/Textures/_NF/Clothing/Neck/Cloaks/nfsdsheriff.rsi/icon.png new file mode 100644 index 00000000000..4209b8eafc7 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Cloaks/nfsdsheriff.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Cloaks/nfsdsheriff.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Neck/Cloaks/nfsdsheriff.rsi/inhand-left.png new file mode 100644 index 00000000000..789d14c0b39 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Cloaks/nfsdsheriff.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Cloaks/nfsdsheriff.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Neck/Cloaks/nfsdsheriff.rsi/inhand-right.png new file mode 100644 index 00000000000..82f4217b453 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Cloaks/nfsdsheriff.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Cloaks/nfsdsheriff.rsi/meta.json b/Resources/Textures/_NF/Clothing/Neck/Cloaks/nfsdsheriff.rsi/meta.json new file mode 100644 index 00000000000..f53534a4d0e --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Neck/Cloaks/nfsdsheriff.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Neck/Mantles/nfsdsheriff.rsi/equipped-NECK.png b/Resources/Textures/_NF/Clothing/Neck/Mantles/nfsdsheriff.rsi/equipped-NECK.png new file mode 100644 index 00000000000..38a31f6d2be Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Mantles/nfsdsheriff.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Mantles/nfsdsheriff.rsi/icon.png b/Resources/Textures/_NF/Clothing/Neck/Mantles/nfsdsheriff.rsi/icon.png new file mode 100644 index 00000000000..d66d334fede Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Mantles/nfsdsheriff.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Mantles/nfsdsheriff.rsi/meta.json b/Resources/Textures/_NF/Clothing/Neck/Mantles/nfsdsheriff.rsi/meta.json new file mode 100644 index 00000000000..e5ea590a161 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Neck/Mantles/nfsdsheriff.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_bronze_badge.rsi/equipped-NECK.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_bronze_badge.rsi/equipped-NECK.png new file mode 100644 index 00000000000..4ecd5c1e9cb Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_bronze_badge.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_bronze_badge.rsi/icon.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_bronze_badge.rsi/icon.png new file mode 100644 index 00000000000..91db063703f Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_bronze_badge.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_bronze_badge.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_bronze_badge.rsi/inhand-left.png new file mode 100644 index 00000000000..7954d968cc6 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_bronze_badge.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_bronze_badge.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_bronze_badge.rsi/inhand-right.png new file mode 100644 index 00000000000..698df2d67e2 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_bronze_badge.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_bronze_badge.rsi/meta.json b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_bronze_badge.rsi/meta.json new file mode 100644 index 00000000000..b1cc155cbe8 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_bronze_badge.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_gold_badge.rsi/equipped-NECK.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_gold_badge.rsi/equipped-NECK.png new file mode 100644 index 00000000000..58f44ceba6e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_gold_badge.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_gold_badge.rsi/icon.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_gold_badge.rsi/icon.png new file mode 100644 index 00000000000..ab242f3f0b4 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_gold_badge.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_gold_badge.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_gold_badge.rsi/inhand-left.png new file mode 100644 index 00000000000..c3d7af2504d Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_gold_badge.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_gold_badge.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_gold_badge.rsi/inhand-right.png new file mode 100644 index 00000000000..5367410d9e0 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_gold_badge.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_gold_badge.rsi/meta.json b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_gold_badge.rsi/meta.json new file mode 100644 index 00000000000..b1cc155cbe8 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_gold_badge.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_silver_badge.rsi/equipped-NECK.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_silver_badge.rsi/equipped-NECK.png new file mode 100644 index 00000000000..86675a744ee Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_silver_badge.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_silver_badge.rsi/icon.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_silver_badge.rsi/icon.png new file mode 100644 index 00000000000..6c1165435e1 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_silver_badge.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_silver_badge.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_silver_badge.rsi/inhand-left.png new file mode 100644 index 00000000000..5e5ad389d8c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_silver_badge.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_silver_badge.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_silver_badge.rsi/inhand-right.png new file mode 100644 index 00000000000..43aa76b4109 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_silver_badge.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_silver_badge.rsi/meta.json b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_silver_badge.rsi/meta.json new file mode 100644 index 00000000000..b1cc155cbe8 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_silver_badge.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_star_badge.rsi/equipped-NECK.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_star_badge.rsi/equipped-NECK.png new file mode 100644 index 00000000000..3d2428750cc Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_star_badge.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_star_badge.rsi/icon.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_star_badge.rsi/icon.png new file mode 100644 index 00000000000..569a2ade289 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_star_badge.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_star_badge.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_star_badge.rsi/inhand-left.png new file mode 100644 index 00000000000..d2e6de36bb3 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_star_badge.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_star_badge.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_star_badge.rsi/inhand-right.png new file mode 100644 index 00000000000..a6aa148f3d1 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_star_badge.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_star_badge.rsi/meta.json b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_star_badge.rsi/meta.json new file mode 100644 index 00000000000..b1cc155cbe8 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Neck/Scarfs/nfsd_star_badge.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Armor/nfsd_armor.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/nfsd_armor.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..56530c2e5fa Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/nfsd_armor.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Armor/nfsd_armor.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/nfsd_armor.rsi/icon.png new file mode 100644 index 00000000000..d4ed4b45248 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/nfsd_armor.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Armor/nfsd_armor.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/nfsd_armor.rsi/inhand-left.png new file mode 100644 index 00000000000..801596f6265 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/nfsd_armor.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Armor/nfsd_armor.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/nfsd_armor.rsi/inhand-right.png new file mode 100644 index 00000000000..196a8c3f221 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/nfsd_armor.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Armor/nfsd_armor.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/nfsd_armor.rsi/meta.json new file mode 100644 index 00000000000..42bd4dc842d --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/nfsd_armor.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "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/_NF/Clothing/OuterClothing/Hardsuits/nfsd_brigmed.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_brigmed.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..ec1bca9212d Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_brigmed.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_brigmed.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_brigmed.rsi/icon.png new file mode 100644 index 00000000000..59012730a14 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_brigmed.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_brigmed.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_brigmed.rsi/inhand-left.png new file mode 100644 index 00000000000..ad0197116cb Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_brigmed.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_brigmed.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_brigmed.rsi/inhand-right.png new file mode 100644 index 00000000000..ac2f3823b47 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_brigmed.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_brigmed.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_brigmed.rsi/meta.json new file mode 100644 index 00000000000..42bd4dc842d --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_brigmed.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "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/_NF/Clothing/OuterClothing/Hardsuits/nfsd_bronze.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_bronze.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..767f16fcfb2 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_bronze.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_bronze.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_bronze.rsi/icon.png new file mode 100644 index 00000000000..0764baa9ae2 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_bronze.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_bronze.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_bronze.rsi/inhand-left.png new file mode 100644 index 00000000000..73f86eb8efe Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_bronze.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_bronze.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_bronze.rsi/inhand-right.png new file mode 100644 index 00000000000..afc36177071 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_bronze.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_bronze.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_bronze.rsi/meta.json new file mode 100644 index 00000000000..42bd4dc842d --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_bronze.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "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/_NF/Clothing/OuterClothing/Hardsuits/nfsd_gold.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_gold.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..ee9b5600d80 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_gold.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_gold.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_gold.rsi/icon.png new file mode 100644 index 00000000000..f7ab342e660 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_gold.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_gold.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_gold.rsi/inhand-left.png new file mode 100644 index 00000000000..157b2d5c2e1 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_gold.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_gold.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_gold.rsi/inhand-right.png new file mode 100644 index 00000000000..733bbe396de Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_gold.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_gold.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_gold.rsi/meta.json new file mode 100644 index 00000000000..42bd4dc842d --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_gold.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "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/_NF/Clothing/OuterClothing/Hardsuits/nfsd_sheriff.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_sheriff.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..e332096f672 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_sheriff.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_sheriff.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_sheriff.rsi/icon.png new file mode 100644 index 00000000000..7deaccfdab6 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_sheriff.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_sheriff.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_sheriff.rsi/inhand-left.png new file mode 100644 index 00000000000..43b868eed99 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_sheriff.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_sheriff.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_sheriff.rsi/inhand-right.png new file mode 100644 index 00000000000..dff14c1e8fd Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_sheriff.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_sheriff.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_sheriff.rsi/meta.json new file mode 100644 index 00000000000..42bd4dc842d --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_sheriff.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "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/_NF/Clothing/OuterClothing/Hardsuits/nfsd_silver.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_silver.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..0fd3aae83d0 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_silver.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_silver.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_silver.rsi/icon.png new file mode 100644 index 00000000000..40c17020f85 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_silver.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_silver.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_silver.rsi/inhand-left.png new file mode 100644 index 00000000000..bfc1e8317ee Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_silver.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_silver.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_silver.rsi/inhand-right.png new file mode 100644 index 00000000000..e245faaf9c9 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_silver.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_silver.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_silver.rsi/meta.json new file mode 100644 index 00000000000..42bd4dc842d --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/nfsd_silver.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "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/_NF/Clothing/OuterClothing/Misc/nfsd_bomber.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_bomber.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..12f25de8d6f Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_bomber.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_bomber.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_bomber.rsi/icon.png new file mode 100644 index 00000000000..40d7500b5a5 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_bomber.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_bomber.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_bomber.rsi/inhand-left.png new file mode 100644 index 00000000000..a7f981ef6d3 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_bomber.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_bomber.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_bomber.rsi/inhand-right.png new file mode 100644 index 00000000000..3318ef90ff2 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_bomber.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_bomber.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_bomber.rsi/meta.json new file mode 100644 index 00000000000..42bd4dc842d --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_bomber.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "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/_NF/Clothing/OuterClothing/Misc/nfsd_brigmed_bomber.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_brigmed_bomber.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..5f41d0b65ab Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_brigmed_bomber.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_brigmed_bomber.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_brigmed_bomber.rsi/icon.png new file mode 100644 index 00000000000..21fedcd8c72 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_brigmed_bomber.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_brigmed_bomber.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_brigmed_bomber.rsi/inhand-left.png new file mode 100644 index 00000000000..864390518cc Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_brigmed_bomber.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_brigmed_bomber.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_brigmed_bomber.rsi/inhand-right.png new file mode 100644 index 00000000000..5a7b99956db Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_brigmed_bomber.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_brigmed_bomber.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_brigmed_bomber.rsi/meta.json new file mode 100644 index 00000000000..42bd4dc842d --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_brigmed_bomber.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "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/_NF/Clothing/OuterClothing/Misc/nfsd_formal.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_formal.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..1d864b19bd2 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_formal.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_formal.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_formal.rsi/icon.png new file mode 100644 index 00000000000..d90dd8899b2 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_formal.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_formal.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_formal.rsi/inhand-left.png new file mode 100644 index 00000000000..50757bfde15 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_formal.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_formal.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_formal.rsi/inhand-right.png new file mode 100644 index 00000000000..8b1669c88e6 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_formal.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_formal.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_formal.rsi/meta.json new file mode 100644 index 00000000000..42bd4dc842d --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_formal.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "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/_NF/Clothing/OuterClothing/Misc/nfsd_long.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_long.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..043df38fef3 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_long.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_long.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_long.rsi/icon.png new file mode 100644 index 00000000000..6d5f1a0041c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_long.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_long.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_long.rsi/inhand-left.png new file mode 100644 index 00000000000..614564265ad Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_long.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_long.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_long.rsi/inhand-right.png new file mode 100644 index 00000000000..1e0766b0475 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_long.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_long.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_long.rsi/meta.json new file mode 100644 index 00000000000..42bd4dc842d --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_long.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "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/_NF/Clothing/OuterClothing/Misc/nfsd_sheriff_formal.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_sheriff_formal.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..ec0295c1796 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_sheriff_formal.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_sheriff_formal.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_sheriff_formal.rsi/icon.png new file mode 100644 index 00000000000..e74f8341f9f Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_sheriff_formal.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_sheriff_formal.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_sheriff_formal.rsi/inhand-left.png new file mode 100644 index 00000000000..681f77c57f0 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_sheriff_formal.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_sheriff_formal.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_sheriff_formal.rsi/inhand-right.png new file mode 100644 index 00000000000..f7e33c16ba9 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_sheriff_formal.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_sheriff_formal.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_sheriff_formal.rsi/meta.json new file mode 100644 index 00000000000..42bd4dc842d --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/nfsd_sheriff_formal.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "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/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/equipped-FEET.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/equipped-FEET.png new file mode 100644 index 00000000000..4c295c17f6b Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/icon-on.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/icon-on.png new file mode 100644 index 00000000000..f30e9d9aa7f Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/icon-on.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/icon.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/icon.png new file mode 100644 index 00000000000..925bbb7e25e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/inhand-left.png new file mode 100644 index 00000000000..185dcc3309b Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/inhand-right.png new file mode 100644 index 00000000000..9e0e1f2c4bc Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/meta.json b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/meta.json new file mode 100644 index 00000000000..8f01c3b8ab3 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "on-equipped-FEET", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "icon-on" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/on-equipped-FEET.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/on-equipped-FEET.png new file mode 100644 index 00000000000..16d249ff6c4 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/on-equipped-FEET.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/on-inhand-left.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/on-inhand-left.png new file mode 100644 index 00000000000..237099e0d01 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/on-inhand-right.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/on-inhand-right.png new file mode 100644 index 00000000000..4558080edfe Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-nfsd.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_brown_boots.rsi/equipped-FEET.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_brown_boots.rsi/equipped-FEET.png new file mode 100644 index 00000000000..62577e8c4b0 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_brown_boots.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_brown_boots.rsi/icon.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_brown_boots.rsi/icon.png new file mode 100644 index 00000000000..387778231f7 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_brown_boots.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_brown_boots.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_brown_boots.rsi/inhand-left.png new file mode 100644 index 00000000000..2d34917e4a1 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_brown_boots.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_brown_boots.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_brown_boots.rsi/inhand-right.png new file mode 100644 index 00000000000..c66a43fbfbe Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_brown_boots.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_brown_boots.rsi/meta.json b/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_brown_boots.rsi/meta.json new file mode 100644 index 00000000000..5699ee0b102 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_brown_boots.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_cream_boots.rsi/equipped-FEET.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_cream_boots.rsi/equipped-FEET.png new file mode 100644 index 00000000000..5a571c97a11 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_cream_boots.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_cream_boots.rsi/icon.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_cream_boots.rsi/icon.png new file mode 100644 index 00000000000..3fb1be971ba Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_cream_boots.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_cream_boots.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_cream_boots.rsi/inhand-left.png new file mode 100644 index 00000000000..8b1308bb701 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_cream_boots.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_cream_boots.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_cream_boots.rsi/inhand-right.png new file mode 100644 index 00000000000..c88d119b045 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_cream_boots.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_cream_boots.rsi/meta.json b/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_cream_boots.rsi/meta.json new file mode 100644 index 00000000000..5699ee0b102 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Shoes/Boots/nfsd_cream_boots.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot.rsi/meta.json b/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot.rsi/meta.json index 6b37732ecaf..7168bbafeda 100644 --- a/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot.rsi/meta.json +++ b/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot.rsi/meta.json @@ -1,26 +1,26 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6236a0ddd1bd3c4e5574eb9fdebf4d79ccad2d2f | Resprited for pilot by erhardsteinhauer (discord)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe Based and edited by SungYandy", + "size": { + "x": 32, + "y": 32 }, - { - "name": "equipped-FEET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..ee9c883f892 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt.rsi/icon.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt.rsi/icon.png new file mode 100644 index 00000000000..cfa08dc0cc5 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt.rsi/inhand-left.png new file mode 100644 index 00000000000..e01024da6b3 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt.rsi/inhand-right.png new file mode 100644 index 00000000000..0500f422467 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt.rsi/meta.json b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt.rsi/meta.json new file mode 100644 index 00000000000..152713ab03f --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt_short.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt_short.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..15ec406184e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt_short.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt_short.rsi/icon.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt_short.rsi/icon.png new file mode 100644 index 00000000000..702b0effb04 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt_short.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt_short.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt_short.rsi/inhand-left.png new file mode 100644 index 00000000000..82cdc5e184e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt_short.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt_short.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt_short.rsi/inhand-right.png new file mode 100644 index 00000000000..a07dedea88b Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt_short.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt_short.rsi/meta.json b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt_short.rsi/meta.json new file mode 100644 index 00000000000..152713ab03f --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/nfsd_skirt_short.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..3210958abc6 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump.rsi/icon.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump.rsi/icon.png new file mode 100644 index 00000000000..2e3e5f4f5b6 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump.rsi/inhand-left.png new file mode 100644 index 00000000000..7dcc30c6a73 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump.rsi/inhand-right.png new file mode 100644 index 00000000000..ff21e16e9aa Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump.rsi/meta.json b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump.rsi/meta.json new file mode 100644 index 00000000000..152713ab03f --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump_short.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump_short.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..aa257c32c7f Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump_short.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump_short.rsi/icon.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump_short.rsi/icon.png new file mode 100644 index 00000000000..daa6c33f3b8 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump_short.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump_short.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump_short.rsi/inhand-left.png new file mode 100644 index 00000000000..400eb94a5a1 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump_short.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump_short.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump_short.rsi/inhand-right.png new file mode 100644 index 00000000000..2f75884dfcf Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump_short.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump_short.rsi/meta.json b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump_short.rsi/meta.json new file mode 100644 index 00000000000..152713ab03f --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_jump_short.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_black.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_black.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..1ef3b55ad27 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_black.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_black.rsi/icon.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_black.rsi/icon.png new file mode 100644 index 00000000000..d8b8c0428f4 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_black.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_black.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_black.rsi/inhand-left.png new file mode 100644 index 00000000000..cc0dffd221e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_black.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_black.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_black.rsi/inhand-right.png new file mode 100644 index 00000000000..fe705d16a26 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_black.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_black.rsi/meta.json b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_black.rsi/meta.json new file mode 100644 index 00000000000..152713ab03f --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_black.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_camo.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_camo.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..1849488018a Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_camo.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_camo.rsi/icon.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_camo.rsi/icon.png new file mode 100644 index 00000000000..8f796f5988b Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_camo.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_camo.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_camo.rsi/inhand-left.png new file mode 100644 index 00000000000..848458364b1 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_camo.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_camo.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_camo.rsi/inhand-right.png new file mode 100644 index 00000000000..d14240ab2d9 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_camo.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_camo.rsi/meta.json b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_camo.rsi/meta.json new file mode 100644 index 00000000000..152713ab03f --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_camo.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_cream.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_cream.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..b5970468376 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_cream.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_cream.rsi/icon.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_cream.rsi/icon.png new file mode 100644 index 00000000000..a587ebaf4e4 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_cream.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_cream.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_cream.rsi/inhand-left.png new file mode 100644 index 00000000000..01bbb965c57 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_cream.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_cream.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_cream.rsi/inhand-right.png new file mode 100644 index 00000000000..eaa3f2e0edd Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_cream.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_cream.rsi/meta.json b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_cream.rsi/meta.json new file mode 100644 index 00000000000..152713ab03f --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_cream.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_gray.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_gray.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..db21effa6f9 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_gray.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_gray.rsi/icon.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_gray.rsi/icon.png new file mode 100644 index 00000000000..00b0ce29b60 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_gray.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_gray.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_gray.rsi/inhand-left.png new file mode 100644 index 00000000000..8c5d95b0d04 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_gray.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_gray.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_gray.rsi/inhand-right.png new file mode 100644 index 00000000000..257110241bc Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_gray.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_gray.rsi/meta.json b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_gray.rsi/meta.json new file mode 100644 index 00000000000..152713ab03f --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/nfsd_tac_gray.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Content created by GhostPrince for Frontier Server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Effects/creampie_64.rsi/creampie_grimforged.png b/Resources/Textures/_NF/Effects/creampie_64.rsi/creampie_grimforged.png new file mode 100644 index 00000000000..35c5102c3d4 Binary files /dev/null and b/Resources/Textures/_NF/Effects/creampie_64.rsi/creampie_grimforged.png differ diff --git a/Resources/Textures/_NF/Effects/creampie_64.rsi/meta.json b/Resources/Textures/_NF/Effects/creampie_64.rsi/meta.json new file mode 100644 index 00000000000..5149f1a6092 --- /dev/null +++ b/Resources/Textures/_NF/Effects/creampie_64.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation at 0d9c9a8233dfc3fc55edc538955a761a6328bee0. creampie_moth by MilenVolf, creampie_arachnid by PixelTheKermit (Github)", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "creampie_grimforged" + } + ] +} diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/meta.json b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/meta.json index 26c853e7dc6..00eacd759a0 100644 --- a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/meta.json +++ b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/meta.json @@ -13,6 +13,24 @@ }, { "name": "Pilot" + }, + { + "name": "nfsdcadet" + }, + { + "name": "nfsddeputy" + }, + { + "name": "nfsdbrigmed" + }, + { + "name": "nfsdsergeant" + }, + { + "name": "nfsdbailiff" + }, + { + "name": "nfsdsheriff" } ] } diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdbailiff.png b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdbailiff.png new file mode 100644 index 00000000000..f0a47b17287 Binary files /dev/null and b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdbailiff.png differ diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdbrigmed.png b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdbrigmed.png new file mode 100644 index 00000000000..902ce0c80a7 Binary files /dev/null and b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdbrigmed.png differ diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdcadet.png b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdcadet.png new file mode 100644 index 00000000000..3a5a0911e9e Binary files /dev/null and b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdcadet.png differ diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsddeputy.png b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsddeputy.png new file mode 100644 index 00000000000..df835d094d3 Binary files /dev/null and b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsddeputy.png differ diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdsergeant.png b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdsergeant.png new file mode 100644 index 00000000000..e59aa53b3c9 Binary files /dev/null and b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdsergeant.png differ diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdsheriff.png b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdsheriff.png new file mode 100644 index 00000000000..b2205e37f3a Binary files /dev/null and b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdsheriff.png differ diff --git a/Resources/Textures/_NF/Mobs/Aliens/grim_forged.rsi/dead.png b/Resources/Textures/_NF/Mobs/Aliens/grim_forged.rsi/dead.png new file mode 100644 index 00000000000..2fb108b03e5 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Aliens/grim_forged.rsi/dead.png differ diff --git a/Resources/Textures/_NF/Mobs/Aliens/grim_forged.rsi/flash.png b/Resources/Textures/_NF/Mobs/Aliens/grim_forged.rsi/flash.png new file mode 100644 index 00000000000..2f6cd342471 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Aliens/grim_forged.rsi/flash.png differ diff --git a/Resources/Textures/_NF/Mobs/Aliens/grim_forged.rsi/meta.json b/Resources/Textures/_NF/Mobs/Aliens/grim_forged.rsi/meta.json new file mode 100644 index 00000000000..24c25dca722 --- /dev/null +++ b/Resources/Textures/_NF/Mobs/Aliens/grim_forged.rsi/meta.json @@ -0,0 +1,71 @@ +{ + "version": 1, + "size": { + "x": 64, + "y": 64 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Created by GreaseMonk for frontier-station-14, credit to MatthewBadger (discord) for original concepts and designs", + "states": [ + { + "name": "dead" + }, + { + "name": "off" + }, + { + "name": "move", + "delays": [ + [ + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06 + ] + ] + }, + { + "name": "flash", + "delays": [ + [ + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06, + 0.06 + ] + ] + } + ] +} diff --git a/Resources/Textures/_NF/Mobs/Aliens/grim_forged.rsi/move.png b/Resources/Textures/_NF/Mobs/Aliens/grim_forged.rsi/move.png new file mode 100644 index 00000000000..e063f568e18 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Aliens/grim_forged.rsi/move.png differ diff --git a/Resources/Textures/_NF/Mobs/Aliens/grim_forged.rsi/off.png b/Resources/Textures/_NF/Mobs/Aliens/grim_forged.rsi/off.png new file mode 100644 index 00000000000..1b7ac3eb536 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Aliens/grim_forged.rsi/off.png differ diff --git a/Resources/Textures/_NF/Objects/Devices/pda.rsi/meta.json b/Resources/Textures/_NF/Objects/Devices/pda.rsi/meta.json index 55b6e3af171..15c4ffb482c 100644 --- a/Resources/Textures/_NF/Objects/Devices/pda.rsi/meta.json +++ b/Resources/Textures/_NF/Objects/Devices/pda.rsi/meta.json @@ -33,6 +33,24 @@ }, { "name": "pda-pilot" + }, + { + "name": "pda-bailiff" + }, + { + "name": "pda-brigmed" + }, + { + "name": "pda-cadet" + }, + { + "name": "pda-deputy" + }, + { + "name": "pda-sergeant" + }, + { + "name": "pda-sheriff" } ] } diff --git a/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-bailiff.png b/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-bailiff.png new file mode 100644 index 00000000000..fcfeb78fc92 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-bailiff.png differ diff --git a/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-brigmed.png b/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-brigmed.png new file mode 100644 index 00000000000..a1b9eac2a38 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-brigmed.png differ diff --git a/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-cadet.png b/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-cadet.png new file mode 100644 index 00000000000..a1dbbfb0adf Binary files /dev/null and b/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-cadet.png differ diff --git a/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-deputy.png b/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-deputy.png new file mode 100644 index 00000000000..8966a83f005 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-deputy.png differ diff --git a/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-sergeant.png b/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-sergeant.png new file mode 100644 index 00000000000..2e25d76c8ec Binary files /dev/null and b/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-sergeant.png differ diff --git a/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-sheriff.png b/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-sheriff.png new file mode 100644 index 00000000000..446c08a6525 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-sheriff.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdbailiff.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdbailiff.png new file mode 100644 index 00000000000..1a7e477910c Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdbailiff.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdbrigmed.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdbrigmed.png new file mode 100644 index 00000000000..093a236b244 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdbrigmed.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdcadet.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdcadet.png new file mode 100644 index 00000000000..57e5adcd782 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdcadet.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsddeputy.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsddeputy.png new file mode 100644 index 00000000000..5c5f3de7c67 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsddeputy.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdsergeant.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdsergeant.png new file mode 100644 index 00000000000..b7630834357 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdsergeant.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdsheriff.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdsheriff.png new file mode 100644 index 00000000000..ef3ba379c6f Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdsheriff.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/meta.json b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/meta.json index b7d93ffaa96..aab7586af3a 100644 --- a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/meta.json +++ b/Resources/Textures/_NF/Objects/Misc/id_cards.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/d917f4c2a088419d5c3aec7656b7ff8cebd1822e | Resprited for mercenary, pilot and ert_mailcarrier by erhardsteinhauer (discord)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d917f4c2a088419d5c3aec7656b7ff8cebd1822e | Resprited for mercenary, pilot and ert_mailcarrier by erhardsteinhauer (discord), nfsd by GhostPrince and GentleButter(discord)", "size": { "x": 32, "y": 32 @@ -27,6 +27,35 @@ }, { "name": "idpilot" + }, + { + "name": "idnfsdcadet" + }, + { + "name": "idnfsddeputy" + }, + { + "name": "idnfsdbrigmed" + }, + { + "name": "idnfsdsergeant" + }, + { + "name": "idnfsdbailiff" + }, + { + "name": "idnfsdsheriff" + }, + { + "name": "nfsd" + }, + { + "name": "nfsd-inhand-left", + "directions": 4 + }, + { + "name": "nfsd-inhand-right", + "directions": 4 } ] } diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/nfsd-inhand-left.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/nfsd-inhand-left.png new file mode 100644 index 00000000000..67357c5bfaa Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/nfsd-inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/nfsd-inhand-right.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/nfsd-inhand-right.png new file mode 100644 index 00000000000..95be5f5dab4 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/nfsd-inhand-right.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/nfsd.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/nfsd.png new file mode 100644 index 00000000000..9c1dcac48d4 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/nfsd.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Basic/sawn_kinetic_accelerator.rsi/inhand-left.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Basic/sawn_kinetic_accelerator.rsi/inhand-left.png index e54e8fa2cc8..767ed5b8e49 100644 Binary files a/Resources/Textures/_NF/Objects/Weapons/Guns/Basic/sawn_kinetic_accelerator.rsi/inhand-left.png and b/Resources/Textures/_NF/Objects/Weapons/Guns/Basic/sawn_kinetic_accelerator.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Basic/sawn_kinetic_accelerator.rsi/inhand-right.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Basic/sawn_kinetic_accelerator.rsi/inhand-right.png index 767ed5b8e49..e54e8fa2cc8 100644 Binary files a/Resources/Textures/_NF/Objects/Weapons/Guns/Basic/sawn_kinetic_accelerator.rsi/inhand-right.png and b/Resources/Textures/_NF/Objects/Weapons/Guns/Basic/sawn_kinetic_accelerator.rsi/inhand-right.png differ